Salome HOME
numero de version
[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
97       if self.node.item.object.isoblig()  and not( hasattr(self.node.item.object,'isDeletable') ): 
98          icon=QIcon(self.repIcon+"/deleteRondVide.png")
99          self.RBPoubelle.setIcon(icon)
100          return
101       icon=QIcon(self.repIcon+"/deleteRond.png")
102       self.RBPoubelle.setIcon(icon)
103       if monEnvQT5 : self.RBPoubelle.clicked.connect(self.aDetruire)
104       else : self.connect(self.RBPoubelle,SIGNAL("clicked()"),self.aDetruire)
105
106   def setIconesSalome(self):
107        if not (hasattr(self,"RBSalome")): return
108        from Accas import SalomeEntry
109        mc = self.node.item.get_definition()
110        mctype = mc.type[0]
111        enable_salome_selection = self.editor.salome and \
112          (('grma' in repr(mctype)) or ('grno' in repr(mctype)) or ('SalomeEntry' in repr(mctype)) or \
113          (hasattr(mctype, "enable_salome_selection") and mctype.enable_salome_selection))
114
115        if enable_salome_selection:
116           icon=QIcon(self.repIcon+"/flecheSalome.png")
117           self.RBSalome.setIcon(icon)
118           if monEnvQT5 : self.RBSalome.pressed.connect(self.BSalomePressed)
119           else : self.connect(self.RBSalome,SIGNAL("pressed()"),self.BSalomePressed)
120
121 #PNPN --> Telemac A revoir surement
122 # cela ou le catalogue grpma ou salomeEntry
123           if not(('grma' in repr(mctype)) or ('grno' in repr(mctype))) or not(self.editor.salome): 
124              if hasattr(self,"RBSalomeVue") : self.RBSalomeVue.close()
125           else : 
126              icon1=QIcon(self.repIcon+"/eye.png")
127              self.RBSalomeVue.setIcon(icon1)
128              if monEnvQT5 : self.RBSalomeVue.clicked.connect(self.BView2DPressed)
129              else : self.connect(self.RBSalomeVue,SIGNAL("clicked()"),self.BView2DPressed)
130        else:
131           self.RBSalome.close()
132           self.RBSalomeVue.close()
133
134      
135   def setIconesFichier(self):
136        if not ( hasattr(self,"BFichier")): return
137        mc = self.node.item.get_definition()
138        mctype = mc.type[0]
139        if mctype == "Repertoire":
140           self.BRepertoire=self.BFichier
141           if monEnvQT5 : self.BRepertoire.clicked.connect(self.BRepertoirePressed)
142           else : self.connect(self.BRepertoire,SIGNAL("clicked()"),self.BRepertoirePressed)
143           self.BVisuFichier.close()
144        else :
145           if monEnvQT5 : self.BFichier.clicked.connect(self.BFichierPressed)
146           else : self.connect(self.BFichier,SIGNAL("clicked()"),self.BFichierPressed)
147           if monEnvQT5 : self.BVisuFichier.clicked.connect(self.BFichierVisu)
148           else : self.connect(self.BVisuFichier,SIGNAL("clicked()"),self.BFichierVisu)
149
150
151
152   def setIconesGenerales(self):
153       repIcon=self.node.editor.appliEficas.repIcon
154       if hasattr(self,"BVisuListe") :
155          fichier=os.path.join(repIcon, 'plusnode.png')
156          icon = QIcon(fichier)
157          self.BVisuListe.setIcon(icon)
158       if hasattr(self,"RBDeplie") :
159          fichier=os.path.join(repIcon, 'plusnode.png')
160          icon = QIcon(fichier)
161          self.RBDeplie.setIcon(icon)
162       if hasattr(self,"RBPlie") :
163          fichier=os.path.join(repIcon, 'minusnode.png')
164          icon = QIcon(fichier)
165          self.RBPlie.setIcon(icon)
166
167       
168
169   def setRun(self):
170       if hasattr(self.editor.appliEficas, 'mesScripts') :
171          if self.editor.code in  self.editor.appliEficas.mesScripts.keys() :
172             self.dict_commandes_mesScripts=self.appliEficas.mesScripts[self.editor.code].dict_commandes
173             if self.obj.nom in self.dict_commandes_mesScripts.keys() :
174                self.ajoutScript()
175                return
176       if hasattr(self,"RBRun"): self.RBRun.close()
177       if hasattr(self,"CBScripts"): self.CBScripts.close()
178
179
180   def aDetruire(self):
181       self.node.delete()
182
183   def setValide(self):
184       #print " c est le moment de gerer le passage au suivant"
185       if not(hasattr (self,'RBValide')) : return
186       icon = QIcon()
187       if self.node.item.object.isvalid() : 
188          icon=QIcon(self.repIcon+"/ast-green-ball.png")
189       else :
190          icon=QIcon(self.repIcon+"/ast-red-ball.png")
191       self.RBValide.setIcon(icon)
192
193   # il faut chercher la bonne fenetre
194   def rendVisible(self):
195       #print "je passe par rendVisible de FacultatifOuOptionnel"
196       #print self
197       #print self.node.fenetre
198       #print "return pour etre sure"
199       return
200       #PNPN
201       newNode=self.node.treeParent.chercheNoeudCorrespondant(self.node.item.object)
202       #print newNode
203       self.editor.fenetreCentraleAffichee.scrollAreaCommandes.ensureWidgetVisible(newNode.fenetre)
204       #newNode.fenetre.setFocus()
205
206
207   def ajoutScript(self):
208         if not hasattr(self,'CBScripts') : return # Cas des Widgets Plies
209         self.dictCommandes={}
210         listeCommandes=self.dict_commandes_mesScripts[self.obj.nom]
211         if type(listeCommandes) != types.TupleType: listeCommandes=(listeCommandes,)
212         i=0
213         for commande in listeCommandes :
214           conditionSalome=commande[3]
215           if (self.appliEficas.salome == 0 and conditionSalome == True): continue
216           self.CBScripts.addItem(commande[1])
217           self.dictCommandes[commande[1]]=i
218           i=i+1
219         if monEnvQT5:
220            #self.CBScripts.currentIndexChanged.connect(self.choixSaisi)
221            self.CBScripts.activated.connect(self.choixSaisi)
222         else :
223            #self.connect(self.CBScripts,SIGNAL("currentIndexChanged(int)"),self.choixSaisi)
224            self.connect(self.CBScripts,SIGNAL("activated(int)"),self.choixSaisi)
225
226   def choixSaisi(self):
227       fction=str(self.CBScripts.currentText())
228       numero= self.dictCommandes[fction]
229       self.node.AppelleFonction(numero,nodeTraite=self.node)
230       #self.reaffiche()
231
232 class ContientIcones:
233
234   def BFichierVisu(self):
235        fichier=self.lineEditVal.text()
236        if fichier == None or str(fichier)=="" : return
237        from monViewTexte import ViewText
238        try :
239          if sys.platform[0:5]=="linux" :
240            cmd="xdg-open "+ str(fichier)
241            os.system(cmd)
242          else                          :
243            os.startfile(str(fichier)) 
244        except:
245          try :
246             fp=open(fichier)
247             txt=fp.read()
248             nomFichier=QFileInfo(fichier).baseName()
249             maVue=ViewText(self,entete=nomFichier)
250             maVue.setText(txt)
251             maVue.show()
252             fp.close()
253          except:
254             QMessageBox.warning( None,
255                        tr("Visualisation Fichier "),
256                        tr("Impossibilite d'afficher le Fichier"),)
257
258   def BFichierPressed(self):
259       mctype = self.node.item.get_definition().type
260       if len(mctype) > 1:
261           filters = mctype[1]
262       elif hasattr(mctype[0], "filters"):
263           filters = mctype[0].filters
264       else:
265           filters = None
266       if len(mctype) > 2 and mctype[2] == "Sauvegarde":
267           fichier = QFileDialog.getSaveFileName(self.appliEficas,
268                               tr('Sauvegarder Fichier'),
269                               self.appliEficas.CONFIGURATION.savedir,
270                               filters)
271       else:
272           fichier = QFileDialog.getOpenFileName(self.appliEficas,
273                               tr('Ouvrir Fichier'),
274                               self.appliEficas.CONFIGURATION.savedir,
275                               filters)
276
277       if monEnvQT5 : fichier=fichier[0]
278       if not(fichier == ""):
279          ulfile = os.path.abspath(unicode(fichier))
280          self.appliEficas.CONFIGURATION.savedir=os.path.split(ulfile)[0]
281          self.lineEditVal.setText(fichier)
282          self.editor.affiche_commentaire(tr("Fichier selectionne"))
283          self.LEValeurPressed()
284          if (QFileInfo(fichier).suffix() in listeSuffixe ):
285              self.image=fichier
286              if (not hasattr(self,"BSelectInFile")):
287                self.BSelectInFile = QPushButton(self.Widget8)
288                self.BSelectInFile.setMinimumSize(QSize(140,40))
289                self.BSelectInFile.setObjectName("BSelectInFile")
290                self.gridLayout.addWidget(self.BSelectInFile,1,1,1,1)
291                self.BSelectInFile.setText(tr("Selection"))
292                if monEnvQT5 : self.BSelectInFile.clicked.connect(self.BSelectInFilePressed)
293                else : self.connect(self.BSelectInFile,SIGNAL("clicked()"),self.BSelectInFilePressed)
294              else :
295                self.BSelectInFile.setVisible(1)
296          elif hasattr(self, "BSelectInFile"):
297              self.BSelectInFile.setVisible(0)
298
299   def BRepertoirePressed(self):
300       directory = QFileDialog.getExistingDirectory(self.appliEficas,
301             directory = self.appliEficas.CONFIGURATION.savedir,
302             options = QFileDialog.ShowDirsOnly)
303
304       #if monEnvQT5 : directory=directory[0]
305       if not (directory == "") :
306          absdir = os.path.abspath(unicode(directory))
307          self.appliEficas.CONFIGURATION.savedir = os.path.dirname(absdir)
308          self.lineEditVal.setText(directory)
309          self.LEValeurPressed()
310
311   def BSelectInFilePressed(self):
312       from monSelectImage import MonSelectImage
313       MonSelectImage(file=self.image,parent=self).show()
314
315           
316
317   def BSalomePressed(self):
318         self.editor.affiche_commentaire("")
319         selection=[]
320         commentaire=""
321         genea=self.node.item.get_genealogie()
322         kwType = self.node.item.get_definition().type[0]
323         for e in genea:
324             if "GROUP_NO" in e: kwType = "GROUP_NO"
325             if "GROUP_MA" in e: kwType = "GROUP_MA"
326
327         if 'grno' in repr(kwType): kwType = "GROUP_NO"
328         if 'grma' in repr(kwType): kwType = "GROUP_NO"
329
330         if kwType in ("GROUP_NO","GROUP_MA"):
331            selection, commentaire = self.appliEficas.selectGroupFromSalome(kwType,editor=self.editor)
332
333         mc = self.node.item.get_definition()
334
335         if  (isinstance(mc.type,types.TupleType) and len(mc.type) > 1 and "(*.med)" in mc.type[1] ):
336            selection, commentaire = self.appliEficas.selectMeshFile(editor=self.editor)
337            #print selection, commentaire
338            if commentaire != "" : 
339                   QMessageBox.warning( None,
340                   tr("Export Med vers Fichier "),
341                   tr("Impossibilite d exporter le Fichier"),)
342                   return
343            else :
344                   self.lineEditVal.setText(str(selection))
345                   return
346
347         from Accas import SalomeEntry
348         if isinstance(kwType, types.ClassType) and issubclass(kwType, SalomeEntry):
349            selection, commentaire = self.appliEficas.selectEntryFromSalome(kwType,editor=self.editor)
350
351         if commentaire !="" :
352             self.editor.affiche_infos(tr(str(commentaire)))
353         if selection == [] : return
354
355         min,max=self.node.item.GetMinMax()
356         if max > 1 : 
357            self.ajoutNValeur(selection)
358            return
359
360         monTexte=""
361         for geomElt in selection: monTexte=geomElt+","
362         monTexte= monTexte[0:-1]
363         self.lineEditVal.setText(str(monTexte))
364         self.LEValeurPressed()
365
366   def BView2DPressed(self):
367         try :
368           # cas d un Simp de base
369           valeur=self.lineEditVal.text()
370         except :
371           valeur=self.textSelected
372         valeur = str(valeur)
373         if valeur == str("") : return
374         if valeur :
375            ok, msgError = self.appliEficas.displayShape(valeur)
376            if not ok:
377               self.editor.affiche_infos(msgError,Qt.red)
378
379   def BParametresPressed(self):
380         liste=self.node.item.get_liste_param_possible()
381         from monListeParamPanel import MonListeParamPanel
382         MonListeParamPanel(liste=liste,parent=self).show()
383