]> SALOME platform Git repositories - tools/eficas.git/commitdiff
Salome HOME
remplacement bete de PyQt4 par PyQt5
authorpascale.noyret <pascale.noyret@edf.fr>
Fri, 22 Jan 2016 10:29:51 +0000 (11:29 +0100)
committerpascale.noyret <pascale.noyret@edf.fr>
Fri, 22 Jan 2016 10:29:51 +0000 (11:29 +0100)
63 files changed:
Extensions/i18n.py
Extensions/localisation.py
Extensions/translation.py
InterfaceQT4/browser.py
InterfaceQT4/compobloc.py
InterfaceQT4/compocomm.py
InterfaceQT4/compofact.py
InterfaceQT4/compomacro.py
InterfaceQT4/compooper.py
InterfaceQT4/configuration.py
InterfaceQT4/editor.py
InterfaceQT4/eficas_go.py
InterfaceQT4/gereTraduction.py
InterfaceQT4/monBoutonSalome.py
InterfaceQT4/monChoixCata.py
InterfaceQT4/monChoixCode.py
InterfaceQT4/monChoixMap.py
InterfaceQT4/monCommandePanel.py
InterfaceQT4/monCommentairePanel.py
InterfaceQT4/monFonctionPanel.py
InterfaceQT4/monFormulePanel.py
InterfaceQT4/monInactifPanel.py
InterfaceQT4/monIncludePanel.py
InterfaceQT4/monListeParamPanel.py
InterfaceQT4/monMCFactPanel.py
InterfaceQT4/monMCListAjoutPanel.py
InterfaceQT4/monMacroPanel.py
InterfaceQT4/monMatricePanel.py
InterfaceQT4/monOptionsPdf.py
InterfaceQT4/monOptions_ASTER.py
InterfaceQT4/monOptions_CUVE2DG.py
InterfaceQT4/monOptions_MAP.py
InterfaceQT4/monOptions_OPENTURNS_STUDY.py
InterfaceQT4/monOptions_OPENTURNS_WRAPPER.py
InterfaceQT4/monParamPanel.py
InterfaceQT4/monPixmap.py
InterfaceQT4/monPlusieursASSDPanel.py
InterfaceQT4/monPlusieursBasePanel.py
InterfaceQT4/monPlusieursIntoPanel.py
InterfaceQT4/monPoursuitePanel.py
InterfaceQT4/monRacinePanel.py
InterfaceQT4/monRecherche.py
InterfaceQT4/monSelectImage.py
InterfaceQT4/monSelectVal.py
InterfaceQT4/monUniqueASSDPanel.py
InterfaceQT4/monUniqueBasePanel.py
InterfaceQT4/monUniqueBoolPanel.py
InterfaceQT4/monUniqueCompPanel.py
InterfaceQT4/monUniqueIntoPanel.py
InterfaceQT4/monUniqueSDCOIntoPanel.py
InterfaceQT4/monUniqueSDCOPanel.py
InterfaceQT4/monVisu.py
InterfaceQT4/qtCommun.py
InterfaceQT4/qtEficas.py
InterfaceQT4/qtSaisie.py
InterfaceQT4/readercata.py
InterfaceQT4/typeNode.py
InterfaceQT4/utilIcons.py
InterfaceQT4/viewManager.py
Noyau/N_ENTITE.py
UiQT4/makefile
ZCracks/mesScripts.py
ZCracks/qtEficas_ZCracks.py

index 98b5db692638d826f04b76c11f6d596572e19c3c..cd83b60a3c9f571bd01d1890338c36011e186a18 100644 (file)
@@ -20,7 +20,7 @@
 This package provides Qt-based string internationalization functionality
 for the ``Eficas`` application of EDF.
 It is usable from both Qt and non-Qt environments.
-``PyQt4`` is currently supported.
+``PyQt5`` is currently supported.
 """
 
 from translation import tr, tr_qt
index f9d0e6d416a0258e86f861289e2301e492d6ab00..7cace8d84b791ab2291817244d474c1cca5ca936 100644 (file)
 Creates and loads two ``QTranslator`` objects, one for pure Qt, one for Eficas,
 and installs them to a ``QApplication``.
 
-``PyQt4`` is currently supported.
+``PyQt5`` is currently supported.
 """
 
