]> SALOME platform Git repositories - tools/eficas.git/blob - InterfaceQT4/gereIcones.py
Salome HOME
ea71360b6aae6bb503acfb2d045214e8ea086e65
[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         self.dictCommandes={}
208         listeCommandes=self.dict_commandes_mesScripts[self.obj.nom]
209         if type(listeCommandes) != types.TupleType: listeCommandes=(listeCommandes,)
210         i=0
211         for commande in listeCommandes :
212           conditionSalome=commande[3]
213           if (self.appliEficas.salome == 0 and conditionSalome == True): continue
214           self.CBScripts.addItem(commande[1])
215           self.dictCommandes[commande[1]]=i
216           i=i+1
217         if monEnvQT5:
218            #self.CBScripts.currentIndexChanged.connect(self.choixSaisi)
219            self.CBScripts.activated.connect(self.choixSaisi)
220         else :
221            #self.connect(self.CBScripts,SIGNAL("currentIndexChanged(int)"),self.choixSaisi)
222            self.connect(self.CBScripts,SIGNAL("activated(int)"),self.choixSaisi)
223
224   def choixSaisi(self):
225       fction=str(self.CBScripts.currentText())
226       numero= self.dictCommandes[fction]
227       self.node.AppelleFonction(numero,nodeTraite=self.node)
228       #self.reaffiche()
229
230 class ContientIcones:
231
232   def BFichierVisu(self):
233        fichier=self.lineEditVal.text()
234        if fichier == None or str(fichier)=="" : return
235        from monViewTexte import ViewText
236        try :
237          if sys.platform[0:5]=="linux" :
238            cmd="xdg-open "+ str(fichier)
239            os.system(cmd)
240          else                          :
241            os.startfile(str(fichier)) 
242        except:
243          try :
244             fp=open(fichier)
245             txt=fp.read()
246             nomFichier=QFileInfo(fichier).baseName()
247             maVue=ViewText(self,entete=nomFichier)
248             maVue.setText(txt)
249             maVue.show()
250             fp.close()
251          except:
252             QMessageBox.warning( None,
253                        tr("Visualisation Fichier "),
254                        tr("Impossibilite d'afficher le Fichier"),)
255
256   def BFichierPressed(self):
257       mctype = self.node.item.get_definition().type
258       if len(mctype) > 1:
259           filters = mctype[1]
260       elif hasattr(mctype[0], "filters"):
261           filters = mctype[0].filters
262       else:
263           filters = None
264       if len(mctype) > 2 and mctype[2] == "Sauvegarde":
265           fichier = QFileDialog.getSaveFileName(self.appliEficas,
266                               tr('Sauvegarder Fichier'),
267                               self.appliEficas.CONFIGURATION.savedir,
268                               filters)
269       else:
270           fichier = QFileDialog.getOpenFileName(self.appliEficas,
271                               tr('Ouvrir Fichier'),
272                               self.appliEficas.CONFIGURATION.savedir,
273                               filters)
274
275       if monEnvQT5 : fichier=fichier[0]
276       if not(fichier == ""):
277          ulfile = os.path.abspath(unicode(fichier))
278          self.appliEficas.CONFIGURATION.savedir=os.path.split(ulfile)[0]
279          self.lineEditVal.setText(fichier)
280          self.editor.affiche_commentaire(tr("Fichier selectionne"))
281          self.LEValeurPressed()
282          if (QFileInfo(fichier).suffix() in listeSuffixe ):
283              self.image=fichier
284              if (not hasattr(self,"BSelectInFile")):
285                self.BSelectInFile = QPushButton(self.Widget8)
286                self.BSelectInFile.setMinimumSize(QSize(140,40))
287                self.BSelectInFile.setObjectName("BSelectInFile")
288                self.gridLayout.addWidget(self.BSelectInFile,1,1,1,1)
289                self.BSelectInFile.setText(tr("Selection"))
290                if monEnvQT5 : self.BSelectInFile.clicked.connect(self.BSelectInFilePressed)
291                else : self.connect(self.BSelectInFile,SIGNAL("clicked()"),self.BSelectInFilePressed)
292              else :
293                self.BSelectInFile.setVisible(1)
294          elif hasattr(self, "BSelectInFile"):
295              self.BSelectInFile.setVisible(0)
296
297   def BRepertoirePressed(self):
298       directory = QFileDialog.getExistingDirectory(self.appliEficas,
299             directory = self.appliEficas.CONFIGURATION.savedir,
300             options = QFileDialog.ShowDirsOnly)
301
302       if monEnvQT5 : directory=directory[0]
303       if not (directory == "") :
304          absdir = os.path.abspath(unicode(directory))
305          self.appliEficas.CONFIGURATION.savedir = os.path.dirname(absdir)
306          self.lineEditVal.setText(directory)
307          self.LEValeurPressed()
308
309   def BSelectInFilePressed(self):
310       from monSelectImage import MonSelectImage
311       MonSelectImage(file=self.image,parent=self).show()
312
313           
314
315   def BSalomePressed(self):
316         self.editor.affiche_commentaire(QString(""))
317         selection=[]
318         commentaire=""
319         genea=self.node.item.get_genealogie()
320         kwType = self.node.item.get_definition().type[0]
321         for e in genea:
322             if "GROUP_NO" in e: kwType = "GROUP_NO"
323             if "GROUP_MA" in e: kwType = "GROUP_MA"
324
325         if 'grno' in repr(kwType): kwType = "GROUP_NO"
326         if 'grma' in repr(kwType): kwType = "GROUP_NO"
327
328         if kwType in ("GROUP_NO","GROUP_MA"):
329            selection, commentaire = self.appliEficas.selectGroupFromSalome(kwType,editor=self.editor)
330
331         mc = self.node.item.get_definition()
332
333         if  (isinstance(mc.type,types.TupleType) and len(mc.type) > 1 and "(*.med)" in mc.type[1] ):
334            selection, commentaire = self.appliEficas.selectMeshFile(editor=self.editor)
335            #print selection, commentaire
336            if commentaire != "" : 
337                   QMessageBox.warning( None,
338                   tr("Export Med vers Fichier "),
339                   tr("Impossibilite d exporter le Fichier"),)
340                   return
341            else :
342                   self.lineEditVal.setText(QString(selection))
343                   return
344
345         from Accas import SalomeEntry
346         if isinstance(kwType, types.ClassType) and issubclass(kwType, SalomeEntry):
347            selection, commentaire = self.appliEficas.selectEntryFromSalome(kwType,editor=self.editor)
348
349         if commentaire !="" :
350             self.editor.affiche_infos(QString(tr(str(commentaire))))
351         monTexte=""
352         if selection == [] : return
353         for geomElt in selection:
354             monTexte=geomElt+","
355         monTexte= monTexte[0:-1]
356         self.lineEditVal.setText(QString(monTexte))
357         self.LEValeurPressed()
358
359   def BView2DPressed(self):
360         valeur=self.lineEditVal.text()
361         valeur = str(valeur)
362         if valeur == str("") : return
363         if valeur :
364            ok, msgError = self.appliEficas.displayShape(valeur)
365            if not ok:
366               self.editor.affiche_infos(msgError,Qt.red)
367
368   def BParametresPressed(self):
369         liste=self.node.item.get_liste_param_possible()
370         from monListeParamPanel import MonListeParamPanel
371         MonListeParamPanel(liste=liste,parent=self).show()
372