1 # Copyright (C) 2007-2013 EDF R&D
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 # Lesser General Public License for more details.
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 from determine import monEnvQT5
21 from PyQt5.QtWidgets import QFileDialog, QApplication
23 from PyQt4.QtGui import *
24 from PyQt4.QtCore import *
27 from Extensions.i18n import tr
30 def traduction(directPath,editor,version):
31 if version == "V9V10" :
32 from Traducteur import traduitV9V10
34 if version == "V10V11" :
35 from Traducteur import traduitV10V11
37 if version == "V11V12" :
38 from Traducteur import traduitV11V12
41 fn = QFileDialog.getOpenFileName(
43 tr('Traduire Fichier'),
45 tr('Fichiers JDC (*.comm);;''Tous les Fichiers (*)'))
48 if monEnvQT5 : fn=fn[0]
49 FichieraTraduire=str(fn)
50 if (FichieraTraduire == "" or FichieraTraduire == () ) : return
51 i=FichieraTraduire.rfind(".")
52 Feuille=FichieraTraduire[0:i]
53 FichierTraduit=Feuille+suffixe
56 directLog=Feuille[0:i]
57 log=directLog+"/convert.log"
58 os.system("rm -rf "+log)
59 os.system("rm -rf "+FichierTraduit)
61 QApplication.setOverrideCursor(QCursor(Qt.WaitCursor))
62 if version == "V9V10" : traduitV9V10.traduc(FichieraTraduire,FichierTraduit,log)
63 if version == "V10V11" : traduitV10V11.traduc(FichieraTraduire,FichierTraduit,log)
64 if version == "V11V12" : traduitV11V12.traduc(FichieraTraduire,FichierTraduit,log)
65 QApplication.setOverrideCursor(QCursor(Qt.ArrowCursor))
67 Entete=tr("Fichier Traduit : %s\n\n",str(FichierTraduit))
68 if os.stat(log)[6] != 0L :
74 commande="diff "+FichieraTraduire+" "+FichierTraduit+" >/dev/null"
76 if os.system(commande) == 0 :
77 texte = texte + tr("Pas de difference entre le fichier origine et le fichier traduit")
81 from monVisu import DVisu
82 titre = "conversion de "+ FichieraTraduire
83 monVisuDialg=DVisu(parent=editor.appliEficas,fl=0)
84 monVisuDialg.setWindowTitle(titre)
85 monVisuDialg.TB.setText(texte)