Salome HOME
22-06
[tools/eficas.git] / InterfaceQT4 / typeNode.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 from determine import monEnvQT5
21 if monEnvQT5:
22     from PyQt5.QtWidgets import QAction, QMenu
23 else :
24     from PyQt4.QtGui  import *
25     from PyQt4.QtCore import *
26
27 from Extensions.i18n import tr
28 import types
29
30
31
32 #---------------------------#
33 class PopUpMenuRacine :
34 #---------------------------#
35
36
37     def createPopUpMenu(self):
38         #print "createPopUpMenu"
39         self.ParamApres = QAction(tr('Parametre'),self.tree)
40         if monEnvQT5 :
41           self.ParamApres.triggered.connect(self.addParametersApres)
42         else :
43           self.tree.connect(self.ParamApres,SIGNAL("triggered()"),self.addParametersApres)
44         self.ParamApres.setStatusTip(tr("Insere un parametre"))
45         self.menu = QMenu(self.tree)
46         self.menu.addAction(self.ParamApres)
47         self.menu.setStyleSheet("background:rgb(220,220,220); ")
48
49
50     def addParametersApres(self):
51         item= self.tree.currentItem()
52         item.addParameters(True)
53
54 #---------------------------#
55 class PopUpMenuNodeMinimal :
56 #---------------------------#
57
58     def createPopUpMenu(self):
59         #print "createPopUpMenu"
60         #self.appliEficas.salome=True
61         if monEnvQT5 : self.createActions()
62         else :         self.createActionsQT4()
63         self.menu = QMenu(self.tree)
64         #self.menu.setStyleSheet("background:rgb(235,235,235); QMenu::item:selected { background-color: red; }")
65         #ne fonctionne pas --> la ligne de commentaire devient rouge
66         self.menu.setStyleSheet("background:rgb(220,220,220); ")
67         #items du menu
68         self.menu.addAction(self.Supprime)
69         if hasattr(self.appliEficas, 'mesScripts'):
70             if self.editor.code in  self.editor.appliEficas.mesScripts.keys() :
71                self.dict_commandes_mesScripts=self.appliEficas.mesScripts[self.editor.code].dict_commandes
72                if self.tree.currentItem().item.get_nom() in self.dict_commandes_mesScripts.keys() : 
73                    self.ajoutScript()
74     
75     def ajoutScript(self):
76
77     # cochon mais je n arrive pas a faire mieux avec le mecanisme de plugin
78         if hasattr(self.appliEficas, 'mesScripts'):
79             if self.editor.code in  self.editor.appliEficas.mesScripts.keys() :
80                self.dict_commandes_mesScripts=self.appliEficas.mesScripts[self.editor.code].dict_commandes
81             else : return
82         listeCommandes=self.dict_commandes_mesScripts[self.tree.currentItem().item.get_nom()]
83         if type(listeCommandes) != types.TupleType: listeCommandes=(listeCommandes,)
84         numero=0
85         for commande in listeCommandes :
86            conditionSalome=commande[3]
87            if (self.appliEficas.salome == 0 and conditionSalome == True): return
88            label=commande[1]
89            tip=commande[5]
90            self.action=QAction(label,self.tree)
91            self.action.setStatusTip(tip)
92            if monEnvQT5 :
93               if numero==4: 
94                  self.action.triggered.connect(self.AppelleFonction4)
95               if numero==3: 
96                  self.action.triggered.connect(self.AppelleFonction3)
97                  numero=4
98               if numero==2: 
99                  self.action.triggered.connect(self.AppelleFonction2)
100                  numero=3
101               if numero==1: 
102                  self.action.triggered.connect(self.AppelleFonction1)
103                  numero=2
104               if numero==0: 
105                  self.action.triggered.connect(self.AppelleFonction0)
106                  numero=1
107            else:
108               if numero==4: 
109                  self.tree.connect(self.action,SIGNAL("triggered()"),self.AppelleFonction4)
110               if numero==3: 
111                  self.tree.connect(self.action,SIGNAL("triggered()"),self.AppelleFonction3)
112                  numero=4
113               if numero==2: 
114                  self.tree.connect(self.action,SIGNAL("triggered()"),self.AppelleFonction2)
115                  numero=3
116               if numero==1: 
117                  self.tree.connect(self.action,SIGNAL("triggered()"),self.AppelleFonction1)
118                  numero=2
119               if numero==0: 
120                  self.tree.connect(self.action,SIGNAL("triggered()"),self.AppelleFonction0)
121                  numero=1
122            self.menu.addAction(self.action)
123
124
125     def AppelleFonction0(self):
126         self.AppelleFonction(0)
127
128     def AppelleFonction1(self):
129         self.AppelleFonction(1)
130
131     def AppelleFonction2(self):
132         self.AppelleFonction(2)
133
134     def AppelleFonction3(self):
135         self.AppelleFonction(3)
136
137     def AppelleFonction4(self):
138         self.AppelleFonction(4)
139
140
141     def AppelleFonction(self,numero,nodeTraite=None):
142         if nodeTraite==None : nodeTraite=self.tree.currentItem()
143         nomCmd=nodeTraite.item.get_nom()
144         if hasattr(self.appliEficas, 'mesScripts'):
145             if self.editor.code in  self.editor.appliEficas.mesScripts.keys() :
146                self.dict_commandes_mesScripts=self.appliEficas.mesScripts[self.editor.code].dict_commandes
147             else : return
148         listeCommandes=self.dict_commandes_mesScripts[nomCmd]
149         commande=listeCommandes[numero]
150         conditionValid=commande[4]
151         if (self.tree.currentItem().item.isvalid() == 0 and conditionValid == True):
152                  QMessageBox.warning( None, 
153                              tr("item invalide"),
154                              tr("l item doit etre valide"),)
155                  return
156         fonction=commande[0]
157         listenomparam=commande[2]
158         listeparam=[]
159         for p in listenomparam:
160             if hasattr(nodeTraite,p):
161                listeparam.append(getattr(nodeTraite,p))
162             if p=="self" : listeparam.append(self)
163         try :
164         #if 1 :
165            fonction(listeparam,self.appliEficas)
166         except :
167            fonction(listeparam)
168         
169
170
171     def createActionsQT4(self):
172         self.CommApres = QAction(tr('apres'),self.tree)
173         self.tree.connect(self.CommApres,SIGNAL("triggered()"),self.addCommApres)
174         self.CommApres.setStatusTip(tr("Insere un commentaire apres la commande "))
175         self.CommAvant = QAction(tr('avant'),self.tree)
176         self.tree.connect(self.CommAvant,SIGNAL("triggered()"),self.addCommAvant)
177         self.CommAvant.setStatusTip(tr("Insere un commentaire avant la commande "))
178
179         self.ParamApres = QAction(tr('apres'),self.tree)
180         self.tree.connect(self.ParamApres,SIGNAL("triggered()"),self.addParametersApres)
181         self.ParamApres.setStatusTip(tr("Insere un parametre apres la commande "))
182         self.ParamAvant = QAction(tr('avant'),self.tree)
183         self.tree.connect(self.ParamAvant,SIGNAL("triggered()"),self.addParametersAvant)
184         self.ParamAvant.setStatusTip(tr("Insere un parametre avant la commande "))
185
186         self.Supprime = QAction(tr('Supprimer'),self.tree)
187         self.tree.connect(self.Supprime,SIGNAL("triggered()"),self.supprimeNoeud)
188         self.Supprime.setStatusTip(tr("supprime le mot clef "))
189         self.Documentation = QAction(tr('Documentation'),self.tree)
190         self.tree.connect(self.Documentation,SIGNAL("triggered()"),self.viewDoc)
191
192     def createActions(self):
193         self.CommApres = QAction(tr('apres'),self.tree)
194         self.CommApres.triggered.connect(self.addCommApres)
195         self.CommApres.setStatusTip(tr("Insere un commentaire apres la commande "))
196         self.CommAvant = QAction(tr('avant'),self.tree)
197         self.CommAvant.triggered.connect(self.addCommAvant)
198         self.CommAvant.setStatusTip(tr("Insere un commentaire avant la commande "))
199
200         self.ParamApres = QAction(tr('apres'),self.tree)
201         self.ParamApres.triggered.connect(self.addParametersApres)
202         self.ParamApres.setStatusTip(tr("Insere un parametre apres la commande "))
203         self.ParamAvant = QAction(tr('avant'),self.tree)
204         self.ParamAvant.triggered.connect(self.addParametersAvant)
205         self.ParamAvant.setStatusTip(tr("Insere un parametre avant la commande "))
206
207         self.Supprime = QAction(tr('Supprimer'),self.tree)
208         self.Supprime.triggered.connect(self.supprimeNoeud)
209         self.Supprime.setStatusTip(tr("supprime le mot clef "))
210         self.Documentation = QAction(tr('Documentation'),self.tree)
211         self.Documentation.triggered.connect(self.viewDoc)
212         self.Documentation.setStatusTip(tr("documentation sur la commande "))
213
214     def supprimeNoeud(self):
215         item= self.tree.currentItem()
216         item.delete()
217
218     def viewDoc(self):
219         self.node=self.tree.currentItem()
220         cle_doc = self.node.item.get_docu()
221         if cle_doc == None :
222             QMessageBox.information( self.editor,tr( "Documentation Vide"), \
223                                     tr("Aucune documentation n'est associee a ce noeud"))
224             return
225         commande = self.editor.appliEficas.CONFIGURATION.exec_acrobat
226         try :
227             f=open(commande,"rb")
228         except :
229              texte=tr("impossible de trouver la commande  ") + commande
230              QMessageBox.information( self.editor, tr("Lecteur PDF"), texte)
231              return
232         import os
233         if cle_doc.startswith('http:'):
234            fichier = cle_doc
235         else :
236             fichier = os.path.abspath(os.path.join(self.editor.CONFIGURATION.path_doc,
237                                        cle_doc))
238             try :
239                f=open(fichier,"rb")
240             except :
241                texte=tr("impossible d'ouvrir ") + fichier
242                QMessageBox.information( self.editor, tr("Documentation Vide"), texte)
243                return
244
245        
246         if os.name == 'nt':
247            os.spawnv(os.P_NOWAIT,commande,(commande,fichier,))
248         elif os.name == 'posix':
249             script ="#!/usr/bin/sh \n%s %s&" %(commande,fichier)
250             pid = os.system(script)
251
252     def addParametersApres(self):
253         item= self.tree.currentItem()
254         item.addParameters(True)
255
256     def addParametersAvant(self):
257         item= self.tree.currentItem()
258         item.addParameters(False)
259
260     def addCommApres(self):
261         item= self.tree.currentItem()
262         item.addComment(True)
263
264     def addCommAvant(self):
265         item= self.tree.currentItem()
266         item.addComment(False)
267
268 #--------------------------------------------#
269 class PopUpMenuNodePartiel (PopUpMenuNodeMinimal):
270 #---------------------------------------------#
271     def createPopUpMenu(self):
272         PopUpMenuNodeMinimal.createPopUpMenu(self)
273         #ss-menu Comment:
274         self.commentMenu=self.menu.addMenu(tr('Commentaire'))
275         self.commentMenu.addAction(self.CommApres)
276         self.commentMenu.addAction(self.CommAvant)
277         #ss-menu Parameters:
278         self.paramMenu =self.menu.addMenu(tr('Parametre')) 
279         self.paramMenu.addAction(self.ParamApres)
280         self.paramMenu.addAction(self.ParamAvant)
281         self.menu.addAction(self.Documentation)
282         self.menu.removeAction(self.Supprime)
283         self.menu.addAction(self.Supprime)
284
285
286 #-----------------------------------------#
287 class PopUpMenuNode(PopUpMenuNodePartiel) :
288 #-----------------------------------------#
289     def createPopUpMenu(self):
290         PopUpMenuNodePartiel.createPopUpMenu(self)
291         self.Commente = QAction(tr('ce noeud'),self.tree)
292         self.Commente.triggered.connect(self.Commenter)
293         self.Commente.setStatusTip(tr("commente le noeud "))
294         self.commentMenu.addAction(self.Commente)
295         self.menu.removeAction(self.Supprime)
296         self.menu.addAction(self.Supprime)
297
298     def Commenter(self):
299         item= self.tree.currentItem()
300         item.commentIt()