Hide the description label and reset the text when no cpu is selected
[bertos.git] / wizard / BCpuPage.py
index 501a5a209d91415df83a4ec524373bc1fbb8e902..93919c9cf64d7effdd22f9dfb1a4324e83a927c7 100644 (file)
@@ -18,12 +18,51 @@ class BCpuPage(BWizardPage):
     def __init__(self):
         BWizardPage.__init__(self, "cpu_select.ui")
         self.setTitle(self.tr("Select the CPU"))
+        self._connectSignals()
+        self._setupUi()
     
     def _populateCpuList(self):
+        self.pageContent.cpuList.clear()
+        self.pageContent.cpuList.setCurrentItem(None)
         infos = bertos_utils.loadCpuInfos(self._projectInfoRetrieve("SOURCES_PATH"))
         for cpu in infos:
-            self.pageContent.cpuList.addItem(QListWidgetItem(cpu["CPU_NAME"]))
+            item = QListWidgetItem(cpu["CPU_NAME"])
+            # The CPU_DESC field in the cpu definition is a list of string, so we need to 
+            # store it as a QStringList in a QVariant
+            item.setData(Qt.UserRole, QVariant(QStringList(cpu["CPU_DESC"])))
+            self.pageContent.cpuList.addItem(item)
+    
+    def _connectSignals(self):
+        self.connect(self.pageContent.cpuList, SIGNAL("itemSelectionChanged()"), self.rowChanged)
+    
+    def _selectItem(self, cpu):
+        elements = self.pageContent.cpuList.findItems(cpu, Qt.MatchCaseSensitive)
+        if len(elements) == 1:
+            self.pageContent.cpuList.setCurrentItem(elements[0])
+    
+    def _setupUi(self):
+        self.pageContent.descriptionLabel.setVisible(False)
+        self.pageContent.descriptionLabel.setText("")
     
     def reloadData(self):
         self._populateCpuList()
-        
\ No newline at end of file
+        cpuName = self._projectInfoRetrieve("CPU_NAME")
+        self._setupUi()
+        if not cpuName is None:
+            self._selectItem(cpuName)
+        self.emit(SIGNAL("completeChanged()"))
+    
+    def isComplete(self):
+        if self.pageContent.cpuList.currentRow() != -1:
+            self._projectInfoStore("CPU_NAME", self.pageContent.cpuList.currentItem().text())
+            return True
+        else:
+            return False
+        
+    def rowChanged(self):
+        description = self.pageContent.cpuList.currentItem().data(Qt.UserRole).toStringList()
+        # We need to convert the list of QString in a list of unicode
+        description =  [unicode(line) for line in description]
+        self.pageContent.descriptionLabel.setText("<br>".join(description))
+        self.pageContent.descriptionLabel.setVisible(True)
+        self.emit(SIGNAL("completeChanged()"))