Store founded command lines in the project
[bertos.git] / wizard / BFinalPage.py
index ca7322445488e78d21fd448f72b602408c18fb03..aad5fec0344d8cb547586ec4c6530434861b213b 100644 (file)
@@ -40,11 +40,17 @@ 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:
                 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()
@@ -52,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):
         """
@@ -59,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