X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBFolderPage.py;h=f92b457743b4c47290ef9103a4836e6d3641fb5c;hb=90500b8c052f1ae5ac3870c509cd1f37786f7e3d;hp=e359b599a375c6ba253bd5c51497cbdbd4597fe1;hpb=002be776674998624dbf4abc7eb38b871f3a0da6;p=bertos.git diff --git a/wizard/BFolderPage.py b/wizard/BFolderPage.py index e359b599..f92b4577 100644 --- a/wizard/BFolderPage.py +++ b/wizard/BFolderPage.py @@ -9,6 +9,8 @@ # Author: Lorenzo Berni # +import os + from PyQt4.QtGui import * from BWizardPage import * import bertos_utils @@ -17,4 +19,45 @@ class BFolderPage(BWizardPage): def __init__(self): BWizardPage.__init__(self, "dir_select.ui") - self.setTitle(self.tr("Select the BeRTOS version needed")) \ No newline at end of file + self.setTitle(self.tr("Select the project name")) + self._initializeAttributes() + self._connectSignals() + + def _initializeAttributes(self): + self._projectName = "" + self._destinationFolder = os.path.expanduser("~") + self.pageContent.directoryEdit.setText(self._destinationFolder) + + def _connectSignals(self): + self.connect(self.pageContent.nameEdit, SIGNAL("textChanged(const QString)"), self._nameChanged) + self.connect(self.pageContent.directoryEdit, SIGNAL("textChanged(const QString)"), self._directoryChanged) + self.connect(self.pageContent.directoryButton, SIGNAL("clicked()"), self._selectDirectory) + + def _nameChanged(self, name): + self._projectName = str(name).replace(" ", "_") + self._setProjectPath() + + def _directoryChanged(self, directory): + self._destinationFolder = str(directory) + self._setProjectPath() + + def _setProjectPath(self): + if self._destinationFolder != "" and self._projectName <> "": + if not self._destinationFolder.endswith(os.sep): + self._destinationFolder += os.sep + self.pageContent.projectPath.setText(self._destinationFolder + self._projectName + "/") + else: + self.pageContent.projectPath.setText("None") + self.emit(SIGNAL("completeChanged()")) + + def _selectDirectory(self): + directory = unicode(QFileDialog.getExistingDirectory(self, self.tr("Open Directory"), "", QFileDialog.ShowDirsOnly)) + if len(directory) == "": + self.pageContent.directoryEdit.setText(directory) + + def isComplete(self): + if self.pageContent.projectPath.text() != "None": + self._projectInfoStore("PROJECT_PATH", self.pageContent.projectPath.text()) + return True + else: + return False \ No newline at end of file