-from PyQt4.QtCore import QTranslator
+from PyQt5.QtCore import QTranslator
 
 qt_translator = QTranslator()
 eficas_translator = QTranslator()
@@ -40,9 +40,9 @@ def localise(application, locale=None ):
     If no locale is specified by the user, the system locale
     is used instead, for both Qt base and Eficas translators.
     """
-    from PyQt4.QtCore import QLibraryInfo
-    from PyQt4.QtCore import QLocale
-    from PyQt4.QtGui import QApplication
+    from PyQt5.QtCore import QLibraryInfo
+    from PyQt5.QtCore import QLocale
+    from PyQt5.QtGui import QApplication
     sys_locale = QLocale.system().name()
 
     if locale is None:
index 26189371761ffd4de98972a1645bdc71d2be8a95..6a337a639114a0d4b268b3f53a36812d8d2f9995 100644 (file)
@@ -20,7 +20,7 @@ mechanism, in the ``Eficas`` application of EDF. Handles unformatted and
 formatted strings, according to all formatting schemes: via dictionaries,
 tuples, or atoms.
 
-``PyQt4`` is currently supported.
+``PyQt5`` is currently supported.
 """
 from Extensions.eficas_exception import EficasException
 def _reformat_qstring_from_tuple(qstring, params):
@@ -31,7 +31,7 @@ def _reformat_qstring_from_tuple(qstring, params):
     Returns a formatted QString from an unformatted QString
     and a tuple specifying the parameters of the QString.
     """
-    from PyQt4.QtCore import QRegExp, QString
+    from PyQt5.QtCore import QRegExp, QString
     reg = QRegExp("\%\.[1-9]{1,2}f")
     for p, j in zip(params, range(len(params))):
         try:
@@ -71,7 +71,7 @@ def _reformat_qstring_from_dict(qstring, params):
     Returns a formatted QString from an unformatted QString
     and a dictionary specifying the parameters of the QString.
     """
-    from PyQt4.QtCore import QRegExp, QString
+    from PyQt5.QtCore import QRegExp, QString
     for p, j in zip(params, range(len(params))):
         p_reg = QRegExp("\%\("+ p + "\)\.[1-9]{1,2}f")
         p_index = p_reg.indexIn(qstring)
@@ -108,7 +108,7 @@ def _reformat_qstring_from_atom(qstring, params):
     and an integer or a float specifying the parameter of 
     the QString.
     """
-    from PyQt4.QtCore import QRegExp, QString
+    from PyQt5.QtCore import QRegExp, QString
     reg = QRegExp("\%\.[1-9]{1,2}f")
     if qstring.count("%") == 0:
         qstring.append("%1")
@@ -205,7 +205,7 @@ def tr(string, *args):
        string or Unicode object with formatting specifications, and, 
        optionally, an iterable or an int or float.
        Lets Python do the string formatting."""
-    from PyQt4.QtGui import QApplication
+    from PyQt5.QtGui import QApplication
     string = _preprocess_atom(string)
     if len(args) == 0:
         r = unicode(QApplication.translate("@default", string))
@@ -252,11 +252,11 @@ def tr_qt(string, *args):
        Returns a formatted string from an unformatted 
        Unicode string with formatting specifications, and, 
        optionally, an iterable or an int or float.
