Remove print debug
[bertos.git] / wizard / BEditingDialog.py
1 #!/usr/bin/env python
2 # encoding: utf-8
3 #
4 # This file is part of BeRTOS.
5 #
6 # Bertos is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19 #
20 # As a special exception, you may use this file as part of a free software
21 # library without restriction.  Specifically, if other files instantiate
22 # templates or use macros or inline functions from this file, or you compile
23 # this file and link it with other files to produce an executable, this
24 # file does not by itself cause the resulting executable to be covered by
25 # the GNU General Public License.  This exception does not however
26 # invalidate any other reasons why the executable file might be covered by
27 # the GNU General Public License.
28 #
29 # Copyright 2008 Develer S.r.l. (http://www.develer.com/)
30 #
31 # $Id$
32 #
33 # Author: Lorenzo Berni <duplo@develer.com>
34 #
35
36 import sys
37 import os
38
39 from PyQt4.QtCore import *
40 from PyQt4.QtGui import *
41
42 from bertos_utils import loadBertosProject, bertosVersion, getToolchainName
43 from toolchain_validation import validateToolchain
44 import qvariant_converter
45 import BModulePage
46
47 class BEditingDialog(QDialog):
48
49     def __init__(self, parent=None):
50         QDialog.__init__(self, parent)
51         self.setupUi()
52         self.connectSignals()
53         self.module_page.reloadData()
54     
55     def setupUi(self):
56         layout = QVBoxLayout()
57         self.module_page = BModulePage.BModulePage()
58         layout.addWidget(self.module_page)
59         button_layout = QHBoxLayout()
60         self.advanced_button = QToolButton()
61         self.setupMenu()
62         self.advanced_button.setMenu(self.menu)
63         self.advanced_button.setPopupMode(QToolButton.InstantPopup)
64         self.advanced_button.setText(self.tr("Advanced"))
65         button_layout.addWidget(self.advanced_button)
66         button_layout.addStretch()
67         self.cancel_button = QPushButton(self.tr("Cancel"))
68         button_layout.addWidget(self.cancel_button)
69         self.apply_button = QPushButton(self.tr("Apply"))
70         button_layout.addWidget(self.apply_button)
71         layout.addLayout(button_layout)
72         self.setLayout(layout)
73
74     def setupMenu(self):
75         self.menu = QMenu(self.tr("Advanced options"))
76         self.setupToolchainMenu()
77         self.menu.addMenu(self.toolchain_menu)
78         self.setupVersionMenu()
79         self.menu.addMenu(self.version_menu)
80
81     def setupToolchainMenu(self):
82         self.toolchain_menu = QMenu(self.tr("select toolchain"))
83         action_group = QActionGroup(self.toolchain_menu)
84         for toolchain in sorted(self.toolchains()):
85             info = validateToolchain(toolchain)
86             if info[0]:
87                 name = getToolchainName(info[1])
88             else:
89                 name = toolchain
90             action = self.toolchain_menu.addAction(name)
91             action_group.addAction(action)
92             action.setCheckable(True)
93             action.setChecked(True if toolchain == self.currentToolchain()["path"] else False)
94             action.setData(qvariant_converter.convertString(toolchain))
95
96     def setupVersionMenu(self):
97         self.version_menu = QMenu(self.tr("select BeRTOS version"))
98         action_group = QActionGroup(self.version_menu)
99         versions = [(path, bertosVersion(path)) for path in self.versions()]
100         for path, version in versions: 
101             action = self.version_menu.addAction(version)
102             action_group.addAction(action)
103             action.setCheckable(True)
104             action.setChecked(True if path == self.currentVersion() else False)
105             action.setData(qvariant_converter.convertString(path))
106             self.connect(action, SIGNAL("triggered(bool)"), lambda: self.versionChanged(path))
107
108     def toolchainChanged(self, toolchain):
109         print toolchain
110
111     def versionChanged(self, version):
112         print version
113
114     def toolchains(self):
115         return self.module_page.toolchains()
116     
117     def currentToolchain(self):
118         return self.module_page.projectInfo("TOOLCHAIN")
119     
120     def setCurrentToolchain(self, toolchain):
121         self.module_page.setProjectInfo("TOOLCHAIN", toolchain)
122
123     def versions(self):
124         return self.module_page.versions()
125
126     def currentVersion(self):
127         return self.module_page.projectInfo("SOURCES_PATH")
128     
129     def setCurrentVersion(self, version):
130         self.module_page.setProjectInfo("SOURCES_PATH", version)
131
132
133
134 def main():
135     if len(sys.argv) > 1:
136         project_file = sys.argv[1]
137     else:
138         print "Invalid usage: use <command> project_file"
139         sys.exit()
140     app = QApplication([])
141     app.project = loadBertosProject(project_file)
142     app.settings = QSettings("Develer", "Bertos Configurator")
143     dialog = BEditingDialog()
144     dialog.show()
145     sys.exit(app.exec_())
146
147 if __name__ == "__main__":
148     main()