Salome HOME
d21333b0daad517cd00296dad19e3b61e1137c13
[tools/eficas.git] / InterfaceQT4 / monWidgetCommande.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 desWidgetCommande import Ui_WidgetCommande
23 from groupe import Groupe
24 from gereIcones import FacultatifOuOptionnel
25 from PyQt4.QtGui import *
26 from PyQt4.QtCore import *
27 from Extensions.i18n import tr
28 import Accas 
29 import os
30 import string
31
32     
33 # Import des panels
34
35 class MonWidgetCommande(Ui_WidgetCommande,Groupe):
36   """
37   """
38   def __init__(self,node,editor,etape):
39       #print "MonWidgetCommande ", self
40       self.listeAffichageWidget=[]
41       self.inhibe=0
42       self.ensure=0
43       Groupe.__init__(self,node,editor,None,etape.definition,etape,1,self)
44
45       if node.item.get_fr() != "" : self.labelDoc.setText(QString(node.item.get_fr()))
46       else : self.labelDoc.close()
47       
48       if (etape.get_type_produit()==None): self.LENom.close()
49       elif (hasattr(etape, 'sdnom')) and etape.sdnom != "sansnom" and etape.sdnom != None: self.LENom.setText(etape.sdnom) 
50       else : self.LENom.setText("")
51
52       maPolice= QFont("Times", 10,)
53       self.setFont(maPolice)
54       self.labelNomCommande.setText(tr(self.obj.nom))
55
56       self.commandesLayout.addStretch()
57       self.commandesLayout.focusInEvent=self.focusInEvent
58       self.scrollAreaCommandes.focusInEvent=self.focusInEvent
59
60       if self.editor.code in ['MAP','CARMELCND'] : self.bCatalogue.close()
61       else : self.connect(self.bCatalogue,SIGNAL("clicked()"), self.afficheCatalogue)
62       if self.editor.code in ['Adao','MAP'] : 
63             self.bAvant.close()
64             self.bApres.close()
65       else : 
66             self.connect(self.bAvant,SIGNAL("clicked()"), self.afficheAvant)
67             self.connect(self.bApres,SIGNAL("clicked()"), self.afficheApres)
68
69       
70       self.connect(self.LENom,SIGNAL("returnPressed()"),self.nomChange)
71       self.racine=self.node.tree.racine
72       if self.node.item.GetIconName() == "ast-red-square" : self.LENom.setDisabled(True)
73
74       self.setAcceptDrops(True)
75       self.etablitOrdre()
76
77       if self.editor.code == "CARMELCND" : 
78          self.RBPoubelle.close() # JDC Fige
79          return                  # Pas de MC Optionnels pour Carmel
80       from monWidgetOptionnel import MonWidgetOptionnel
81       #if hasattr(self.editor,'widgetOptionnel') : 
82       if self.editor.widgetOptionnel!= None : 
83         self.monOptionnel=self.editor.widgetOptionnel
84       else :
85         self.monOptionnel=MonWidgetOptionnel(self)
86         self.editor.widgetOptionnel=self.monOptionnel
87         self.editor.splitter.addWidget(self.monOptionnel)
88       self.afficheOptionnel()
89       #print "fin init de widget Commande"
90       
91
92   def donnePremier(self):
93       #print "dans donnePremier"
94       qApp.processEvents()
95       if self.listeAffichageWidget != [] :
96          self.listeAffichageWidget[0].setFocus(7)
97       qApp.processEvents()
98       #print self.focusWidget()
99
100
101   def focusNextPrevChild(self, next):
102       # on s assure que ce n est pas un chgt de fenetre
103       #print "je passe dans focusNextPrevChild"
104       if self.editor.fenetreCentraleAffichee != self : return True
105       f=self.focusWidget()
106       if f not in self.listeAffichageWidget :
107          i=0
108          while not hasattr (f,'AAfficher') :
109            if f==None :i=-1; break
110            f=f.parentWidget()
111          if hasattr(f,'AAfficher') : f=f.AAfficher
112          if i != -1 : i=self.listeAffichageWidget.index(f)
113       else :i=self.listeAffichageWidget.index(f) 
114       if (i==len(self.listeAffichageWidget) -1) and next and not self.inhibe: 
115          try :
116            self.listeAffichageWidget[1].setFocus(7)
117            w=self.focusWidget()
118            self.inhibe=1
119            w.focusPreviousChild()
120            self.inhibe=0
121            return True
122          except :
123            print self.listeAffichageWidget
124            print "souci ds focusNextPrevChild"
125       if i==0 and next==False and not self.inhibe: 
126          if hasattr(self.editor.fenetreCentraleAffichee,'scrollArea'):
127             self.editor.fenetreCentraleAffichee.scrollArea.ensureWidgetVisible(self.listeAffichageWidget[-1])
128          self.listeAffichageWidget[-2].setFocus(7)
129          self.inhibe=1
130          w=self.focusWidget()
131          w.focusNextChild()
132          self.inhibe=0
133          return True
134       return QWidget.focusNextPrevChild(self, next)
135
136   def etablitOrdre(self):
137       i=0
138       while(i +1 < len(self.listeAffichageWidget)):
139          self.setTabOrder(self.listeAffichageWidget[i],self.listeAffichageWidget[i+1])
140          i=i+1
141       # si on boucle on perd l'ordre
142  
143   def  afficheSuivant(self,f):
144       try :
145         i=self.listeAffichageWidget.index(f) 
146         next=i+1
147       except :
148         next=1
149       if (next==len(self.listeAffichageWidget) -1 ): next =0
150       #self.f=next
151       #QTimer.singleShot(1, self.rendVisible)
152       try :
153         self.listeAffichageWidget[next].setFocus(7)
154       except :
155         pass
156
157   def nomChange(self):
158       nom = str(self.LENom.text())
159       nom = string.strip(nom)
160       if nom == '' : return                  # si pas de nom, on ressort sans rien faire
161       test,mess = self.node.item.nomme_sd(nom)
162       self.editor.affiche_commentaire(mess)
163
164       #Notation scientifique
165       if test :
166         from politiquesValidation import Validation
167         validation=Validation(self.node,self.editor)
168         validation.AjoutDsDictReelEtape()
169
170   def afficheOptionnel(self):
171       # N a pas de parentQt. doit donc etre redefini
172       liste=self.ajouteMCOptionnelDesBlocs()
173       #print "dans afficheOptionnel", self.monOptionnel
174       # dans le cas ou l insertion n a pas eu leiu (souci d ordre par exemple)
175       #if self.monOptionnel == None : return
176       self.monOptionnel.parentMC=self
177       self.monOptionnel.affiche(liste)
178
179   #def focusInEvent(self,event):
180       #print "je mets a jour dans focusInEvent de monWidget Commande "
181   #    if self.editor.code == "CARMELCND" : return #Pas de MC Optionnels pour Carmel
182   #    self.afficheOptionnel()
183
184
185   def reaffiche(self,nodeAVoir=None):
186       self.avantH=self.editor.fenetreCentraleAffichee.scrollAreaCommandes.horizontalScrollBar().sliderPosition()
187       self.avantV=self.editor.fenetreCentraleAffichee.scrollAreaCommandes.verticalScrollBar().sliderPosition()
188       self.inhibeExpand=True
189       self.node.affichePanneau()
190       #print "dans reaffiche de monWidgetCommande", self.avantH, self.avantV
191       QTimer.singleShot(1, self.recentre)
192       if nodeAVoir != None:
193         self.f=nodeAVoir.fenetre
194         if self.f==None : 
195              newNode=nodeAVoir.treeParent.chercheNoeudCorrespondant(nodeAVoir.item.object)
196              self.f = newNode.fenetre 
197         print "dans reaffiche",self.f, nodeAVoir.item.nom
198         if self.f != None and self.f.isVisible() : return
199         if self.f != None : QTimer.singleShot(1, self.rendVisible)
200       self.inhibeExpand=False
201
202
203   def recentre(self):
204       qApp.processEvents()
205       s=self.editor.fenetreCentraleAffichee.scrollAreaCommandes
206       s.horizontalScrollBar().setSliderPosition(self.avantH)
207       s.verticalScrollBar().setSliderPosition(self.avantV)
208
209   def rendVisibleNoeud(self,node):
210       self.f=node.fenetre
211       print "dans rendVisibleNoeud",self.f, node.item.nom
212       QTimer.singleShot(1, self.rendVisible)
213      
214   def rendVisible(self):
215       qApp.processEvents()
216       self.f.setFocus(7)
217       self.editor.fenetreCentraleAffichee.scrollAreaCommandes.ensureWidgetVisible(self.f)
218
219   def afficheCatalogue(self):
220       if self.editor.widgetOptionnel != None : self.monOptionnel.hide()
221       self.racine.affichePanneau()
222       if self.node : self.node.select()
223       else : self.racine.select()
224
225   def afficheApres(self):
226        self.node.selectApres()
227
228   def afficheAvant(self):
229        self.node.selectAvant()
230
231   def setValide(self):
232       if not(hasattr (self,'RBValide')) : return
233       icon = QIcon()
234       if self.node.item.object.isvalid() :
235          icon=QIcon(self.repIcon+"/ast-green-ball.png")
236       else :
237          icon=QIcon(self.repIcon+"/ast-red-ball.png")
238       if self.node.item.GetIconName() == "ast-yellow-square" :
239          icon=QIcon(self.repIcon+"/ast-yel-ball.png")
240       self.RBValide.setIcon(icon)
241
242