-       Lets PyQt4 do the string formatting. To this end,
+       Lets PyQt5 do the string formatting. To this end,
        a conversion from Python to Qt string formatting
        syntax is performed."""
     string = _preprocess_atom(string)
-    from PyQt4.QtGui import QApplication
+    from PyQt5.QtGui import QApplication
     if len(args) == 0:
         r = QApplication.translate("@default", string)
     elif len(args) == 1:
index bc9516bd3081cdf3d7ace3c2fbf38d49ac475202..b19e977b6526ac63fe1a18b500ab9ea904435d6b 100644 (file)
@@ -22,9 +22,9 @@ import string,re
 import types,sys,os
 import traceback
 import typeNode
-from PyQt4 import *
-from PyQt4.QtGui  import *
-from PyQt4.QtCore import *
+from PyQt5 import *
+from PyQt5.QtGui  import *
+from PyQt5.QtCore import *
 from Extensions.i18n import tr
 
 class JDCTree( QTreeWidget ):
@@ -505,9 +505,6 @@ class JDCNode(QTreeWidgetItem):
 
 
 if __name__=='__main__':
-    from PyQt4 import *
-    from PyQt4.QtGui  import *
-    from PyQt4.QtCore import *
     
 
 #    sys.path[:0]=['..','../Aster','../Aster/Cata' ]
index f7bdd3a9f5149386793ac27c674a39c4b39fe483..df877be25985b6c2a7812af2227fe8fc8604cd2a 100644 (file)
@@ -18,8 +18,8 @@
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
 
-from PyQt4 import *
-from PyQt4.QtGui import *
+from PyQt5 import *
+from PyQt5.QtGui import *
 from Editeur     import Objecttreeitem
 
 import compofact
index f86c5696cedda68e811815fead6d6dcfd5a69d6b..5fdaebe72a9bfeda34c1a0f838683d0dbb7d721c 100644 (file)
@@ -18,8 +18,8 @@
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
 
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 import string
 
 from Editeur     import Objecttreeitem
index fe6a54d8681b923c7911154a46e9196e8032130e..08926659d92a924e274fefacab7b60000ec60a3c 100644 (file)
@@ -18,9 +18,9 @@
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
 
-from PyQt4 import *
-from PyQt4.QtGui  import *
-from PyQt4.QtCore import *
+from PyQt5 import *
+from PyQt5.QtGui  import *
+from PyQt5.QtCore import *
 import browser
 import typeNode
 from Extensions.i18n import tr
index c5c282e2b2b44f6909379f3c2bb539e17fb4f82b..ce95f9604df5e7cb19fad8f432c19d2138152827 100644 (file)
@@ -29,8 +29,8 @@ from Extensions.i18n import tr
 import compooper
 import browser
 import typeNode
-from PyQt4.QtGui import QAction
-from PyQt4.QtCore import Qt, SIGNAL, QVariant
+from PyQt5.QtGui import QAction
+from PyQt5.QtCore import Qt, SIGNAL, QVariant
 
 
 class MACRONode(browser.JDCNode,typeNode.PopUpMenuNode):         
index 0d96712026d3be781411f3bb45c906e643446f9c..6330390d48af410b77c484d102ff1624b15cd650 100644 (file)
@@ -19,9 +19,9 @@
 #
 import os
 import tempfile
-from PyQt4.QtGui import QMessageBox, QAction, QApplication, QCursor
-from PyQt4.QtGui import *
-from PyQt4.QtCore import Qt, SIGNAL, QVariant
+from PyQt5.QtGui import QMessageBox, QAction, QApplication, QCursor
+from PyQt5.QtGui import *
+from PyQt5.QtCore import Qt, SIGNAL, QVariant
 from Extensions.i18n import tr
 from Extensions.eficas_exception import EficasException
 
index a76c76017088ca785407741b481fd629597d5855..22ae4b954a5f0bdb5b4bc63eda95e057fea3be19 100644 (file)
@@ -23,7 +23,7 @@
 # Modules Python\r
 import os, sys, string, types, re\r
 import traceback\r
-from PyQt4.QtGui import QMessageBox\r
+from PyQt5.QtGui import QMessageBox\r
 from  Editeur.utils import read_file\r
 from Extensions.i18n import tr\r
 \r
index ddd8784fd5791363ab83ff244af19b885a49041f..abfd9d2609ae81b754cd335e15d11eab8518d651 100644 (file)
@@ -20,9 +20,9 @@
 import types,sys,os, re
 import  subprocess
 import traceback
-from PyQt4 import *
-from PyQt4.QtGui  import *
-from PyQt4.QtCore import *
+from PyQt5 import *
+from PyQt5.QtGui  import *
+from PyQt5.QtCore import *
 import time
 from datetime import date
 from Extensions.i18n import tr
@@ -405,7 +405,7 @@ class JDCEditor(QSplitter):
     #----------------------------------------------#
         if self.sb:
            mapalette=self.sb.palette()
-           from PyQt4.QtGui import QPalette
+           from PyQt5.QtGui import QPalette
            mapalette.setColor( QPalette.WindowText, couleur )
            self.sb.setPalette( mapalette );
            self.sb.showMessage(QString.fromUtf8(message))#,2000)
index 2f7609f08b219d5442a8f079adb8fdf5c47703c8..7cc32e4d50d461434b7cf7656534706c9700522c 100644 (file)
@@ -29,7 +29,7 @@ if ihmDir not in sys.path : sys.path.append(ihmDir)
 if ihmQTDir not in sys.path : sys.path.append(ihmQTDir)
 if editeurDir not in sys.path :sys.path.append(editeurDir)
 
-from PyQt4.QtGui import *
+from PyQt5.QtGui import *
 
 def lance_eficas(code=None,fichier=None,ssCode=None,multi=False,langue='en'):
     """
