X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBFolderPage.py;h=ba79b4a9edade3dc1451f073c6a846140c9daf1e;hb=d5099d19c0fcaa2837a01abbd1b9dbd9c01add42;hp=5a0a9566e9392571e337793748e8ee8b61729cef;hpb=7a6e7a6b51151ca0c221e004871fc1e4c5748124;p=bertos.git diff --git a/wizard/BFolderPage.py b/wizard/BFolderPage.py index 5a0a9566..ba79b4a9 100644 --- a/wizard/BFolderPage.py +++ b/wizard/BFolderPage.py @@ -15,17 +15,24 @@ 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") + 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._projectName = "" - self._destinationFolder = "" + 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) @@ -41,17 +48,31 @@ class BFolderPage(BWizardPage): self._setProjectPath() def _setProjectPath(self): - if self._destinationFolder <> "" and self._projectName <> "": + 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 + "/") + self.pageContent.projectPath.setText(self._destinationFolder + self._projectName) + if os.path.exists(self._destinationFolder + self._projectName): + 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 = QFileDialog.getExistingDirectory(self, self.tr("Open Directory"), "", QFileDialog.ShowDirsOnly) - self.pageContent.directoryEdit.setText(directory) + directory = unicode(QFileDialog.getExistingDirectory(self, self.tr("Open Directory"), "", QFileDialog.ShowDirsOnly)) + if len(directory) > 0: + self.pageContent.directoryEdit.setText(directory) def isComplete(self): - return self.pageContent.projectPath.text() != "None" \ No newline at end of file + 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