X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBWizard.py;h=7fed96c556b2561359cd1b8bc1559fc090dbeb8d;hb=ddfbc9df15a5a68f18913995533b9ca9153caaae;hp=a9bff88f0990f5e4caf90bf2709301ef9194ac4e;hpb=39cfcb3a18a672e4a5b07710597d074175dad593;p=bertos.git diff --git a/wizard/BWizard.py b/wizard/BWizard.py index a9bff88f..7fed96c5 100644 --- a/wizard/BWizard.py +++ b/wizard/BWizard.py @@ -21,36 +21,44 @@ import BToolchainPage import BModulePage import BOutputPage import BCreationPage +import BFinalPage class BWizard(QWizard): + """ + Main class of the wizard. It adds the pages automatically. + """ - def __init__(self): + def __init__(self, page_list): QWizard.__init__(self) - # TODO: choose the right minimum size - self.setMinimumSize(1000, 500) self.setWindowTitle(self.tr("Create a BeRTOS project")) - self._addPages() - self._connectSignals() + self.setOption(QWizard.DisabledBackButtonOnLastPage, True) + self.addPages(page_list) + self.connectSignals() - def _addPages(self): - self.addPage(BFolderPage.BFolderPage()) - self.addPage(BVersionPage.BVersionPage()) - self.addPage(BCpuPage.BCpuPage()) - self.addPage(BToolchainPage.BToolchainPage()) - self.addPage(BModulePage.BModulePage()) - self.addPage(BOutputPage.BOutputPage()) - self.addPage(BCreationPage.BCreationPage()) - - def _connectSignals(self): - self.connect(self, SIGNAL("currentIdChanged(int)"), self._pageChanged) + def addPages(self, page_list): + """ + Adds the pages in the wizard. + """ + for page in page_list: + self.addPage(page()) + + def connectSignals(self): + """ + Connects the signals with the related slots. + """ + self.connect(self, SIGNAL("currentIdChanged(int)"), self.pageChanged) - def _pageChanged(self, pageId): - prevPage = self.page(pageId - 1) - if prevPage is not None: - prevPage.saveData() + def pageChanged(self, pageId): + """ + Slot called when the user change the current page. It calls the reloadData + method of the next page. + """ page = self.page(pageId) if page is not None: page.reloadData() def project(self): - return copy.deepcopy(QApplication.instance().project) \ No newline at end of file + """ + Returns the BProject associated with the wizard. + """ + return copy.deepcopy(QApplication.instance().project)