Salome HOME
6c6852f463fbc914a9c65f221f235042a5853245
[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                icon=QIcon(self.repIcon+"/roue.png")
176                self.RBRun.setIcon(icon)
177                return
178       if hasattr(self,"RBRun"): self.RBRun.close()
179       if hasattr(self,"CBScripts"): self.CBScripts.close()
180
181
182   def aDetruire(self):
183       self.node.delete()
184
185   def setValide(self):
186       #print " c est le moment de gerer le passage au suivant"
187       if not(hasattr (self,'RBValide')) : return
188       icon = QIcon()
189       if self.node.item.object.isvalid() : 
190          icon=QIcon(self.repIcon+"/ast-green-ball.png")
191       else :
192          icon=QIcon(self.repIcon+"/ast-red-ball.png")
193       self.RBValide.setIcon(icon)
194
195   # il faut chercher la bonne fenetre
196   def rendVisible(self):
197       #print "je passe par rendVisible de FacultatifOuOptionnel"
198       #print self
199       #print self.node.fenetre
200       #print "return pour etre sure"
201       return
202       #PNPN
203       newNode=self.node.treeParent.chercheNoeudCorrespondant(self.node.item.object)
204       #print newNode
205       self.editor.fenetreCentraleAffichee.scrollAreaCommandes.ensureWidgetVisible(newNode.fenetre)
206       #newNode.fenetre.setFocus()
207
208
209   def ajoutScript(self):
210         if not hasattr(self,'CBScripts') : return # Cas des Widgets Plies
211         self.dictCommandes={}
212         listeCommandes=self.dict_commandes_mesScripts[self.obj.nom]
213         if type(listeCommandes) != types.TupleType: listeCommandes=(listeCommandes,)
214         i=0
215         for commande in listeCommandes :
216           conditionSalome=commande[3]
217           if (self.appliEficas.salome == 0 and conditionSalome == True): continue
218           self.CBScripts.addItem(commande[1])
219           self.dictCommandes[commande[1]]=i
220           i=i+1
221         if monEnvQT5:
222            #self.CBScripts.currentIndexChanged.connect(self.choixSaisi)
223            self.CBScripts.activated.connect(self.choixSaisi)
224         else :
225            #self.connect(self.CBScripts,SIGNAL("currentIndexChanged(int)"),self.choixSaisi)
226            self.connect(self.CBScripts,SIGNAL("activated(int)"),self.choixSaisi)
227
228   def choixSaisi(self):
229       fction=str(self.CBScripts.currentText())
230       numero= self.dictCommandes[fction]
231       self.node.AppelleFonction(numero,nodeTraite=self.node)
232       #self.reaffiche()
233
234 class ContientIcones:
235
236   def BFichierVisu(self):
237        fichier=self.lineEditVal.text()
238        if fichier == None or str(fichier)=="" : return
239        from monViewTexte import ViewText
240        try :
241          if sys.platform[0:5]=="linux" :
242            cmd="xdg-open "+ str(fichier)
243            os.system(cmd)
244          else                          :
245            os.startfile(str(fichier)) 
246        except:
247          try :
248             fp=open(fichier)
249             txt=fp.read()
250             nomFichier=QFileInfo(fichier).baseName()
251             maVue=ViewText(self,entete=nomFichier)
252             maVue.setText(txt)
253             maVue.show()
254             fp.close()
255          except:
256             QMessageBox.warning( None,
257                        tr("Visualisation Fichier "),
258                        tr("Impossibilite d'afficher le Fichier"),)
259
260   def BFichierPressed(self):
261       mctype = self.node.item.get_definition().type
262       if len(mctype) > 1:
263           filters = mctype[1]
264       elif hasattr(mctype[0], "filters"):
265           filters = mctype[0].filters
266       else:
267           filters = None
268       if len(mctype) > 2 and mctype[2] == "Sauvegarde":
269           fichier = QFileDialog.getSaveFileName(self.appliEficas,
270                               tr('Sauvegarder Fichier'),
271                               self.appliEficas.CONFIGURATION.savedir,
272                               filters)
273       else:
274           fichier = QFileDialog.getOpenFileName(self.appliEficas,
275                               tr('Ouvrir Fichier'),
276                               self.appliEficas.CONFIGURATION.savedir,
277                               filters)
278
279       if monEnvQT5 : fichier=fichier[0]
280       if not(fichier == ""):
281          ulfile = os.path.abspath(unicode(fichier))
282          self.appliEficas.CONFIGURATION.savedir=os.path.split(ulfile)[0]
283          self.lineEditVal.setText(fichier)
284          self.editor.affiche_commentaire(tr("Fichier selectionne"))
285          self.LEValeurPressed()
286          if (QFileInfo(fichier).suffix() in listeSuffixe ):
287              self.image=fichier
288              if (not hasattr(self,"BSelectInFile")):
289                self.BSelectInFile = QPushButton(self.Widget8)
290                self.BSelectInFile.setMinimumSize(QSize(140,40))
291                self.BSelectInFile.setObjectName("BSelectInFile")
292                self.gridLayout.addWidget(self.BSelectInFile,1,1,1,1)
293                self.BSelectInFile.setText(tr("Selection"))
294                if monEnvQT5 : self.BSelectInFile.clicked.connect(self.BSelectInFilePressed)
295                else : self.connect(self.BSelectInFile,SIGNAL("clicked()"),self.BSelectInFilePressed)
296              else :
297                self.BSelectInFile.setVisible(1)
298          elif hasattr(self, "BSelectInFile"):
299              self.BSelectInFile.setVisible(0)
300
301   def BRepertoirePressed(self):
302       directory = QFileDialog.getExistingDirectory(self.appliEficas,
303             directory = self.appliEficas.CONFIGURATION.savedir,
304             options = QFileDialog.ShowDirsOnly)
305
306       #if monEnvQT5 : directory=directory[0]
307       if not (directory == "") :
308          absdir = os.path.abspath(unicode(directory))
309          self.appliEficas.CONFIGURATION.savedir = os.path.dirname(absdir)
310          self.lineEditVal.setText(directory)
311          self.LEValeurPressed()
312
313   def BSelectInFilePressed(self):
314       from monSelectImage import MonSelectImage
315       MonSelectImage(file=self.image,parent=self).show()
316
317           
318
319   def BSalomePressed(self):
320         self.editor.affiche_commentaire("")
321         selection=[]
322         commentaire=""
323         genea=self.node.item.get_genealogie()
324         kwType = self.node.item.get_definition().type[0]
325         for e in genea:
326             if "GROUP_NO" in e: kwType = "GROUP_NO"
327             if "GROUP_MA" in e: kwType = "GROUP_MA"
328
329         if 'grno' in repr(kwType): kwType = "GROUP_NO"
330         if 'grma' in repr(kwType): kwType = "GROUP_NO"
331
332         if kwType in ("GROUP_NO","GROUP_MA"):
333            selection, commentaire = self.appliEficas.selectGroupFromSalome(kwType,editor=self.editor)
334
335         mc = self.node.item.get_definition()
336
337         if  (isinstance(mc.type,types.TupleType) and len(mc.type) > 1 and "(*.med)" in mc.type[1] ):
338            selection, commentaire = self.appliEficas.selectMeshFile(editor=self.editor)
339            #print selection, commentaire
340            if commentaire != "" : 
341                   QMessageBox.warning( None,
342                   tr("Export Med vers Fichier "),
343                   tr("Impossibilite d exporter le Fichier"),)
344                   return
345            else :
346                   self.lineEditVal.setText(str(selection))
347                   return
348
349         from Accas import SalomeEntry
350         if isinstance(kwType, types.ClassType) and issubclass(kwType, SalomeEntry):
351            selection, commentaire = self.appliEficas.selectEntryFromSalome(kwType,editor=self.editor)
352
353         if commentaire !="" :
354             self.editor.affiche_infos(tr(str(commentaire)))
355         if selection == [] : return
356
357         min,max=self.node.item.GetMinMax()
358         if max > 1 : 
359            self.ajoutNValeur(selection)
360            return
361
362         monTexte=""
363         for geomElt in selection: monTexte=geomElt+","
364         monTexte= monTexte[0:-1]
365         self.lineEditVal.setText(str(monTexte))
366         self.LEValeurPressed()
367
368   def BView2DPressed(self):
369         try :
370           # cas d un Simp de base
371           valeur=self.lineEditVal.text()
372         except :
373           valeur=self.textSelected
374         valeur = str(valeur)
375         if valeur == str("") : return
376         if valeur :
377            ok, msgError = self.appliEficas.displayShape(valeur)
378            if not ok:
379               self.editor.affiche_infos(msgError,Qt.red)
380
381   def BParametresPressed(self):
382         liste=self.node.item.get_liste_param_possible()
383         from monListeParamPanel import MonListeParamPanel
384         MonListeParamPanel(liste=liste,parent=self).show()
385