index fce867859c8d9ce6dbc84dffddbd934072b3d774..785eb22fcd04fefb7d2050a6903988131fb837b0 100644 (file)
@@ -16,9 +16,9 @@
 #
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
-from PyQt4 import *
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5 import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 import os
 from Extensions.i18n import tr
 
index 97c202f66085c687e68cc59160759bdace7265a6..a66f73c453ad047e3e67e542d590b592cb9d95ab 100644 (file)
 # Modules Eficas
 
 from desBoutonSalome import Ui_desBoutonSalome
-from PyQt4  import *
-from PyQt4.QtCore import *
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5  import *
+from PyQt5.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 
 from Extensions.i18n import tr
 # Import des panels
index 442d01d1dd5eb55a18b07c82371e6995881e85af..3e2f54d90c3c80d3c177c23e627ee5ef96c31bfd 100644 (file)
 # Modules Eficas
 
 from desChoixCata import Ui_DChoixCata
-from PyQt4  import *
-from PyQt4.QtCore import *
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5  import *
+from PyQt5.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 
 from Extensions.i18n import tr
 # Import des panels
index c2c0a4352c776b9b3b566cda3a31da8d072771a1..176509af75b1e578fd8b873e74b90c8ab6fc436d 100644 (file)
@@ -22,8 +22,8 @@
 
 import os,sys,re
 from desChoixCode import Ui_ChoixCode
-from PyQt4.QtGui import * 
-from PyQt4.QtCore import * 
+from PyQt5.QtGui import * 
+from PyQt5.QtCore import * 
 
     
 # Import des panels
index afcee4fdcceea4a6df0f74fa717ff5ba51d24f85..5824632456f4ebaf9060bf293f2138c464932d63 100644 (file)
 # Modules Eficas
 
 from desChoixMap import Ui_ChoixMap
-from PyQt4  import *
-from PyQt4.QtCore import *
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5  import *
+from PyQt5.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 
     
 # Import des panels
index 38687af5be99f7efce1d70e7c36040a31c7b4780..2a0c3ce9aea10c1fe9d333b4c19eddaed1aa8f72 100644 (file)
@@ -25,9 +25,9 @@ from qtCommun    import QTPanel
 from qtCommun    import QTPanelTBW1
 from qtCommun    import QTPanelTBW2
 from qtCommun    import QTPanelTBW3
-from PyQt4       import *
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5       import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 
 class DComm(Ui_DComm,QDialog):
    def __init__(self,parent ,modal ) :
index 5adfe832998c5cfca03678462963815dcdaac38e..36e888c5c7e639e088133e690d4543748c1148f4 100644 (file)
@@ -22,9 +22,9 @@ import string,types,os
 
 # Modules Eficas
 
-from PyQt4 import *
-from PyQt4.QtGui  import *
-from PyQt4.QtCore import *
+from PyQt5 import *
+from PyQt5.QtGui  import *
+from PyQt5.QtCore import *
 
 from desCommentaire import Ui_DComment
 from qtCommun      import QTPanel
index 599b81db602cbd1ba241f7c4ff38420d41514846..4439d36fd341f3604725545a5ca2da8583e8190d 100644 (file)
@@ -24,8 +24,8 @@ import string,types,os
 from qtSaisie      import SaisieValeur
 from monPlusieursBasePanel import MonPlusieursBasePanel
 
-from PyQt4.QtGui  import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui  import *
+from PyQt5.QtCore import *
 from Extensions.i18n import tr
 
 # Import des panels
index 0ea6c216e6c1278b356ed151a43fb70f8a018607..5c9ec53ee96c5506641f91467f6eeef9c1869cd1 100644 (file)
@@ -25,8 +25,8 @@ from qtCommun import QTPanel
 from qtCommun import QTPanelTBW2
 from Extensions.i18n import tr
 
-from PyQt4.QtGui  import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui  import *
+from PyQt5.QtCore import *
 
 
 class DFormule(Ui_DFormule,QDialog):
