X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBStartPage.py;h=cc6f1c9ea75a04b4bd28800b5f49c29adf01ea3a;hb=5456306fbbfcc4940fcfdf9cb9ac42ba7d643eb0;hp=3f094f34dfea3766c651a3684fe5305a75e5f2b4;hpb=773788b28bbe67c8a5893d177a231ea3c8cdfbc4;p=bertos.git diff --git a/wizard/BStartPage.py b/wizard/BStartPage.py index 3f094f34..cc6f1c9e 100644 --- a/wizard/BStartPage.py +++ b/wizard/BStartPage.py @@ -9,42 +9,41 @@ # Author: Lorenzo Berni # -from BWizardPage import * -import bertos_utils +from PyQt4.QtCore import * +from PyQt4.QtGui import * +import PyQt4.uic as uic -class BStartPage(BWizardPage): +from const import * + +class BStartPage(QDialog): def __init__(self): - BWizardPage.__init__(self, "start.ui") + QDialog.__init__(self) + self._setupUi() self._connectSignals() - self.setTitle(self.tr("Create or edit a beRTOS project")) + self.setWindowTitle(self.tr("Create or edit a BeRTOS project")) self._initializeButtons() - self._setupUi() - - def _connectSignals(self): - self.connect(self.pageContent.newButton, SIGNAL("clicked()"), self.newProject) - self.connect(self.pageContent.editButton, SIGNAL("clicked()"), self.editProject) - def _initializeButtons(self): - self.buttonGroup = QButtonGroup() - self.buttonGroup.addButton(self.pageContent.newButton) - self.buttonGroup.addButton(self.pageContent.editButton) - self.buttonGroup.setExclusive(True) - def _setupUi(self): - self.pageContent.newDescription.setVisible(False) - self.pageContent.editDescription.setVisible(False) + self.content = uic.loadUi(UI_LOCATION + "/start.ui", None) + layout = QVBoxLayout() + layout.addWidget(self.content) + self.setLayout(layout) + + def _connectSignals(self): + self.connect(self.content.newButton, SIGNAL("clicked()"), self.newProject) + self.connect(self.content.editButton, SIGNAL("clicked()"), self.editProject) + def _initializeButtons(self): + self.button_group = QButtonGroup() + self.button_group.addButton(self.content.newButton) + self.button_group.addButton(self.content.editButton) + self.button_group.setExclusive(True) + def newProject(self): - filename = QFileDialog.getSaveFileName(self, self.tr("Destination directory"), "", "", "", QFileDialog.ShowDirsOnly) - if not filename.isEmpty(): - self.pageContent.newDescription.setText("(\"" + filename + "\")") - self.pageContent.newDescription.setVisible(True) - # TODO: It's better to create it at the end of the wizard... - bertos_utils.createBertosProject(filename) - else: - self.pageContent.newDescription.setText("") - self.pageContent.newDescription.setVisible(False) + self.close() + self.emit(SIGNAL("newProject")) def editProject(self): - pass \ No newline at end of file + self.close() + self.emit(SIGNAL("editProject"))