Salome HOME
19-07-16
[tools/eficas.git] / InterfaceQT4 / gereIcones.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2007-2013   EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20 # Modules Python
21 import string,types,os,re,sys
22 import traceback
23 from  determine import monEnvQT5
24 if monEnvQT5 :
25   from PyQt5.QtWidgets import QMessageBox, QFileDialog , QMenu
26   from PyQt5.QtGui import QIcon
27   from PyQt5.QtCore import  QFileInfo,  Qt, QSize, QVariant
28
29 else:
30   from PyQt4.QtGui  import *
31   from PyQt4.QtCore import *
32
33
34 from Extensions.i18n import tr
35 listeSuffixe=('bmp','png','jpg' ,'txt','med')
36
37
38 class FacultatifOuOptionnel:
39
40   def setReglesEtAide(self):
41       listeRegles=()
42       try :
43          listeRegles     = self.node.item.get_regles()
44       except :
45          pass
46       if hasattr(self,"RBRegle"):
47         if listeRegles==() : self.RBRegle.close() 
48         else :
49            icon3=QIcon(self.repIcon+"/lettreRblanc30.png")
50            self.RBRegle.setIcon(icon3)
51            if monEnvQT5 :self.RBRegle.clicked.connect(self.viewRegles)
52            else : self.connect( self.RBRegle,SIGNAL("clicked()"),self.viewRegles)
53
54       cle_doc=None
55       if not hasattr(self,"RBInfo"):return
56       icon=QIcon(self.repIcon+"/point-interrogation30.png")
57       self.RBInfo.setIcon(icon)
58
59       from monWidgetCommande import MonWidgetCommande
60       if isinstance(self,MonWidgetCommande) and self.editor.code =="MAP":
61          self.cle_doc = self.chercheDocMAP()
62       else :
63          self.cle_doc = self.node.item.get_docu()
64       if self.cle_doc == None  : self.RBInfo.close()
65       elif monEnvQT5 : self.RBInfo.clicked.connect (self.viewDoc)
66       else : self.connect (self.RBInfo,SIGNAL("clicked()"),self.viewDoc)
67
68
69   def chercheDocMAP(self):
70       try :
71         clef=self.editor.CONFIGURATION.adresse+"/"
72       except :
73         return None
74       for k in self.editor.readercata.cata[0].JdC.dict_groupes.keys():
75           if self.obj.nom in self.editor.readercata.cata[0].JdC.dict_groupes[k]:
76              clef+=k
77              break
78       clef+="/"+ self.obj.nom[0:-5].lower()+"/spec_"+self.obj.nom[0:-5].lower()+".html"
79
80       return clef
81  
82   def viewDoc(self):
83       try :
84           if sys.platform[0:5]=="linux" : cmd="xdg-open "+self.cle_doc
85           else                          : cmd="start "+self.cle_doc
86           os.system(cmd)
87       except:
88           QMessageBox.warning( self,tr( "Aide Indisponible"),tr( "l'aide n est pas installee "))
89
90   def viewRegles(self):
91       self.node.AppelleBuildLBRegles()
92
93
94   def setIconePoubelle(self):
95       if not(hasattr(self,"RBPoubelle")):return
96       if self.node.item.object.isoblig() : 
97          icon=QIcon(self.repIcon+"/deleteRondVide.png")
98          self.RBPoubelle.setIcon(icon)
99          return
100       icon=QIcon(self.repIcon+"/deleteRond.png")
101       self.RBPoubelle.setIcon(icon)
102       if monEnvQT5 : self.RBPoubelle.clicked.connect(self.aDetruire)
103       else : self.connect(self.RBPoubelle,SIGNAL("clicked()"),self.aDetruire)
104
105   def setIconesSalome(self):
106        if not (hasattr(self,"RBSalome")): return
107        from Accas import SalomeEntry
108        mc = self.node.item.get_definition()
109        mctype = mc.type[0]
110        enable_salome_selection = self.editor.salome and \
111          (('grma' in repr(mctype)) or ('grno' in repr(mctype)) or ('SalomeEntry' in repr(mctype)) or \
112          (hasattr(mctype, "enable_salome_selection") and mctype.enable_salome_selection))
113
114        if enable_salome_selection:
115           icon=QIcon(self.repIcon+"/flecheSalome.png")
116           self.RBSalome.setIcon(icon)
117           if monEnvQT5 : self.RBSalome.pressed.connect(self.BSalomePressed)
118           else : self.connect(self.RBSalome,SIGNAL("pressed()"),self.BSalomePressed)
119
120 #PNPN --> Telemac A revoir surement
121 # cela ou le catalogue grpma ou salomeEntry
122           if not(('grma' in repr(mctype)) or ('grno' in repr(mctype))) or not(self.editor.salome): 
123              if hasattr(self,"RBSalomeVue") : self.RBSalomeVue.close()
124           else : 
125              icon1=QIcon(self.repIcon+"/eye.png")
126              self.RBSalomeVue.setIcon(icon1)
127              if monEnvQT5 : self.RBSalomeVue.clicked.connect(self.BView2DPressed)
128              else : self.connect(self.RBSalomeVue,SIGNAL("clicked()"),self.BView2DPressed)
129        else:
130           self.RBSalome.close()
131           self.RBSalomeVue.close()
132
133      
134   def setIconesFichier(self):
135        if not ( hasattr(self,"BFichier")): return
136        mc = self.node.item.get_definition()
137        mctype = mc.type[0]
138        if mctype == "Repertoire":
139           self.BRepertoire=self.BFichier
140           if monEnvQT5 : self.BRepertoire.clicked.connect(self.BRepertoirePressed)
141           else : self.connect(self.BRepertoire,SIGNAL("clicked()"),self.BRepertoirePressed)
142           self.BVisuFichier.close()
143        else :
144           if monEnvQT5 : self.BFichier.clicked.connect(self.BFichierPressed)
145           else : self.connect(self.BFichier,SIGNAL("clicked()"),self.BFichierPressed)
146           if monEnvQT5 : self.BVisuFichier.clicked.connect(self.BFichierVisu)
147           else : self.connect(self.BVisuFichier,SIGNAL("clicked()"),self.BFichierVisu)
148
149
150
151   def setIconesGenerales(self):
152       repIcon=self.node.editor.appliEficas.repIcon
153       if hasattr(self,"BVisuListe") :
154          fichier=os.path.join(repIcon, 'plusnode.png')
155          icon = QIcon(fichier)
156          self.BVisuListe.setIcon(icon)
157       if hasattr(self,"RBDeplie") :
158          fichier=os.path.join(repIcon, 'plusnode.png')
159          icon = QIcon(fichier)
160          self.RBDeplie.setIcon(icon)
161       if hasattr(self,"RBPlie") :
162          fichier=os.path.join(repIcon, 'minusnode.png')
163          icon = QIcon(fichier)
164          self.RBPlie.setIcon(icon)
165
166       
167
168   def setRun(self):
169       if hasattr(self.editor.appliEficas, 'mesScripts') :
170          if self.editor.code in  self.editor.appliEficas.mesScripts.keys() :
171             self.dict_commandes_mesScripts=self.appliEficas.mesScripts[self.editor.code].dict_commandes
172             if self.obj.nom in self.dict_commandes_mesScripts.keys() :
173                self.ajoutScript()
174                return
175       if hasattr(self,"RBRun"): self.RBRun.close()
176       if hasattr(self,"CBScripts"): self.CBScripts.close()
177
178
179   def aDetruire(self):
180       self.node.delete()
181
182   def setValide(self):
183       #print " c est le moment de gerer le passage au suivant"
184       if not(hasattr (self,'RBValide')) : return
185       icon = QIcon()
186       if self.node.item.object.isvalid() : 
187          icon=QIcon(self.repIcon+"/ast-green-ball.png")
188       else :
189          icon=QIcon(self.repIcon+"/ast-red-ball.png")
190       self.RBValide.setIcon(icon)
191
192   # il faut chercher la bonne fenetre
193   def rendVisible(self):
194       #print "je passe par rendVisible de FacultatifOuOptionnel"
195       #print self
196       #print self.node.fenetre
197       #print "return pour etre sure"
198       return
199       #PNPN
200       newNode=self.node.treeParent.chercheNoeudCorrespondant(self.node.item.object)
201       #print newNode
202       self.editor.fenetreCentraleAffichee.scrollAreaCommandes.ensureWidgetVisible(newNode.fenetre)
203       #newNode.fenetre.setFocus()
204
205
206   def ajoutScript(self):
207         if not hasattr(self,'CBScripts') : return # Cas des Widgets Plies
208         self.dictCommandes={}
209         listeCommandes=self.dict_commandes_mesScripts[self.obj.nom]
210         if type(listeCommandes) != types.TupleType: listeCommandes=(listeCommandes,)
211         i=0
212         for commande in listeCommandes :
213           conditionSalome=commande[3]
214           if (self.appliEficas.salome == 0 and conditionSalome == True): continue
215           self.CBScripts.addItem(commande[1])
216           self.dictCommandes[commande[1]]=i
217           i=i+1
218         if monEnvQT5:
219            #self.CBScripts.currentIndexChanged.connect(self.choixSaisi)
220            self.CBScripts.activated.connect(self.choixSaisi)
221         else :
222            #self.connect(self.CBScripts,SIGNAL("currentIndexChanged(int)"),self.choixSaisi)
223            self.connect(self.CBScripts,SIGNAL("activated(int)"),self.choixSaisi)
224
225   def choixSaisi(self):
226       fction=str(self.CBScripts.currentText())
227       numero= self.dictCommandes[fction]
228       self.node.AppelleFonction(numero,nodeTraite=self.node)
229       #self.reaffiche()
230
231 class ContientIcones:
232
233   def BFichierVisu(self):
234        fichier=self.lineEditVal.text()
235        if fichier == None or str(fichier)=="" : return
236        from monViewTexte import ViewText
237        try :
238          if sys.platform[0:5]=="linux" :
239            cmd="xdg-open "+ str(fichier)
240            os.system(cmd)
241          else                          :
242            os.startfile(str(fichier)) 
243        except:
244          try :
245             fp=open(fichier)
246             txt=fp.read()
247             nomFichier=QFileInfo(fichier).baseName()
248             maVue=ViewText(self,entete=nomFichier)
249             maVue.setText(txt)
250             maVue.show()
251             fp.close()
252          except:
253             QMessageBox.warning( None,
254                        tr("Visualisation Fichier "),
255                        tr("Impossibilite d'afficher le Fichier"),)
256
257   def BFichierPressed(self):
258       mctype = self.node.item.get_definition().type
259       if len(mctype) > 1:
260           filters = mctype[1]
261       elif hasattr(mctype[0], "filters"):
262           filters = mctype[0].filters
263       else:
264           filters = None
265       if len(mctype) > 2 and mctype[2] == "Sauvegarde":
266           fichier = QFileDialog.getSaveFileName(self.appliEficas,
267                               tr('Sauvegarder Fichier'),
268                               self.appliEficas.CONFIGURATION.savedir,
269                               filters)
270       else:
271           fichier = QFileDialog.getOpenFileName(self.appliEficas,
272                               tr('Ouvrir Fichier'),
273                               self.appliEficas.CONFIGURATION.savedir,
274                               filters)
275
276       if monEnvQT5 : fichier=fichier[0]
277       if not(fichier == ""):
278          ulfile = os.path.abspath(unicode(fichier))
279          self.appliEficas.CONFIGURATION.savedir=os.path.split(ulfile)[0]
280          self.lineEditVal.setText(fichier)
281          self.editor.affiche_commentaire(tr("Fichier selectionne"))
282          self.LEValeurPressed()
283          if (QFileInfo(fichier).suffix() in listeSuffixe ):
284              self.image=fichier
285              if (not hasattr(self,"BSelectInFile")):
286                self.BSelectInFile = QPushButton(self.Widget8)
287                self.BSelectInFile.setMinimumSize(QSize(140,40))
288                self.BSelectInFile.setObjectName("BSelectInFile")
289                self.gridLayout.addWidget(self.BSelectInFile,1,1,1,1)
290                self.BSelectInFile.setText(tr("Selection"))
291                if monEnvQT5 : self.BSelectInFile.clicked.connect(self.BSelectInFilePressed)
292                else : self.connect(self.BSelectInFile,SIGNAL("clicked()"),self.BSelectInFilePressed)
293              else :
294                self.BSelectInFile.setVisible(1)
295          elif hasattr(self, "BSelectInFile"):
296              self.BSelectInFile.setVisible(0)
297
298   def BRepertoirePressed(self):
299       directory = QFileDialog.getExistingDirectory(self.appliEficas,
300             directory = self.appliEficas.CONFIGURATION.savedir,
301             options = QFileDialog.ShowDirsOnly)
302
303       if monEnvQT5 : directory=directory[0]
304       if not (directory == "") :
305          absdir = os.path.abspath(unicode(directory))
306          self.appliEficas.CONFIGURATION.savedir = os.path.dirname(absdir)
307          self.lineEditVal.setText(directory)
308          self.LEValeurPressed()
309
310   def BSelectInFilePressed(self):
311       from monSelectImage import MonSelectImage
312       MonSelectImage(file=self.image,parent=self).show()
313
314           
315
316   def BSalomePressed(self):
317         self.editor.affiche_commentaire(QString(""))
318         selection=[]
319         commentaire=""
320         genea=self.node.item.get_genealogie()
321         kwType = self.node.item.get_definition().type[0]
322         for e in genea:
323             if "GROUP_NO" in e: kwType = "GROUP_NO"
324             if "GROUP_MA" in e: kwType = "GROUP_MA"
325
326         if 'grno' in repr(kwType): kwType = "GROUP_NO"
327         if 'grma' in repr(kwType): kwType = "GROUP_NO"
328
329         if kwType in ("GROUP_NO","GROUP_MA"):
330            selection, commentaire = self.appliEficas.selectGroupFromSalome(kwType,editor=self.editor)
331
332         mc = self.node.item.get_definition()
333
334         if  (isinstance(mc.type,types.TupleType) and len(mc.type) > 1 and "(*.med)" in mc.type[1] ):
335            selection, commentaire = self.appliEficas.selectMeshFile(editor=self.editor)
336            #print selection, commentaire
337            if commentaire != "" : 
338                   QMessageBox.warning( None,
339                   tr("Export Med vers Fichier "),
340                   tr("Impossibilite d exporter le Fichier"),)
341                   return
342            else :
343                   self.lineEditVal.setText(QString(selection))
344                   return
345
346         from Accas import SalomeEntry
347         if isinstance(kwType, types.ClassType) and issubclass(kwType, SalomeEntry):
348            selection, commentaire = self.appliEficas.selectEntryFromSalome(kwType,editor=self.editor)
349
350         if commentaire !="" :
351             self.editor.affiche_infos(QString(tr(str(commentaire))))
352         monTexte=""
353         if selection == [] : return
354         for geomElt in selection:
355             monTexte=geomElt+","
356         monTexte= monTexte[0:-1]
357         self.lineEditVal.setText(QString(monTexte))
358         self.LEValeurPressed()
359
360   def BView2DPressed(self):
361         try :
362           # cas d un Simp de base
363           valeur=self.lineEditVal.text()
364         except :
365           valeur=self.textSelected
366         valeur = str(valeur)
367         if valeur == str("") : return
368         if valeur :
369            ok, msgError = self.appliEficas.displayShape(valeur)
370            if not ok:
371               self.editor.affiche_infos(msgError,Qt.red)
372
373   def BParametresPressed(self):
374         liste=self.node.item.get_liste_param_possible()
375         from monListeParamPanel import MonListeParamPanel
376         MonListeParamPanel(liste=liste,parent=self).show()
377