index 6e20b841298ba54c3e0fdefce4f8478c211899fb..88c22daab243762fcf189a5da1b298592145b434 100644 (file)
@@ -19,8 +19,8 @@
 #
 
 
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 
 from qtCommun import QTPanel
 from desInactif import Ui_DInactif
index e09eb07687b49da247a331546ab8c457c615fbec..21e39c61189bb11e5639df33ec1440d1bdbc8c51 100644 (file)
@@ -25,8 +25,8 @@ from qtCommun import QTPanel
 from qtCommun import QTPanelTBW1
 from qtCommun import QTPanelTBW2
 from qtCommun import QTPanelTBW3
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 from Extensions.i18n import tr
 
 from  desInclude import Ui_DInc1
index 6824bc97bf8a904eaac6ce351fcdfb7c273d0aa8..9e8a7790b40951d9a25aac5477588b1e8e62f1f3 100644 (file)
@@ -21,8 +21,8 @@
 # Modules Eficas
 
 from desListeParam import Ui_DLisParam
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 
 # Import des panels
 class DLisParam(Ui_DLisParam,QDialog):
index 45663ce30a7f7369b277b3e82ec4db20e17a9c83..a4dc0d2f7eaa9d54c21a604a8e822c84282026df 100644 (file)
@@ -23,8 +23,8 @@
 from desMCFact import Ui_DMCFact
 from qtCommun import QTPanel
 from qtCommun import QTPanelTBW1
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 
 class DMCFact(Ui_DMCFact,QDialog):
    def __init__(self,parent ,modal ) :
index 13b3fe496b39eaefdaf8e6d3f1251641222efbb3..cc1f13617ff7731400bcf6cccefb628e808d863e 100644 (file)
@@ -21,8 +21,8 @@
 # Modules Eficas
 
 from desMCListAjout import Ui_DMCListAjout
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 from qtCommun import QTPanel
 
 
index 7f62a94776b53734ed77c26016709952a372bc1d..b90ed0910271d5ab5b2c198c22c780bfa02b34b0 100644 (file)
@@ -25,9 +25,9 @@ from qtCommun import QTPanel
 from qtCommun import QTPanelTBW1
 from qtCommun import QTPanelTBW2
 from qtCommun import QTPanelTBW3
-from PyQt4 import *
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5 import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 from Extensions.i18n import tr
 
 class DMacro(Ui_DComm,QDialog):
index d8bca638315a4efc21f01c6e6a0f67191dca41c0..f34e3c92c7b91435f4a3f0024481fcdf6261b746 100644 (file)
@@ -21,8 +21,8 @@
 import string,types,os
 
 # Modules Eficas
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 from Extensions.i18n import tr
 
 from desMatrice           import Ui_desMatrice
index 0ebbd486269ed07b066c5a39566248a33287b886..c52f1f6345908e27abe635afcabfc178864b1407 100644 (file)
@@ -18,8 +18,8 @@
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
 
-from PyQt4.QtGui  import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui  import *
+from PyQt5.QtCore import *
 
 from OptionsPdf import Ui_desPdf
 
index 7e3ef8a11510fc1959d779f6b421ee567b8913ac..2ab5ddc7770b0731e4987c398d50e73c4b3c4c27 100644 (file)
@@ -21,8 +21,8 @@
 import os, re
 from Extensions.i18n import tr
 
-from PyQt4.QtGui  import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui  import *
+from PyQt5.QtCore import *
 
 from OptionsEditeur import Ui_desOptions
 
index e4cb4d7afe1482ac36e4daf62fa9c76fd53a6826..8a15a653e07523a7bce3782c95de9271f000e289 100644 (file)
@@ -20,8 +20,8 @@
 
 import os, re, sys
 
-from PyQt4.QtGui  import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui  import *
+from PyQt5.QtCore import *
 
 from OptionsCuve import Ui_desOptions
 
index 8cb59c99ee1db34dc6d05ce1056179c990cd4f11..67f1eba3ffd4c6c1f782e3af39cb800c614a9f5f 100644 (file)
@@ -20,8 +20,8 @@
 
 import os, re, sys
 
-from PyQt4.QtGui  import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui  import *
+from PyQt5.QtCore import *
 
 from OptionsMAP import Ui_desOptionsMap
 
