X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBFinalPage.py;h=aad5fec0344d8cb547586ec4c6530434861b213b;hb=b184b8dae2e3dffa463932855a77f7566788620e;hp=a855cafccc6aa3f916260ef88b9f148927ee4499;hpb=05ebf945e64b34150a526a0b07ed72203059e422;p=bertos.git diff --git a/wizard/BFinalPage.py b/wizard/BFinalPage.py index a855cafc..aad5fec0 100644 --- a/wizard/BFinalPage.py +++ b/wizard/BFinalPage.py @@ -40,6 +40,7 @@ class BFinalPage(BWizardPage): 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: @@ -57,6 +58,9 @@ class BFinalPage(BWizardPage): 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): """ @@ -65,3 +69,14 @@ 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