X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBFolderPage.py;h=ba79b4a9edade3dc1451f073c6a846140c9daf1e;hb=37efb5bdc0504ab6df2e8db0635c9c6f7477e23e;hp=374b231da7c5ff8c8c96fac6487ca5bdc7a9313a;hpb=255e98716335ab8e40da330bad016a8983046dec;p=bertos.git diff --git a/wizard/BFolderPage.py b/wizard/BFolderPage.py index 374b231d..ba79b4a9 100644 --- a/wizard/BFolderPage.py +++ b/wizard/BFolderPage.py @@ -23,8 +23,12 @@ class BFolderPage(BWizardPage): 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 = os.path.expanduser("~") @@ -48,13 +52,22 @@ class BFolderPage(BWizardPage): if not self._destinationFolder.endswith(os.sep): self._destinationFolder += os.sep 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 = unicode(QFileDialog.getExistingDirectory(self, self.tr("Open Directory"), "", QFileDialog.ShowDirsOnly)) - if len(directory) == "": + if len(directory) > 0: self.pageContent.directoryEdit.setText(directory) def isComplete(self):