index f255a6655ba6945f56d4fce4766f3e3c0e6598af..711780c32cdde21f48be7abebca5015e26b281e5 100644 (file)
@@ -20,8 +20,8 @@
 
 import os, re, sys
 
-from PyQt4.QtGui  import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui  import *
+from PyQt5.QtCore import *
 
 from OptionsOT import Ui_desOptions
 
index 3074624038cea9f763d292b4a64152e1ea63d858..1fe31cd744e1cfc4b4b7d569782c8d005aee9c20 100644 (file)
@@ -20,8 +20,8 @@
 
 import os, re, sys
 
-from PyQt4.QtGui  import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui  import *
+from PyQt5.QtCore import *
 
 from OptionsOT import Ui_desOptions
 
index e07bad8b7614f49430467109fbcba5c7de373247..b906c3bb67ee6f3ff4ca086d16d4dcd3c2987176 100644 (file)
@@ -22,9 +22,9 @@ import string,types,os,re
 
 # Modules Eficas
 
-from PyQt4 import *
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5 import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 from Extensions.i18n import tr
 
 from desParam import Ui_DParam
index 7d3ac75d567fa61f3d0db40ac899b121ebfb096a..9b0890fce6fa7d790c369951fc6a3d084910f886 100644 (file)
 # Modules Eficas
 
 from desPixmap import Ui_LabelPixmap
-from PyQt4  import *
-from PyQt4.QtCore import *
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 from Extensions.i18n import tr
 
 
index 58174cb5c8b812c7b08a9aab07e36e1f94768dcf..b2f5783bdb787597ed178f3f4d954da55a50d415 100644 (file)
@@ -20,9 +20,9 @@
 # Modules Python
 import string,types,os
 
-from PyQt4 import *
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5 import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 from Extensions.i18n import tr
 
 
index 1a74848ca48ad5781d426224927e7060efd09f94..4ad662c254d76b3f8b3fd5f39f874edd44f0cea5 100644 (file)
@@ -21,8 +21,8 @@
 import string,types,os
 
 # Modules Eficas
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 
 from desPlusieursBase import Ui_DPlusBase
 from qtCommun      import QTPanel
index defb80407cc67de5410b15fb0a988898acf8b57c..b03a2d5ca69ccc64ad6f8d53f6779975ecdbe217 100644 (file)
@@ -21,8 +21,8 @@
 import string,types,os
 
 # Modules Eficas
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 
 from Extensions.i18n import tr
 from desPlusieursInto import Ui_DPlusInto
index f5e50363cc7b5ce79d4be3620be4172ed4fcff1b..6d69d744d5df9176ce1637b89bf8aa1e9c2da16b 100644 (file)
@@ -21,9 +21,9 @@
 # Modules Eficas
 
 import os,traceback,sys
-from PyQt4 import *
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5 import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 
 from Extensions.i18n import tr
 import convert
index d615cf585fc28356fc63d7794ced4060bfa0a56e..ae5266b85ef4f8b358fb1b2818ce7a70487d1ad0 100644 (file)
@@ -24,9 +24,9 @@ from desRacine import Ui_DRac
 from qtCommun  import QTPanel
 from qtCommun  import QTPanelTBW2
 
-from PyQt4 import *
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5 import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 
 class DRac(Ui_DRac,QWidget):
    def __init__(self,parent ,modal = 0 ) :
index 7511f974347734d53049fd1caeecd12ab26e52ca..fa76f189b3d4eb0fdd9439e1726af42af0cb4c66 100644 (file)
@@ -21,9 +21,9 @@
 # Modules Eficas
 
 from desRecherche import Ui_desRecherche
-from PyQt4  import *
-from PyQt4.QtCore import *
-from PyQt4.QtGui import *
+from PyQt5  import *
+from PyQt5.QtCore import *
+from PyQt5.QtGui import *
 
 # Import des panels
 
index 2215c3747af220f875204e7a6e1606eba4c35d66..74bb22d33b4bf56a6eb366516cc6536f2cf556c8 100644 (file)
@@ -21,8 +21,8 @@
 # Modules Eficas
 
 from desImage import Ui_DSelImage
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 
 class DSelImage(Ui_DSelImage,QDialog):
    def __init__(self,parent ,modal ) :
