Preferences/ToolConfigurationDialog.py

changeset 537
72b32daeb8d6
parent 97
c4086afea02b
child 564
b3d966393ba9
--- a/Preferences/ToolConfigurationDialog.py	Mon Aug 30 20:16:34 2010 +0200
+++ b/Preferences/ToolConfigurationDialog.py	Tue Aug 31 12:17:02 2010 +0200
@@ -13,6 +13,7 @@
 from PyQt4.QtGui import *
 
 from E5Gui.E5Completers import E5FileCompleter
+from E5Gui import E5MessageBox
 
 from .Ui_ToolConfigurationDialog import Ui_ToolConfigurationDialog
 import Utilities
@@ -94,21 +95,21 @@
         redirect = self.redirectionModes[self.redirectCombo.currentIndex()][0]
         
         if not executable:
-            QMessageBox.critical(self,
+            E5MessageBox.critical(self,
                 self.trUtf8("Add tool entry"),
                 self.trUtf8("You have to set an executable to add to the"
                     " Tools-Menu first."))
             return
         
         if not menutext:
-            QMessageBox.critical(self,
+            E5MessageBox.critical(self,
                 self.trUtf8("Add tool entry"),
                 self.trUtf8("You have to insert a menuentry text to add the"
                     " selected program to the Tools-Menu first."))
             return
         
         if not Utilities.isinpath(executable):
-            QMessageBox.critical(self,
+            E5MessageBox.critical(self,
                 self.trUtf8("Add tool entry"),
                 self.trUtf8("The selected file could not be found or"
                     " is not an executable."
@@ -116,7 +117,7 @@
             return
         
         if len(self.toolsList.findItems(menutext, Qt.MatchFlags(Qt.MatchExactly))):
-            QMessageBox.critical(self,
+            E5MessageBox.critical(self,
                 self.trUtf8("Add tool entry"),
                 self.trUtf8("An entry for the menu text {0} already exists.")\
                     .format(menutext))
@@ -148,21 +149,21 @@
         redirect = self.redirectionModes[self.redirectCombo.currentIndex()][0]
         
         if not executable:
-            QMessageBox.critical(self,
+            E5MessageBox.critical(self,
                 self.trUtf8("Change tool entry"),
                 self.trUtf8("You have to set an executable to change the"
                     " Tools-Menu entry."))
             return
             
         if not menutext:
-            QMessageBox.critical(self,
+            E5MessageBox.critical(self,
                 self.trUtf8("Change tool entry"),
                 self.trUtf8("You have to insert a menuentry text to change the"
                     " selected Tools-Menu entry."))
             return
             
         if not Utilities.isinpath(executable):
-            QMessageBox.critical(self,
+            E5MessageBox.critical(self,
                 self.trUtf8("Change tool entry"),
                 self.trUtf8("The selected file could not be found or"
                     " is not an executable."
@@ -254,7 +255,7 @@
         if execfile:
             execfile = Utilities.toNativeSeparators(execfile)
             if not Utilities.isinpath(execfile):
-                QMessageBox.critical(self,
+                E5MessageBox.critical(self,
                     self.trUtf8("Select executable"),
                     self.trUtf8("The selected file is not an executable."
                         " Please choose an executable filename."))
@@ -387,4 +388,4 @@
         """
         tmp = self.toollist[itm1]
         self.toollist[itm1] = self.toollist[itm2]
-        self.toollist[itm2] = tmp
+        self.toollist[itm2] = tmp
\ No newline at end of file

eric ide

mercurial