X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBFinalPage.py;h=254068c46986718ba4d6843874c678fb44187e75;hb=d6dad7eb666d458f5d0df9bcf9b7dac1b109eb85;hp=9fd481d3d020abd0f13ffe6ef8624738feda5747;hpb=6fb67bc94e1d53acc1e1b339f22bb7d4f2f7dea3;p=bertos.git diff --git a/wizard/BFinalPage.py b/wizard/BFinalPage.py index 9fd481d3..254068c4 100644 --- a/wizard/BFinalPage.py +++ b/wizard/BFinalPage.py @@ -37,17 +37,25 @@ 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() - if "codelite" in output and "codelite" in command_lines: - self.pageContent.codeliteCheck.setVisible(True) - + layout = QVBoxLayout() + self._plugin_dict = {} + for plugin in output: + if plugin in command_lines: + check = QCheckBox(plugin) + layout.addWidget(check) + self._plugin_dict[check] = plugin + widget = QWidget() + widget.setLayout(layout) + self.pageContent.scrollArea.setWidget(widget) def setupUi(self): """ Overload of the BWizardPage setupUi method. """ - self.pageContent.codeliteCheck.setVisible(False) + self.pageContent.scrollArea.setVisible(False) #### \ No newline at end of file