index 4e7b0b3edf6ab9f1de8bb91e95d65c5b59c40b22..f8c6c30d38aba5e8bfc8ae3c0e6965ed2a6a2cf0 100644 (file)
@@ -21,8 +21,8 @@
 # Modules Eficas
 
 from desSelectVal import Ui_DSelVal
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 
 class DSelVal(Ui_DSelVal,QDialog):
    def __init__(self,parent ,modal ) :
index fc7235d7550669fb5a26920de32d2d16ffe8cb80..4339d0a5203c299786071a5541cba73a55924e32 100644 (file)
@@ -23,8 +23,8 @@ from Extensions.i18n import tr
 
 # Modules Eficas
 
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 
 from desUniqueASSD import Ui_DUnASSD
 from qtCommun      import QTPanel
index 85579f0ca7ce5cb1b4c09ef1a4fb7f769c76165e..6b5a521118cc07c2f62d1aa8e36eca44aa92e139 100644 (file)
@@ -21,8 +21,8 @@
 import string,types,os
 
 # Modules Eficas
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 from Extensions.i18n import tr
 
 
index 79f07a2afb11a5d2094eb85a80d298d955242da7..42c0a0d16209902ef46e6b807f73ec921e942d55 100644 (file)
@@ -21,8 +21,8 @@
 import string,types,os
 
 # Modules Eficas
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 from Extensions.i18n import tr
 
 
index 9fb55e418c70407fa678935c8af0e01577b7c7ef..f981a1d3b037ddde26ffc33a539a2105d89e276f 100644 (file)
@@ -21,8 +21,8 @@
 import string,types,os,re
 
 # Modules Eficas
-from PyQt4.QtCore import *
-from PyQt4.QtGui import *
+from PyQt5.QtCore import *
+from PyQt5.QtGui import *
 from Extensions.i18n import tr
 
 
index be39f130aeb2702f5e65585d982cb11c7f4d946c..4a580ca70373abf2fcadd7343ad1c431a4342c3b 100644 (file)
@@ -21,8 +21,8 @@
 import string,types,os
 
 # Modules Eficas
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 from Extensions.i18n import tr
 
 
index d260f2bba87670739f2fb2cc542b9d8a0521f9dd..51ef835651f45839a32d746867ff462c9df9792e 100644 (file)
@@ -21,9 +21,9 @@
 import string,types,os
 
 # Modules Eficas
-from PyQt4 import *
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5 import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 
 from Extensions.i18n import tr
 from desUniqueSDCOInto    import Ui_DUnSDCOInto
index e088a3d5d05409a4f229bab6fdf3a368c9f49635..9d5fd61dd0ea49783b381c6df5693b97202533c2 100644 (file)
@@ -21,8 +21,8 @@
 import string,types,os
 
 # Modules Eficas
-from PyQt4.QtCore import *
-from PyQt4.QtGui  import *
+from PyQt5.QtCore import *
+from PyQt5.QtGui  import *
 
 from Extensions.i18n import tr
 from desUniqueSDCO        import Ui_DUnSDCO
index 79cb99f1a7f2a4d297439b281623cb408c6a7f3f..7fc05737635ed43caa3d793b7e5ef5d965b8eed6 100644 (file)
@@ -21,9 +21,9 @@
 # Modules Eficas
 
 from desVisu import Ui_DVisu
-from PyQt4  import *
-from PyQt4.QtCore import *
-from PyQt4.QtGui import *
+from PyQt5  import *
+from PyQt5.QtCore import *
+from PyQt5.QtGui import *
 
 # Import des panels
 
index 70e23e0cc1d2b7063933082595ef58cc9a3941ae..74147263836bad96c5a8ee83be0d24f43f79ad66 100644 (file)
@@ -21,9 +21,9 @@
 import string,types,os
 import traceback
 
-from PyQt4 import *
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5 import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 from Extensions.i18n import tr
 
 # Import des panels
index 9d3f89e2c327e511621c046112d801023ff00511..7212f5de7a9c0ad9b354ccb03def8eae733c00ea 100644 (file)
@@ -20,8 +20,8 @@
 
 import os, sys
 
-from PyQt4.QtGui  import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui  import *
+from PyQt5.QtCore import *
 from myMain import Ui_Eficas
 from viewManager import MyTabview
 from getVersion import getEficasVersion
index 0d0a57c76668e21a8a4439abb759f36856286d4b..2c494a3aec1c5ab253c67565c77f218fba7522d9 100644 (file)
@@ -19,9 +19,9 @@
 #
 # Modules Python
 import string,types,os
