Salome HOME
version 19 mars
[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 PyQt4  import *
24 from PyQt4.QtCore import *
25 from PyQt4.QtGui import *
26 from PyQt4.QtCore import *
27 from Extensions.i18n import tr
28 import os
29
30     
31 # Import des panels
32
33 class MonChoixCommande(Ui_ChoixCommandes,QtGui.QWidget):
34   """
35   """
36   def __init__(self,node, jdc_item, editor):
37       QtGui.QWidget.__init__(self,None)
38       self.setupUi(self)
39       #self.labelIcone.setText('<img src="/local00/home/A96028/Install_EficasV1/KarineEficas/InterfaceQT4/loopOff.png">');
40
41       self.item = jdc_item
42       self.node = node
43       self.editor = editor
44       self.jdc  = self.item.object.get_jdc_root()
45       if self.editor.widgetTree != None:
46          self.connect(self.bFormulaire,SIGNAL("clicked()"),self.bFormulaireReturnPressed)
47       else :
48          self.bFormulaire.close()
49       debutTitre=self.editor.titre
50       self.listeWidget=[]
51       if self.editor.fichier != None : 
52           nouveauTitre=debutTitre+" "+str(os.path.basename(self.editor.fichier))
53       else :
54           nouveauTitre=debutTitre
55       self.editor.appliEficas.setWindowTitle(nouveauTitre)
56       self.connect(self.RBalpha,SIGNAL("clicked()"),self.afficheAlpha)
57       self.connect(self.RBGroupe,SIGNAL("clicked()"),self.afficheGroupe)
58       self.editor.labelCommentaire.setText("")
59       self.affiche_alpha=self.editor.affiche_alpha
60       self.name=None
61       self.AjouteRadioButton()
62       self.connect(self.LEFiltre,SIGNAL("returnPressed()"),self.AjouteRadioButton)
63
64   def afficheAlpha(self):
65       self.affiche_alpha=1
66       self.editor.affiche_alpha=1
67       self.AjouteRadioButton()
68
69   def afficheGroupe(self):
70       self.affiche_alpha=0
71       self.editor.affiche_alpha=0
72       self.AjouteRadioButton()
73
74   def bFormulaireReturnPressed(self):
75       print "PNPNPNPN a Programmer" 
76       self.connect(self.bFormulaire,SIGNAL("clicked()"),self.bFormulaireReturnPressed)
77
78   def mouseDoubleClickEvent(self,event):
79       nodeCourrant=self.node.tree.currentItem()
80       if nodeCourrant==None: nodeCourrant=self.node.tree.racine
81       if self.name != None :
82          plier=self.editor.afficheCommandesPliees
83          if nodeCourrant==self.node : nouveau=self.node.append_child(self.name,'first',plier)
84          else : nouveau=nodeCourrant.append_brother(self.name,plier=plier)
85       nouveau.setDeplie()
86       #if self.editor.afficheApresInsert==True : nouveau.plieToutEtReaffiche()
87       if self.editor.afficheApresInsert == True :
88            if self.editor.affichePlie ==True:  nouveau.plieToutEtReaffiche()
89            else : nouveau.deplieToutEtReaffiche()
90            #nouveau.deplieToutEtReaffiche()
91
92   def CreeListeCommande(self,filtre):
93       listeGroupes,dictGroupes=self.jdc.get_groups()
94       if "CACHE" in dictGroupes.keys():
95          aExclure=dictGroupes["CACHE"]
96       else:
97          aExclure=()
98       listeACreer=[]
99       for l in self.jdc.get_liste_cmd():
100          if l not in aExclure : 
101             if filtre != None and not filtre in l : continue
102             listeACreer.append(l)
103       return listeACreer
104
105   def AjouteRadioButton(self):
106       filtre=str(self.LEFiltre.text())
107       if filtre==str("") : filtre=None
108       if hasattr(self,'buttonGroup') :
109          for b in self.buttonGroup.buttons():
110              self.buttonGroup.removeButton(b)
111              b.close()
112       else :
113          self.buttonGroup = QButtonGroup()
114       for w in self.listeWidget :
115          w.close()
116       self.listeWidget=[]
117       if self.affiche_alpha==1 :
118          liste=self.CreeListeCommande(filtre)
119          for cmd in liste :
120            rbcmd=(QRadioButton(tr(cmd)))
121            self.buttonGroup.addButton(rbcmd)
122            self.commandesLayout.addWidget(rbcmd)
123            rbcmd.mouseDoubleClickEvent=self.mouseDoubleClickEvent
124            self.connect(self.buttonGroup, SIGNAL("buttonClicked(QAbstractButton*)"),self.rbClique) 
125       else :
126          listeGroupes,dictGroupes=self.jdc.get_groups()
127          for grp in listeGroupes:
128            if grp == "CACHE" : continue
129            label=QLabel(self)
130            text=QString.fromUtf8('<html><head/><body><p><span style=\" font-weight:600;\">Groupe : '+tr(grp)+'</span></p></body></html>')
131            label.setText(text)
132            self.listeWidget.append(label)
133            aAjouter=1
134            for cmd in  dictGroupes[grp]:
135               if filtre != None and not filtre in cmd : continue
136               if aAjouter == 1 :
137                  self.commandesLayout.addWidget(label)
138                  aAjouter=0
139               rbcmd=(QRadioButton(tr(cmd)))
140               self.buttonGroup.addButton(rbcmd)
141               self.commandesLayout.addWidget(rbcmd)
142               rbcmd.mouseDoubleClickEvent=self.mouseDoubleClickEvent
143               self.connect(self.buttonGroup, SIGNAL("buttonClicked(QAbstractButton*)"),self.rbClique)
144            label2=QLabel(self)
145            label2.setText(" ")
146            self.listeWidget.append(label2)
147            self.commandesLayout.addWidget(label2)
148
149      
150   def LEfiltreReturnPressed(self):
151       self.AjouteRadioButton(filtre)
152
153
154   def rbClique(self,id):
155       self.name=str(id.text().toLatin1())
156       definitionEtape=getattr(self.jdc.cata[0],self.name)
157       commentaire=getattr(definitionEtape,self.jdc.lang)
158       try :
159         commentaire=getattr(definitionEtape,self.jdc.lang)
160       except :
161         try :
162            commentaire=getattr(definitionEtape,"ang")
163         except :
164            commentaire=""
165       self.editor.labelCommentaire.setText(commentaire)
166
167
168
169   def setValide(self):
170       #PNPN a priori pas d icone mais peut-etre a faire
171       pass