X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBWizard.py;h=7fed96c556b2561359cd1b8bc1559fc090dbeb8d;hb=ba2ba183c492049aface3e3d4e1d5f945b43f3d6;hp=559462ac408f0751b608c9453da5ea5b1934ec38;hpb=9f78ac29bdc537afaab5dba3239b6631bdf2a740;p=bertos.git diff --git a/wizard/BWizard.py b/wizard/BWizard.py index 559462ac..7fed96c5 100644 --- a/wizard/BWizard.py +++ b/wizard/BWizard.py @@ -24,34 +24,41 @@ 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) self.setWindowTitle(self.tr("Create a BeRTOS project")) self.setOption(QWizard.DisabledBackButtonOnLastPage, True) - self._addPages() - self._connectSignals() + 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()) - self.addPage(BFinalPage.BFinalPage()) - - 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): - prev_page = self.page(pageId - 1) - if prev_page is not None: - prev_page.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): + """ + Returns the BProject associated with the wizard. + """ return copy.deepcopy(QApplication.instance().project)