X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBFinalPage.py;h=254068c46986718ba4d6843874c678fb44187e75;hb=d6dad7eb666d458f5d0df9bcf9b7dac1b109eb85;hp=04b1f50782904e5de076f1da8929f599e9df3e3f;hpb=d7bc79d9a4075745a39715af462e2b9a8dfbcc8e;p=bertos.git diff --git a/wizard/BFinalPage.py b/wizard/BFinalPage.py index 04b1f507..254068c4 100644 --- a/wizard/BFinalPage.py +++ b/wizard/BFinalPage.py @@ -4,7 +4,7 @@ # Copyright 2009 Develer S.r.l. (http://www.develer.com/) # All rights reserved. # -# $Id:$ +# $Id$ # # Author: Lorenzo Berni # @@ -19,12 +19,43 @@ import bertos_utils from const import * class BFinalPage(BWizardPage): + """ + Last page of the wizard. It creates the project and show a success message. + """ def __init__(self): BWizardPage.__init__(self, UI_LOCATION + "/final_page.ui") self.setTitle(self.tr("Project created successfully")) + + ## Overloaded BWizardPage methods ## def reloadData(self): + """ + Overload of the BWizardPage reloadData method. + """ QApplication.instance().setOverrideCursor(Qt.WaitCursor) - bertos_utils.createBertosProject(self.wizard().project()) - QApplication.instance().restoreOverrideCursor() \ No newline at end of file + 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() + 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.scrollArea.setVisible(False) + + #### \ No newline at end of file