Change some strings.
[bertos.git] / wizard / BProjectPresets.py
1 #!/usr/bin/env python
2 # encoding: utf-8
3 #
4 # This file is part of slimqc.
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 2010 Develer S.r.l. (http://www.develer.com/)
30 #
31 # $Id$
32 #
33 # Author: Lorenzo Berni <duplo@develer.com>
34 #
35
36 import os
37
38 from PyQt4 import uic
39
40 from PyQt4.QtCore import *
41 from PyQt4.QtGui import *
42
43 from BWizardPage import BWizardPage
44
45 from BOutputPage import BOutputPage
46 from BToolchainPage import BToolchainPage
47
48 from bertos_utils import _cmp
49 from toolchain_manager import ToolchainManager
50
51 import const
52 import qvariant_converter
53
54 class BProjectPresetsPage(QWidget):
55     def __init__(self, preset_data, parent=None):
56         QWidget.__init__(self, parent)
57         self.pageContent = uic.loadUi(os.path.join(const.DATA_DIR, const.UI_LOCATION, "preset_page.ui"), None)
58         self.project = QApplication.instance().project
59         self.settings = QApplication.instance().settings
60         self.preset_data = preset_data
61         layout = QVBoxLayout()
62         layout.addWidget(self.pageContent)
63         self.setLayout(layout)
64         self.setupUi()
65         self.connectSignals()
66
67     def setupUi(self):
68         self.pageContent.presetList.clear()
69         self.pageContent.categoryDescription.setText(self.preset_data["info"].get("description", ""))
70         for preset in sorted(self.preset_data["children"].values(), _cmp):
71             item_name = preset["info"].get("name", preset["info"]["filename"])
72             item_icon = os.path.join(preset["info"]["path"], const.PREDEFINED_BOARD_ICON_FILE)
73             if not os.path.exists(item_icon):
74                 item_icon = const.PREDEFINED_BOARD_DEFAULT_PROJECT_ICON
75             item_icon = QIcon(item_icon)
76             item = QListWidgetItem(item_icon, item_name)
77             item.setData(Qt.UserRole, qvariant_converter.convertString(preset["info"]["path"]))
78             self.pageContent.presetList.addItem(item)
79         self.pageContent.presetList.setCurrentRow(0)
80         self.updateUi()
81
82     def connectSignals(self):
83         self.connect(self.pageContent.presetList, SIGNAL("itemSelectionChanged()"), self.updateUi)
84         self.connect(self.pageContent.presetList, SIGNAL("itemSelectionChanged()"), self, SIGNAL("completeChanged()"))
85
86     def updateUi(self):
87         if self.selected:
88             preset_path = qvariant_converter.getString(self.selected.data(Qt.UserRole))
89             preset = self.preset_data["children"][preset_path]
90             description = preset["info"].get("description", "")
91             path = unicode(QUrl.fromLocalFile(preset_path).toString())
92             description = description.replace("$path", path)
93             self.pageContent.descriptionArea.setHtml(description)
94     
95     @property
96     def selected(self):
97         return self.pageContent.presetList.currentItem()
98         
99
100 class BProjectPresets(BWizardPage):
101     def __init__(self):
102         BWizardPage.__init__(self, const.UI_LOCATION + "/project_presets.ui")
103
104     ## Overloaded QWizardPage methods ##
105
106     def isComplete(self):
107         preset_path = self.selected_path
108         if preset_path:
109             self.setProjectInfo("PROJECT_PRESET", preset_path)
110             self.setProjectInfo("BASE_MODE", not self.advanced)
111             return True
112         else:
113             self.setProjectInfo("PROJECT_PRESET", None)
114             return False
115
116     def validatePage(self):
117         """
118         This hack permits to load the preset once, when the user go press the
119         Next button.
120         """
121         preset_path = self.selected_path
122         try:
123             QApplication.instance().setOverrideCursor(Qt.WaitCursor)
124             self.project.loadProjectFromPreset(preset_path)
125         finally:
126             QApplication.instance().restoreOverrideCursor()
127         # Return always True, this is a fake validation.
128         return True
129
130     def nextId(self):
131         """
132         Overload of the QWizardPage nextId method.
133         """
134         # Route to Toolchain page if the user select advanced
135         # or to Output page if the user select base
136         if self.advanced:
137             return self.wizard().pageIndex(BToolchainPage)
138         else:
139             cpu_info = self.projectInfo("CPU_INFOS")
140             if cpu_info:
141                 target = cpu_info["TOOLCHAIN"]
142                 # Try to find a suitable toolchain automatically
143                 tm = ToolchainManager()
144                 suitable_toolchains = tm.suitableToolchains(target)
145                 if len(suitable_toolchains) == 1:
146                     toolchain = suitable_toolchains.pop()
147                     toolchain_info = tm._validateToolchain(toolchain)
148                     toolchain_info["path"] = toolchain
149                     self.setProjectInfo("TOOLCHAIN", toolchain_info)
150                     return self.wizard().pageIndex(BOutputPage)
151                 else:
152                     return self.wizard().pageIndex(BToolchainPage)
153             else:
154                 # It seems that the nextId method is called before the
155                 # reloadData one (that is called after the page changing.
156                 #
157                 # TODO: fix this awful code lines
158                 target = None
159                 return self.wizard().pageIndex(BToolchainPage)
160
161     ####
162     
163     ## Overloaded BWizardPage methods ##
164     
165     def reloadData(self):
166         preset_path = self.projectInfo("PROJECT_BOARD")
167         preset_tree = self.projectInfo("PRESET_TREE")
168         preset_list = preset_tree["children"][preset_path]["children"]
169         preset_list = sorted(preset_list.values(), _cmp)
170         self.setTitle(self.tr("Select the project template for %1").arg(preset_tree["children"][preset_path]["info"].get("name", preset_tree["children"][preset_path]["info"]["filename"])))
171         self.setupTabs(preset_list)
172
173     def connectSignals(self):
174         self.connect(self.pageContent.boardTabWidget, SIGNAL("currentChanged(int)"), self, SIGNAL("completeChanged()"))
175
176     ####
177     
178     ## Slots ##
179     ####
180
181     def setupTabs(self, preset_list):
182         self.pageContent.boardTabWidget.clear()
183         for preset in preset_list:
184             icon = os.path.join(preset["info"]["path"], ".icon.png")
185             preset_page = BProjectPresetsPage(preset)
186             if os.path.exists(icon):
187                 self.pageContent.boardTabWidget.addTab(preset_page, QIcon(icon), preset["info"].get("name", preset["info"]["filename"]))
188             else:
189                 self.pageContent.boardTabWidget.addTab(preset_page, preset["info"].get("name", preset["info"]["filename"]))
190             self.connect(preset_page, SIGNAL("completeChanged()"), self, SIGNAL("completeChanged()"))
191
192     @property
193     def advanced(self):
194         if self.selected_data:
195             return self.selected_data["info"].get("advanced", False)
196         else:
197             return None
198
199     @property
200     def selected_path(self):
201         current_widget = self.pageContent.boardTabWidget.currentWidget()
202         preset_path = None
203         if current_widget:
204             current_item = current_widget.pageContent.presetList.currentItem()
205             if current_item:
206                 preset_path = current_item.data(Qt.UserRole)
207                 preset_path = qvariant_converter.getString(preset_path)
208         return preset_path
209
210     @property
211     def selected_data(self):
212         if self.selected_path:
213             current_widget = self.pageContent.boardTabWidget.currentWidget()
214             return current_widget.preset_data["children"][self.selected_path]
215         else:
216             return None