X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBFinalPage.py;h=ca7322445488e78d21fd448f72b602408c18fb03;hb=87bbb18b93461ad7889de3a1e918e930ddf9cc7f;hp=9fd481d3d020abd0f13ffe6ef8624738feda5747;hpb=8612a8120e0068faa07b0678f869b64d013baac5;p=bertos.git diff --git a/wizard/BFinalPage.py b/wizard/BFinalPage.py index 9fd481d3..ca732244 100644 --- a/wizard/BFinalPage.py +++ b/wizard/BFinalPage.py @@ -40,14 +40,23 @@ class BFinalPage(BWizardPage): 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) + if len(self._plugin_dict) > 0: + self.pageContent.scrollArea.setVisible(True) + 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