]> SALOME platform Git repositories - tools/eficas.git/blob - InterfaceQT4/monChoixCommande.py
Salome HOME
premiere version
[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          if nodeCourrant==self.node : self.node.append_child(self.name,'first')
83          else : nodeCourrant.append_brother(self.name)
84
85   def CreeListeCommande(self,filtre):
86       listeGroupes,dictGroupes=self.jdc.get_groups()
87       if "CACHE" in dictGroupes.keys():
88          aExclure=dictGroupes["CACHE"]
89       else:
90          aExclure=()
91       listeACreer=[]
92       for l in self.jdc.get_liste_cmd():
93          if l not in aExclure : 
94             if filtre != None and not filtre in l : continue
95             listeACreer.append(l)
96       return listeACreer
97
98   def AjouteRadioButton(self):
99       filtre=str(self.LEFiltre.text())
100       if filtre==str("") : filtre=None
101       if hasattr(self,'buttonGroup') :
102          for b in self.buttonGroup.buttons():
103              self.buttonGroup.removeButton(b)
104              b.close()
105       else :
106          self.buttonGroup = QButtonGroup()
107       for w in self.listeWidget :
108          w.close()
109       self.listeWidget=[]
110       if self.affiche_alpha==1 :
111          liste=self.CreeListeCommande(filtre)
112          for cmd in liste :
113 #PNPNPN Possibilite de tr ?
114            rbcmd=(QRadioButton(cmd))
115            self.buttonGroup.addButton(rbcmd)
116            self.commandesLayout.addWidget(rbcmd)
117            rbcmd.mouseDoubleClickEvent=self.mouseDoubleClickEvent
118            self.connect(self.buttonGroup, SIGNAL("buttonClicked(QAbstractButton*)"),self.rbClique) 
119       else :
120          listeGroupes,dictGroupes=self.jdc.get_groups()
121          for grp in listeGroupes:
122            if grp == "CACHE" : continue
123            label=QLabel(self)
124            text=QString.fromUtf8('<html><head/><body><p><span style=\" font-weight:600;\">Groupe : '+grp+'</span></p></body></html>')
125            label.setText(text)
126            self.listeWidget.append(label)
127            aAjouter=1
128            for cmd in  dictGroupes[grp]:
129               if filtre != None and not filtre in cmd : continue
130               if aAjouter == 1 :
131                  self.commandesLayout.addWidget(label)
132                  aAjouter=0
133               rbcmd=(QRadioButton(cmd))
134               self.buttonGroup.addButton(rbcmd)
135               self.commandesLayout.addWidget(rbcmd)
136               rbcmd.mouseDoubleClickEvent=self.mouseDoubleClickEvent
137               self.connect(self.buttonGroup, SIGNAL("buttonClicked(QAbstractButton*)"),self.rbClique)
138            label2=QLabel(self)
139            label2.setText(" ")
140            self.listeWidget.append(label2)
141            self.commandesLayout.addWidget(label2)
142
143      
144   def LEfiltreReturnPressed(self):
145       self.AjouteRadioButton(filtre)
146
147
148   def rbClique(self,id):
149       self.name=str(id.text().toLatin1())
150       definitionEtape=getattr(self.jdc.cata[0],self.name)
151       commentaire=getattr(definitionEtape,self.jdc.lang)
152       try :
153         commentaire=getattr(definitionEtape,self.jdc.lang)
154       except :
155         try :
156            commentaire=getattr(definitionEtape,"ang")
157         except :
158            commentaire=""
159       self.editor.labelCommentaire.setText(commentaire)
160
161   def bOkPressed(self):
162       if self.name==None :  
163          QMessageBox.critical(None, tr("Commande non choisie "),
164                      tr("Vous devez choisir une commande") )
165          return
166       #new_node = self.node.append_child(self.name,'first')
167       self.node.tree.choisitPremier(self.name)
168
169
170   def setValide(self):
171       #PNPN a priori pas d icone mais peut-etre a faire
172       pass