35fc9bc467050a892ecc1c8b77805c23e055dc38
[bertos.git] / wizard / BBoardPage.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 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.QtCore import *
39 from PyQt4.QtGui import *
40
41 from BWizardPage import BWizardPage
42
43 from BCpuPage import BCpuPage
44 from BOutputPage import BOutputPage
45 from BRoutePage import BRoutePage
46
47 import const
48 import qvariant_converter
49 from bertos_utils import presetList
50
51 class BBoardPage(BWizardPage):
52     """
53     Initial page of the alternative route. Permit to select one of the
54     predefined projects for supported board.
55     """
56     
57     def __init__(self):
58         BWizardPage.__init__(self, const.UI_LOCATION + "/board_select.ui")
59         self.setTitle(self.tr("Select the board from the predefined ones"))
60         self._last_selected = None
61
62     ## Overloaded QWizardPage methods ##
63
64     def isComplete(self):
65         """
66         Overload of the QWizardPage isComplete method.
67         """
68         if self.selected:
69             _type = qvariant_converter.getDict(self.selected.data(0, Qt.UserRole))["type"]
70             type = qvariant_converter.getString(_type)
71             return type == "project"
72         else:
73             return False
74
75     def nextId(self):
76         """
77         Overload of the QWizardPage nextId method.
78         """
79         return self.wizard().pageIndex(BRoutePage)
80
81     ####
82
83     ## Overloaded BWizardPage methods ##
84
85     def setupUi(self):
86         """
87         Overload of the BWizardPage setupUi method.
88         """
89         pass
90
91     def connectSignals(self):
92         """
93         Overload of the BWizardPage connectSignals method.
94         """
95         self.connect(self.pageContent.boardTree, SIGNAL("itemSelectionChanged()"), self, SIGNAL("completeChanged()"))
96
97     def reloadData(self):
98         """
99         Overload of the BWizardPage reloadData method.
100         """
101         self._fillPresetTree()
102
103     ####
104
105     ## Slots ##
106
107
108     ####
109
110     @property
111     def selected(self):
112         # We can only take the selected item list (not the single item)
113         _selected_items = self.pageContent.boardTree.selectedItems()
114         if _selected_items:
115             return _selected_items[0]
116         else:
117             return None
118
119     def _fillPresetTree(self):
120         self.pageContent.boardTree.clear()
121         self.project.loadProjectPresets()
122         preset_tree = self.project.info("PRESET_TREE")
123         for obj in preset_tree["children"]:
124             self._createPresetNode(self.pageContent.boardTree, obj)
125
126     def _createPresetNode(self, parent, obj):
127         item_name = obj["info"].get("name", obj["info"]["filename"])
128         item = QTreeWidgetItem(parent, [item_name]) 
129         item.setIcon(0, QIcon(self._getNodeIcon(obj)))
130         children_dict = obj["children"]
131         item.setData(0, Qt.UserRole, qvariant_converter.convertDict(obj["info"]))
132         for child in children_dict:
133             self._createPresetNode(item, child)
134
135     def _getNodeIcon(self, obj):
136         icon_file = os.path.join(obj["info"]["path"], const.PREDEFINED_BOARD_ICON_FILE)
137         if os.path.exists(icon_file):
138             return icon_file
139         elif obj["info"]["type"] == "dir":
140             return const.PREDEFINED_BOARD_DEFAULT_DIR_ICON
141         else:
142             return const.PREDEFINED_BOARD_DEFAULT_PROJECT_ICON