X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBModulePage.py;h=3cc9f1afca01f534fbf9a15a466905aa58874ee1;hb=24cb311b180d96e12fa70cb063b044a550780bc0;hp=974fc192c3ac2c20c09c5ab24f7a9c1df83676cb;hpb=f9c2a8d31399f00db0a00891f774d3c50cb489c6;p=bertos.git diff --git a/wizard/BModulePage.py b/wizard/BModulePage.py index 974fc192..3cc9f1af 100644 --- a/wizard/BModulePage.py +++ b/wizard/BModulePage.py @@ -22,6 +22,7 @@ class BModulePage(BWizardPage): BWizardPage.__init__(self, "module_select.ui") self.setTitle(self.tr("Configure the BeRTOS modules")) self._setupUi() + self._controlGroup = QControlGroup() self._connectSignals() def reloadData(self): @@ -57,6 +58,7 @@ class BModulePage(BWizardPage): def _fillPropertyTable(self): module = self._currentModule() + self._controlGroup.clear() configuration = self._projectInfoRetrieve("MODULES")[module]["configuration"] configurations = self._projectInfoRetrieve("CONFIGURATIONS")[configuration] self.pageContent.propertyTable.clear() @@ -73,13 +75,17 @@ class BModulePage(BWizardPage): checkBox.setChecked(True) else: checkBox.setChecked(False) + self._controlGroup.addControl(index, checkBox) elif "type" in configurations[property]["informations"].keys() and configurations[property]["informations"]["type"] == "enum": ## enum property comboBox = QComboBox() self.pageContent.propertyTable.setCellWidget(index, 1, comboBox) enum = self._projectInfoRetrieve("LISTS")[configurations[property]["informations"]["value_list"]] - for element in enum: + for i, element in enumerate(enum): comboBox.addItem(element) + if element == configurations[property]["value"]: + comboBox.setCurrentIndex(i) + self._controlGroup.addControl(index, comboBox) else: ## int, long or undefined type property spinBox = QSpinBox() @@ -97,12 +103,13 @@ class BModulePage(BWizardPage): if "long" in configurations[property]["informations"].keys() and configurations[property]["informations"]["long"] == "True": spinBox.setSuffix("L") spinBox.setValue(int(configurations[property]["value"].replace("L", ""))) + self._controlGroup.addControl(index, spinBox) def _currentModule(self): return unicode(self.pageContent.moduleTable.item(self.pageContent.moduleTable.currentRow(), 1).text()) def _currentModuleConfigurations(self): - return self._projectInfoRetrieve("MODULES")[self._currentModule()]["configuration"] + return self._configurations(self._currentModule()) def _currentProperty(self): return qvariant_converter.getString(self.pageContent.propertyTable.item(self.pageContent.propertyTable.currentRow(), 0).data(Qt.UserRole)) @@ -110,6 +117,13 @@ class BModulePage(BWizardPage): def _currentPropertyItem(self): return self.pageContent.propertyTable.item(self.pageContent.propertyTable.currentRow(), 0) + def _module(self, row): + return unicode(self.pageContent.moduleTable.item(row, 1).text()) + + def _configurations(self, module): + configuration = self._projectInfoRetrieve("MODULES")[module]["configuration"] + return self._projectInfoRetrieve("CONFIGURATIONS")[configuration] + def _resetPropertyDescription(self): for index in range(self.pageContent.propertyTable.rowCount()): propertyName = qvariant_converter.getString(self.pageContent.propertyTable.item(index, 0).data(Qt.UserRole)) @@ -117,9 +131,11 @@ class BModulePage(BWizardPage): def _showPropertyDescription(self): self._resetPropertyDescription() - description = self._projectInfoRetrieve("CONFIGURATIONS")[self._currentModuleConfigurations()][self._currentProperty()]["description"] - name = self._currentProperty() - self._currentPropertyItem().setText(name + "\n" + description) + configurations = self._currentModuleConfigurations() + if self._currentProperty() in configurations.keys(): + description = configurations[self._currentProperty()]["description"] + name = self._currentProperty() + self._currentPropertyItem().setText(name + "\n" + description) def _setupUi(self): self.pageContent.moduleTable.horizontalHeader().setResizeMode(QHeaderView.ResizeToContents) @@ -139,7 +155,23 @@ class BModulePage(BWizardPage): def _connectSignals(self): self.connect(self.pageContent.moduleTable, SIGNAL("itemSelectionChanged()"), self._fillPropertyTable) self.connect(self.pageContent.propertyTable, SIGNAL("itemSelectionChanged()"), self._showPropertyDescription) - + self.connect(self._controlGroup, SIGNAL("stateChanged"), self._saveValue) + + def _saveValue(self, index): + property = qvariant_converter.getString(self.pageContent.propertyTable.item(index, 0).data(Qt.UserRole)) + configuration = self._projectInfoRetrieve("MODULES")[self._currentModule()]["configuration"] + configurations = self._projectInfoRetrieve("CONFIGURATIONS") + if "type" not in configurations[configuration][property]["informations"].keys() or configurations[configuration][property]["informations"]["type"] == "int": + configurations[configuration][property]["value"] = str(self.pageContent.propertyTable.cellWidget(index, 1).value()) + elif configurations[configuration][property]["informations"]["type"] == "enum": + configurations[configuration][property]["value"] = unicode(self.pageContent.propertyTable.cellWidget(index, 1).currentText()) + elif configurations[configuration][property]["informations"]["type"] == "boolean": + if self.pageContent.propertyTable.cellWidget(index, 1).isChecked(): + configurations[configuration][property]["value"] = "1" + else: + configurations[configuration][property]["value"] = "0" + self._projectInfoStore("CONFIGURATIONS", configurations) + def _moduleSelectionChanged(self, index): module = unicode(self.pageContent.moduleTable.item(index, 1).text()) if self._buttonGroup.button(index).isChecked(): @@ -154,18 +186,16 @@ class BModulePage(BWizardPage): depends = self._projectInfoRetrieve("MODULES")[selectedModule]["depends"] unsatisfied = self.selectDependencyCheck(selectedModule) if len(unsatisfied) > 0: - self._selectionDependencyFail(selectedModule, unsatisfied) - - def _selectionDependencyFail(self, selectedModule, unsatisfiedModules): - messageString = "The module " + selectedModule + " needs the following modules:\n" + \ - ", ".join(unsatisfiedModules) + ".\nDo you want to resolve autmatically the prolem?" - messageBox = QMessageBox() - messageBox.setIcon(QMessageBox.Warning) - messageBox.setText(self.tr("Dependency fail")) - messageBox.setInformativeText(self.tr(messageString)) - messageBox.addButton(QMessageBox.Yes) - messageBox.addButton(QMessageBox.No) - messageBox.exec_() + message = self.tr("The module %1 needs the following modules:\n%2.\n\nDo you want to resolve automatically the problem?") + message = message.arg(selectedModule).arg(", ".join(unsatisfied)) + choice = QMessageBox.warning(self, self.tr("Dependency error"), message, QMessageBox.Yes | QMessageBox.No, QMessageBox.Yes) + if choice == QMessageBox.Yes: + for module in unsatisfied: + modules = self._projectInfoRetrieve("MODULES") + modules[module]["enabled"] = True + for index in range(self.pageContent.moduleTable.rowCount()): + if unicode(self.pageContent.moduleTable.item(index, 1).text()) in unsatisfied: + self._buttonGroup.button(index).setChecked(True) def _moduleUnselected(self, unselectedModule): modules = self._projectInfoRetrieve("MODULES") @@ -173,33 +203,54 @@ class BModulePage(BWizardPage): self._projectInfoStore("MODULES", modules) unsatisfied = self.unselectDependencyCheck(unselectedModule) if len(unsatisfied) > 0: - self._unselectionDependencyFail(unselectedModule, unsatisfied) - - def _unselectionDependencyFail(self, unselectedModule, unsatisfiedModules): - messageString = "The module " + unselectedModule + " is needed by the following modules:\n" + \ - ", ".join(unsatisfiedModules) + ".\nDo you want to resolve autmatically the prolem?" - messageBox = QMessageBox() - messageBox.setIcon(QMessageBox.Warning) - messageBox.setText(self.tr("Dependency fail")) - messageBox.setInformativeText(self.tr(messageString)) - messageBox.addButton(QMessageBox.Yes) - messageBox.addButton(QMessageBox.No) - messageBox.exec_() + message = self.tr("The module %1 is needed by the following modules:\n%2.\n\nDo you want to resolve automatically the problem?") + message = message.arg(unselectedModule).arg(", ".join(unsatisfied)) + choice = QMessageBox.warning(self, self.tr("Dependency error"), message, QMessageBox.Yes | QMessageBox.No, QMessageBox.Yes) + if choice == QMessageBox.Yes: + for module in unsatisfied: + modules = self._projectInfoRetrieve("MODULES") + modules[module]["enabled"] = False + for index in range(self.pageContent.moduleTable.rowCount()): + if unicode(self.pageContent.moduleTable.item(index, 1).text()) in unsatisfied: + self._buttonGroup.button(index).setChecked(False) + def selectDependencyCheck(self, module): - unsatisfied = [] + unsatisfied = set() modules = self._projectInfoRetrieve("MODULES") for dependency in modules[module]["depends"]: if not modules[dependency]["enabled"]: - unsatisfied.append(dependency) - unsatisfied += self.selectDependencyCheck(dependency) + unsatisfied |= set([dependency]) + if dependency not in unsatisfied: + unsatisfied |= self.selectDependencyCheck(dependency) return unsatisfied def unselectDependencyCheck(self, dependency): - unsatisfied = [] + unsatisfied = set() modules = self._projectInfoRetrieve("MODULES") for module, informations in modules.items(): if dependency in informations["depends"] and informations["enabled"]: - unsatisfied.append(module) - unsatisfied += self.unselectDependencyCheck(module) - return unsatisfied \ No newline at end of file + unsatisfied |= set([module]) + if dependency not in unsatisfied: + unsatisfied |= self.unselectDependencyCheck(module) + return unsatisfied + +class QControlGroup(QObject): + def __init__(self): + QObject.__init__(self) + self._controls = {} + + def addControl(self, id, control): + self._controls[id] = control + if type(control) == QCheckBox: + self.connect(control, SIGNAL("stateChanged(int)"), lambda: self._stateChanged(id)) + elif type(control) == QSpinBox: + self.connect(control, SIGNAL("valueChanged(int)"), lambda: self._stateChanged(id)) + elif type(control) == QComboBox: + self.connect(control, SIGNAL("currentIndexChanged(int)"), lambda: self._stateChanged(id)) + + def clear(self): + self._controls = {} + + def _stateChanged(self, id): + self.emit(SIGNAL("stateChanged"), id) \ No newline at end of file