X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBFinalPage.py;h=2306b8630d8adec21b6c9a54ad0e2b751bc6a2dc;hb=52d65db7c052108ba5d004dc4687f938d6f3dc90;hp=3f1a9e02d6359dbe0d91a26abc6872702106084a;hpb=df3bd7f742da8c015304fa21e01eb966ff76a089;p=bertos.git diff --git a/wizard/BFinalPage.py b/wizard/BFinalPage.py index 3f1a9e02..2306b863 100644 --- a/wizard/BFinalPage.py +++ b/wizard/BFinalPage.py @@ -49,17 +49,31 @@ class BFinalPage(BWizardPage): def __init__(self): BWizardPage.__init__(self, UI_LOCATION + "/final_page.ui") - self.setTitle(self.tr("Project created successfully")) + self.setTitle(self.tr("Project created successfully!")) ## Overloaded BWizardPage methods ## def reloadData(self): + self.setVisible(False) """ Overload of the BWizardPage reloadData method. """ - QApplication.instance().setOverrideCursor(Qt.WaitCursor) - bertos_utils.createBertosProject(self.project()) - QApplication.instance().restoreOverrideCursor() + try: + QApplication.instance().setOverrideCursor(Qt.WaitCursor) + try: + # This operation can throw WindowsError, if the directory is + # locked. + self.project.createBertosProject() + except OSError, e: + QMessageBox.critical( + self, + self.tr("Error removing destination directory"), + self.tr("Error removing the destination directory. This directory or a file in it is in use by another user or application.\nClose the application which is using the directory and retry.")) + self.wizard().back() + return + finally: + QApplication.instance().restoreOverrideCursor() + self.setVisible(True) self._plugin_dict = {} if os.name == "nt": output = self.projectInfo("OUTPUT") @@ -103,4 +117,4 @@ class BFinalPage(BWizardPage): to_be_opened.append(plugin) self.setProjectInfo("TO_BE_OPENED", to_be_opened) - #### \ No newline at end of file + ####