Correct typo
[bertos.git] / wizard / BFinalPage.py
index ca7322445488e78d21fd448f72b602408c18fb03..b8901d4eeaa60d2ef78d4a6e03eb8c85a0d65cc2 100644 (file)
@@ -44,8 +44,10 @@ class BFinalPage(BWizardPage):
             self._plugin_dict = {}
             for plugin in output:
                 if plugin in command_lines:
-                    check = QCheckBox(plugin)
-                    layout.addWidget(check)
+                    module = bertos_utils.loadPlugin(plugin)
+                    checked = len(output) == 1
+                    group, check  = self.createNewOutput(self, module.PLUGIN_NAME, module.PLUGIN_DESCRIPTION, checked)
+                    layout.addWidget(group)
                     self._plugin_dict[check] = plugin
             widget = QWidget()
             widget.setLayout(layout)
@@ -59,4 +61,22 @@ class BFinalPage(BWizardPage):
         """
         self.pageContent.scrollArea.setVisible(False)
     
-    ####
\ No newline at end of file
+    ####
+    
+    def createNewOutput(self, name, description, checked=True, enabled=True):
+        """
+        Create a groupBox for the given pieces of information. Returns the
+        groupBox and the checkBox
+        """
+        check = QCheckBox(description)
+        if checked:
+            check.setCheckState(Qt.Checked)
+        else:
+            check.setCheckState(Qt.Unchecked)
+        groupLayout = QVBoxLayout()
+        groupLayout.addWidget(check)
+        group = QGroupBox(name)
+        group.setSizePolicy(QSizePolicy.Expanding, QSizePolicy.Maximum)
+        group.setLayout(groupLayout)
+        group.setEnabled(enabled)
+        return group, check
\ No newline at end of file