Create a simple CheckBox instead a Group
[bertos.git] / wizard / BFinalPage.py
index 254068c46986718ba4d6843874c678fb44187e75..a855cafccc6aa3f916260ef88b9f148927ee4499 100644 (file)
@@ -37,7 +37,6 @@ class BFinalPage(BWizardPage):
         bertos_utils.createBertosProject(self.project())
         QApplication.instance().restoreOverrideCursor()
         if os.name == "nt":
-            self.pageContent.setVisible(True)
             output = self.projectInfo("OUTPUT")
             import winreg_importer
             command_lines = winreg_importer.getCommandLines()
@@ -45,11 +44,18 @@ class BFinalPage(BWizardPage):
             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)
     
     def setupUi(self):
@@ -58,4 +64,4 @@ class BFinalPage(BWizardPage):
         """
         self.pageContent.scrollArea.setVisible(False)
     
-    ####
\ No newline at end of file
+    ####