X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBFolderPage.py;h=7de7fc73ff508bd430d87d926556436986d83301;hb=8b2b3759daf3222963cbb3cd4364fef556622e87;hp=b98c5ee4e3132a23b2c8fab2e8a096c1b9625a16;hpb=76a48f1d3021b18df251ee4992c6b3973befbd87;p=bertos.git diff --git a/wizard/BFolderPage.py b/wizard/BFolderPage.py index b98c5ee4..7de7fc73 100644 --- a/wizard/BFolderPage.py +++ b/wizard/BFolderPage.py @@ -9,20 +9,70 @@ # Author: Lorenzo Berni # +import os + from PyQt4.QtGui import * from BWizardPage import * import bertos_utils +from const import * + class BFolderPage(BWizardPage): def __init__(self): - BWizardPage.__init__(self, "dir_select.ui") - self.setTitle(self.tr("Select the BeRTOS version needed")) - self._folder = "" + BWizardPage.__init__(self, UI_LOCATION + "/dir_select.ui") + self.setTitle(self.tr("Select the project name")) + self._initializeAttributes() + self._setupUi() self._connectSignals() + + def _setupUi(self): + self.pageContent.warningLabel.setVisible(False) + + def _initializeAttributes(self): + self._project_name = "" + self._destination_folder = os.path.expanduser("~") + self.pageContent.directoryEdit.setText(self._destination_folder) def _connectSignals(self): - self.connect(self.pageContent.nameEdit, SIGNAL("textChanged(con QString)"), self._nameChanged) + 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): - print "name changed" \ No newline at end of file + self._project_name = str(name).replace(" ", "_") + self._setProjectPath() + + def _directoryChanged(self, directory): + self._destination_folder = str(QDir.toNativeSeparators(directory)) + self._setProjectPath() + + def _setProjectPath(self): + if self._destination_folder != "" and self._project_name <> "": + if not self._destination_folder.endswith(os.sep): + self._destination_folder += "/" + self.pageContent.projectPath.setText(QDir.toNativeSeparators(self._destination_folder + self._project_name)) + if os.path.exists(self._destination_folder + self._project_name): + self.pageContent.warningLabel.setVisible(True) + self.pageContent.warningLabel.setText(self.tr("Warning: the selected directory exists, \ + it will be destroyed with all contained subdirectories and files...")) + else: + self.pageContent.warningLabel.setVisible(False) + self.pageContent.warningLabel.setText("") + else: + self.pageContent.projectPath.setText("None") + self.pageContent.warningLabel.setVisible(False) + self.pageContent.warningLabel.setText("") + self.emit(SIGNAL("completeChanged()")) + + def _selectDirectory(self): + directory = unicode(QFileDialog.getExistingDirectory(self, self.tr("Open Directory"), "", QFileDialog.ShowDirsOnly)) + if len(directory) > 0: + self.pageContent.directoryEdit.setText(directory) + + def isComplete(self): + if self.pageContent.projectPath.text() != "None": + self._projectInfoStore("PROJECT_PATH", unicode(self.pageContent.projectPath.text())) + return True + else: + return False \ No newline at end of file