-from PyQt4 import *
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5 import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 from Extensions.i18n import tr
 
 
index 48ac78859620c3d3b1611189ded46b0b4486756a..75548707ecf63249276a4b4e2817aa5488096e3c 100644 (file)
@@ -42,9 +42,9 @@ from monChoixCata import MonChoixCata
 from Extensions.i18n import tr
 from Extensions.eficas_exception import EficasException
 
-from PyQt4 import *
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5 import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 
 
 class READERCATA:
index 86bf664cdaba316e70f88cd600038502738e2248..f6fe15c6cd703ad37ec20938f79d34d32e0cb4ac 100644 (file)
@@ -17,9 +17,9 @@
 #
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
-from PyQt4 import *
-from PyQt4.QtGui import *
-from PyQt4.QtCore import *
+from PyQt5 import *
+from PyQt5.QtGui import *
+from PyQt5.QtCore import *
 from Extensions.i18n import tr
 import types
 
index be2cc866590b787110fe0481ee7cc168c6ffe551..0afb4c6799b8b6801265e0e95ba5274d593dfc27 100644 (file)
@@ -18,7 +18,7 @@
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
 
-from PyQt4.QtGui import QPixmap, QIcon
+from PyQt5.QtGui import QPixmap, QIcon
 import os
 
 class PixmapCache:
@@ -65,7 +65,7 @@ def getIcon(key):
     return QIcon(key)
     
 
-#from PyQt4.Qt3Support import Q3MimeSourceFactory
+#from PyQt5.Qt3Support import Q3MimeSourceFactory
 
 #def initializeMimeSourceFactory():
     """
index 344cc330bede4a5ffdd076ec2b0b4d21557721a6..290720f80b039790f65c07e36e4755287f671182 100644 (file)
@@ -19,8 +19,8 @@
 #
 
 import os, string
-from PyQt4.QtGui  import *
-from PyQt4.QtCore import *
+from PyQt5.QtGui  import *
+from PyQt5.QtCore import *
 from Extensions.i18n import tr
 
 DictExtensions= {"MAP" : ".map .input"}
index e74d4ddf83643bfd41a71e631eb707f5401b9cfd..1937b5462b794bdb03b5af7fa9f4ac84066632a2 100644 (file)
@@ -33,7 +33,7 @@ import N_VALIDATOR
 from strfunc import ufmt
 
 try:
-    from PyQt4 import QtCore
+    from PyQt5 import QtCore
     stringTypes = (str, unicode, QtCore.QString)
 except ImportError:
     stringTypes = (str, unicode)
index 5c36754bdf77e05579156e5d16fa14031b172b30..d16f37d46fe8d4c6a7e0f31c7c64f0a90c9f38f2 100644 (file)
@@ -1,5 +1,5 @@
-PYUIC = pyuic4
-QTRELEASE = lrelease-qt4
+PYUIC = pyuic5
+QTRELEASE = lrelease
 .PHONY : all
 .SUFFIXES : .ui .py .ts .qm
 
index 9756cd670a4fab2d167149b1109ed546582fe585..b526fa5f8b7c0f86f8ea51d1efdcc85b40713272 100644 (file)
@@ -4,12 +4,12 @@ def view_med(params,appli) :
     fileName=mcSimp.valeur
     import os
     if not os.path.isfile(fileName) : 
-           from PyQt4.QtGui import QMessageBox
+           from PyQt5.QtGui import QMessageBox
            QMessageBox.warning( None, "Erreur","Le fichier n'existe pas")
            return
     result,message=appli.importMedFile(fileName)
     if result==1 : return 
-    from PyQt4.QtGui import QMessageBox
+    from PyQt5.QtGui import QMessageBox
     QMessageBox.warning( None, "Erreur a l import",message)
     return
 
index b1254f2ca4feef0d76c3a212464ef324cfd6a169..c0a13df837d874aadb3a0140a083428f67a0bf20 100755 (executable)
@@ -27,7 +27,7 @@
 import sys,os
 sys.path.append(os.path.join(os.path.abspath(os.path.dirname(__file__)),'..'))
 
-from PyQt4.QtCore import *
+from PyQt5.QtCore import *
 import prefs
 from InterfaceQT4 import eficas_go
 eficas_go.lance_eficas(code=prefs.code)