X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBFinalPage.py;h=31e765dc181bcd292a9298f2a75456541989019f;hb=a97a7c180c358d12cf3124f2c69a0f5bcfb00635;hp=254068c46986718ba4d6843874c678fb44187e75;hpb=d6dad7eb666d458f5d0df9bcf9b7dac1b109eb85;p=bertos.git diff --git a/wizard/BFinalPage.py b/wizard/BFinalPage.py index 254068c4..31e765dc 100644 --- a/wizard/BFinalPage.py +++ b/wizard/BFinalPage.py @@ -36,21 +36,31 @@ class BFinalPage(BWizardPage): QApplication.instance().setOverrideCursor(Qt.WaitCursor) bertos_utils.createBertosProject(self.project()) QApplication.instance().restoreOverrideCursor() + self._plugin_dict = {} if os.name == "nt": - self.pageContent.setVisible(True) output = self.projectInfo("OUTPUT") import winreg_importer command_lines = winreg_importer.getCommandLines() + self.setProjectInfo("COMMAND_LINES", command_lines) layout = QVBoxLayout() - self._plugin_dict = {} for plugin in output: if plugin in command_lines: - check = QCheckBox(plugin) + module = bertos_utils.loadPlugin(plugin) + check = QCheckBox(self.tr("Open project in %s" %module.PLUGIN_NAME)) + if len(output) == 1: + check.setCheckState(Qt.Checked) + else: + check.setCheckState(Qt.Unchecked) layout.addWidget(check) self._plugin_dict[check] = plugin widget = QWidget() widget.setLayout(layout) + if len(self._plugin_dict) > 0: + self.pageContent.scrollArea.setVisible(True) self.pageContent.scrollArea.setWidget(widget) + for plugin in self._plugin_dict: + self.connect(plugin, SIGNAL("stateChanged(int)"), self.modeChecked) + self.modeChecked() def setupUi(self): """ @@ -58,4 +68,15 @@ class BFinalPage(BWizardPage): """ self.pageContent.scrollArea.setVisible(False) + #### + + ## Slots ## + + def modeChecked(self): + to_be_opened = [] + for check, plugin in self._plugin_dict.items(): + if check.checkState() == Qt.Checked: + to_be_opened.append(plugin) + self.setProjectInfo("TO_BE_OPENED", to_be_opened) + #### \ No newline at end of file