Salome HOME
modif du 1010
[tools/eficas.git] / InterfaceQT4 / monChoixCommande.py
1 # Copyright (C) 2007-2013   EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19 # Modules Python
20 # Modules Eficas
21
22 from desChoixCommandes import Ui_ChoixCommandes
23 from determine import monEnvQT5
24 if monEnvQT5 :
25    from PyQt5.QtWidgets import QWidget, QAction ,QButtonGroup, QRadioButton, QLabel
26    from PyQt5.QtGui  import QIcon
27    from PyQt5.QtCore import QSize
28 else :
29    from PyQt4.QtGui  import *
30    from PyQt4.QtCore import *
31
32 from Extensions.i18n import tr
33 import os
34
35     
36 # Import des panels
37
38 class MonChoixCommande(Ui_ChoixCommandes,QWidget):
39   """
40   """
41   def __init__(self,node, jdc_item, editor):
42       QWidget.__init__(self,None)
43       self.setupUi(self)
44
45       self.repIcon=os.path.join( os.path.dirname(os.path.abspath(__file__)),'..','Editeur','icons')
46       iconeFile=os.path.join(self.repIcon,'lettreRblanc30.png')
47       icon = QIcon(iconeFile)
48       self.RBRegle.setIcon(icon)
49       self.RBRegle.setIconSize(QSize(21, 31))
50
51       self.item = jdc_item
52       self.node = node
53       self.editor = editor
54       self.jdc  = self.item.object.get_jdc_root()
55       debutTitre=self.editor.titre
56       self.listeWidget=[]
57       self.dicoCmd={}
58       if self.editor.fichier != None : 
59           nouveauTitre=debutTitre+" "+str(os.path.basename(self.editor.fichier))
60       else :
61           nouveauTitre=debutTitre
62       self.editor.appliEficas.setWindowTitle(nouveauTitre)
63
64
65       #print self.node.tree
66
67       if monEnvQT5 :
68          self.RBalpha.clicked.connect(self.afficheAlpha)
69          self.RBGroupe.clicked.connect(self.afficheGroupe)
70          self.RBOrdre.clicked.connect(self.afficheOrdre)
71          self.RBClear.clicked.connect(self.clearFiltre)
72          self.RBCasse.toggled.connect(self.ajouteRadioButtons)
73          self.LEFiltre.returnPressed.connect(self.ajouteRadioButtons)
74          self.LEFiltre.textChanged.connect(self.ajouteRadioButtons)
75       else :
76          self.connect(self.RBalpha,SIGNAL("clicked()"),self.afficheAlpha)
77          self.connect(self.RBGroupe,SIGNAL("clicked()"),self.afficheGroupe)
78          self.connect(self.RBOrdre,SIGNAL("clicked()"),self.afficheOrdre)
79          self.connect(self.RBClear,SIGNAL("clicked()"),self.clearFiltre)
80          self.connect(self.RBCasse,SIGNAL("toggled(bool)"),self.ajouteRadioButtons)
81          self.connect(self.LEFiltre,SIGNAL("returnPressed()"),self.ajouteRadioButtons)
82       if self.node.tree.item.get_regles() == () :
83          self.RBRegle.close()
84          self.labelRegle.close()
85       else : 
86         if monEnvQT5 : self.RBRegle.clicked.connect(self.afficheRegle)
87         else         : self.connect(self.RBRegle,SIGNAL("clicked()"),self.afficheRegle)
88
89       if self.editor.Ordre_Des_Commandes == None : self.RBOrdre.close()
90
91        
92       #self.editor.labelCommentaire.setText("")
93       if self.editor.widgetOptionnel!= None : 
94          self.editor.fermeOptionnel()
95          self.editor.widgetOptionnel=None
96       self.name=None
97
98       self.affiche_alpha=0
99       self.affiche_groupe=0
100       self.affiche_ordre=0
101       if self.editor.affiche=="alpha"  : 
102          self.affiche_alpha==1;  
103          self.RBalpha.setChecked(True);
104          self.afficheAlpha()
105       elif self.editor.affiche=="groupe" : 
106          self.affiche_groupe==1; 
107          self.RBGroupe.setChecked(True); 
108          self.afficheGroupe()
109       elif self.editor.affiche=="ordre"  : 
110          self.affiche_ordre==1;  
111          self.RBOrdre.setChecked(True);  
112          self.afficheOrdre()
113       if self.editor.closeFrameRechercheCommande == True : self.frameAffichage.close()
114
115   def afficheRegle(self):
116       self.node.tree.AppelleBuildLBRegles()
117
118   def afficheAlpha(self):
119       self.affiche_alpha=1
120       self.affiche_groupe=0
121       self.affiche_ordre=0
122       self.ajouteRadioButtons()
123
124   def afficheGroupe(self):
125       self.affiche_alpha=0
126       self.affiche_groupe=1
127       self.affiche_ordre=0
128       self.ajouteRadioButtons()
129
130   def afficheOrdre(self):
131       self.affiche_alpha=0
132       self.affiche_groupe=0
133       self.affiche_ordre=1
134       self.ajouteRadioButtons()
135
136   def mouseDoubleClickEvent(self,event):
137       if self.editor.Classement_Commandes_Ds_Arbre!= None : self.chercheOu()
138       nodeCourrant=self.node.tree.currentItem()
139       if nodeCourrant==None: nodeCourrant=self.node.tree.racine
140       if self.name != None :
141          plier=self.editor.afficheCommandesPliees
142          if nodeCourrant==self.node : nouveau=self.node.append_child(self.name,'first',plier)
143          else : nouveau=nodeCourrant.append_brother(self.name,plier=plier)
144       else :
145          nouveau = 0
146       if nouveau == 0 : return # on n a pas insere le noeud
147       nouveau.setDeplie()
148       #if self.editor.afficheApresInsert==True : nouveau.plieToutEtReaffiche()
149       if self.editor.afficheApresInsert == True :
150            #if self.editor.affichePlie==True:  nouveau.plieToutEtReaffiche()
151            if self.editor.afficheCommandesPliees ==True:  nouveau.plieToutEtReaffiche()
152            else : nouveau.deplieToutEtReaffiche()
153            nouveau.fenetre.donnePremier()
154            #nouveau.deplieToutEtReaffiche()
155       else :
156            self.node.setSelected(False)
157            nouveau.setSelected(True)
158            self.node.tree.setCurrentItem(nouveau)
159       event.accept()
160       
161   def chercheOu(self):
162      if self.node.tree.racine.childrenComplete==[] : return None
163      listeNoeud=[]
164      for node in self.node.tree.racine.childrenComplete :
165          listeNoeud.append(node.item.object.nom)
166      indexAvant=-1
167      indexStop=self.editor.Classement_Commandes_Ds_Arbre.index(self.name)
168      for commande in self.editor.Classement_Commandes_Ds_Arbre[:indexStop]:
169          if commande in listeNoeud: indexAvant=indexAvant+1
170      if indexAvant==-1 : self.node.tree.setCurrentItem(None)
171      else :
172         nodeASelectionner=self.node.tree.racine.childrenComplete[indexAvant]
173         self.node.tree.setCurrentItem(nodeASelectionner)
174          
175
176   def creeListeCommande(self,filtre):
177       listeGroupes,dictGroupes=self.jdc.get_groups()
178       sensibleALaCasse=self.RBCasse.isChecked()
179       if "CACHE" in dictGroupes.keys():
180          aExclure=dictGroupes["CACHE"]
181       else:
182          aExclure=()
183       listeACreer=[]
184       for l in self.jdc.get_liste_cmd():
185          if l not in aExclure : 
186             if sensibleALaCasse and (filtre != None and not filtre in l) : continue
187             if (not sensibleALaCasse) and filtre != None and (not filtre in l) and (not filtre.upper() in l) : continue
188             listeACreer.append(l)
189       return listeACreer
190
191   def ajouteRadioButtons(self):
192       #print 'ds ajouteRadioButtons'
193       filtre=str(self.LEFiltre.text())
194       if filtre==str("") : filtre=None
195       if hasattr(self,'buttonGroup') :
196          for b in self.buttonGroup.buttons():
197              self.buttonGroup.removeButton(b)
198              b.setParent(None)
199              b.close()
200       else :
201          self.buttonGroup = QButtonGroup()
202       for w in self.listeWidget :
203          w.setParent(None)
204          w.close()
205       self.listeWidget=[]
206       if self.affiche_alpha==1 :
207          liste=self.creeListeCommande(filtre)
208          for cmd in liste :
209            self.dicoCmd[tr(cmd)]=cmd
210            rbcmd=(QRadioButton(tr(cmd)))
211            self.buttonGroup.addButton(rbcmd)
212            self.commandesLayout.addWidget(rbcmd)
213            rbcmd.mouseDoubleClickEvent=self.mouseDoubleClickEvent
214            if monEnvQT5:
215               self.buttonGroup.buttonClicked.connect(self.rbClique) 
216            else :
217               self.connect(self.buttonGroup, SIGNAL("buttonClicked(QAbstractButton*)"),self.rbClique) 
218       elif  self.affiche_groupe==1 :
219          listeGroupes,dictGroupes=self.jdc.get_groups()
220          for grp in listeGroupes:
221            if grp == "CACHE" : continue
222            label=QLabel(self)
223            if monEnvQT5 :
224               text=tr('<html><head/><body><p><span style=\" font-weight:600;\">Groupe : '+tr(grp)+'</span></p></body></html>')
225            else :
226               text=QString.fromUtf8('<html><head/><body><p><span style=\" font-weight:600;\">Groupe : '+tr(grp)+'</span></p></body></html>')
227            label.setText(text)
228            self.listeWidget.append(label)
229            aAjouter=1
230            sensibleALaCasse=self.RBCasse.isChecked()
231            for cmd in  dictGroupes[grp]:
232               if sensibleALaCasse and (filtre != None and not filtre in cmd) : continue
233               if (not sensibleALaCasse) and filtre != None and (not filtre in cmd) and (not filtre.upper() in cmd) : continue
234               if aAjouter == 1 :
235                  self.commandesLayout.addWidget(label)
236                  aAjouter=0
237               self.dicoCmd[tr(cmd)]=cmd
238               rbcmd=(QRadioButton(tr(cmd)))
239               self.buttonGroup.addButton(rbcmd)
240               self.commandesLayout.addWidget(rbcmd)
241               rbcmd.mouseDoubleClickEvent=self.mouseDoubleClickEvent
242               if monEnvQT5:
243                  self.buttonGroup.buttonClicked.connect(self.rbClique) 
244               else :
245                   self.connect(self.buttonGroup, SIGNAL("buttonClicked(QAbstractButton*)"),self.rbClique)
246            label2=QLabel(self)
247            label2.setText(" ")
248            self.listeWidget.append(label2)
249            self.commandesLayout.addWidget(label2)
250       elif  self.affiche_ordre==1 :
251          listeFiltre=self.creeListeCommande(filtre)
252          liste=[]
253          if self.editor.Ordre_Des_Commandes == None : Ordre_Des_Commandes=listeFiltre
254          else : Ordre_Des_Commandes=self.editor.Ordre_Des_Commandes
255          for cmd in Ordre_Des_Commandes :
256             if cmd in listeFiltre :
257                  liste.append(cmd)
258          for cmd in liste :
259            self.dicoCmd[tr(cmd)]=cmd
260            rbcmd=(QRadioButton(tr(cmd)))
261            self.buttonGroup.addButton(rbcmd)
262            self.commandesLayout.addWidget(rbcmd)
263            rbcmd.mouseDoubleClickEvent=self.mouseDoubleClickEvent
264            if monEnvQT5:
265               self.buttonGroup.buttonClicked.connect(self.rbClique) 
266            else :
267               self.connect(self.buttonGroup, SIGNAL("buttonClicked(QAbstractButton*)"),self.rbClique)
268
269      
270
271   def clearFiltre(self):
272       self.LEFiltre.setText("")
273       self.ajouteRadioButtons()
274
275   def rbClique(self,id):
276       self.name=self.dicoCmd[str(id.text())]
277       definitionEtape=getattr(self.jdc.cata[0],self.name)
278       commentaire=getattr(definitionEtape,self.jdc.lang)
279       try :
280         commentaire=getattr(definitionEtape,self.jdc.lang)
281       except :
282         try :
283            commentaire=getattr(definitionEtape,"ang")
284         except :
285            commentaire=""
286       self.editor.affiche_commentaire(commentaire)
287
288
289
290   def setValide(self):
291       #PNPN a priori pas d icone mais peut-etre a faire
292       pass