Salome HOME
d87818f2391ea0be6f3325da98480987122474c4
[tools/eficas.git] / InterfaceQT4 / browser.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
21 import string,re
22 import types,sys,os
23 import traceback
24 import typeNode
25 import pdb
26 from PyQt4 import *
27 from PyQt4.QtGui  import *
28 from PyQt4.QtCore import *
29 from Extensions.i18n import tr
30 from monChoixCommande import MonChoixCommande
31
32 class JDCTree( QTreeWidget ):
33     def __init__( self, jdc_item, QWParent):        
34         #if hasattr(QWParent,'widgetTree') : 
35         self.editor        = QWParent
36         self.plie=False
37         if self.editor.widgetTree !=None  :
38            QTreeWidget.__init__(self, self.editor.widgetTree ) 
39            self.editor.verticalLayout_2.addWidget(self)
40            if self.editor.enteteQTree=='complet':
41                  self.headerItem().setText(0,  "Commande   ")
42                  self.headerItem().setText(1, "Concept/Valeur")
43            else :
44                  self.headerItem().setText(0,  "Commande   ")
45            self.setColumnWidth(0,200)
46            self.setExpandsOnDoubleClick(False)
47            self.setSelectionMode(3)
48         else :
49            QTreeWidget.__init__(self, None ) 
50         self.item          = jdc_item
51         self.tree          = self        
52         self.appliEficas   = self.editor.appliEficas
53         self.childrenComplete=[]
54         self.childrenIssusDesBlocs=[]
55         self.racine=self.item.itemNode(self,self.item)
56  
57         self.itemCourrant=None
58
59         self.connect(self, SIGNAL("itemClicked ( QTreeWidgetItem * ,int) "), self.handleOnItem)
60         self.connect(self, SIGNAL("itemCollapsed ( QTreeWidgetItem *) "), self.handleCollapsedItem)
61         self.connect(self, SIGNAL("itemExpanded ( QTreeWidgetItem *) "), self.handleExpandedItem)
62
63         #PNPNPN verifier dans quel cas on se trouve : affiche l arbre ou la commande
64         self.node_selected=self.racine
65         self.inhibeExpand=True
66         self.expandItem(self.racine)
67         self.inhibeExpand=False
68         #print "self.editor.afficheCommandesPliees", self.editor.afficheCommandesPliees
69         if self.racine.children !=[] :  
70
71             
72            if self.editor.afficheCommandesPliees : self.racine.children[0].plieToutEtReaffiche()
73            else : self.racine.children[0].deplieToutEtReaffiche()
74         
75
76            self.racine.children[0].fenetre.donnePremier()
77         else : self.racine.affichePanneau()
78         #PNPNPN
79         #pdb.set_trace()
80
81     def contextMenuEvent(self,event) :
82         #print "contextMenuEvent"
83         coord=event.globalPos()
84         item= self.currentItem()
85         self.handleContextMenu(item,coord)
86
87     def handleContextMenu(self,item,coord):
88         """
89         Private slot to show the context menu of the listview.
90         
91         @param itm the selected listview item (QListWidgetItem)
92         @param coord the position of the mouse pointer (QPoint)
93         Attention : existeMenu permet de savoir si un menu est associe a cet item
94         """
95         #print "handleContextMenu"
96         if item == None : return
97         if item.existeMenu == 0 : return
98         if item.menu == None:
99            item.createPopUpMenu()
100         if item.menu != None:
101            if item.item.get_nom() == "DISTRIBUTION" and item.item.isvalid() :
102               item.Graphe.setEnabled(1)
103            item.menu.exec_(coord)            
104             
105
106     def handleCollapsedItem(self,item):
107         #print "dans CollapsedItem", self.inhibeExpand  
108         if self.inhibeExpand == True : return
109         # On traite le cas de l item non selectionne
110         itemParent=item
111         while not (hasattr (itemParent,'getPanel2')) : 
112            itemParent=itemParent.treeParent 
113         if self.tree.node_selected != itemParent : 
114              item.setExpanded(False)
115              return
116
117         itemParent=item
118         item.setPlie()
119         item.plieToutEtReaffiche()
120
121     def handleExpandedItem(self,item):
122         #print "dans ExpandItem", self.inhibeExpand  
123         if self.inhibeExpand == True : return
124         #print "apres if"
125         itemParent=item
126         while not (hasattr (itemParent,'getPanel2')) : 
127            if itemParent.plie==True : itemParent.setDeplie()
128            itemParent=itemParent.treeParent 
129         #print "apres if"
130         if self.tree.node_selected != itemParent : 
131              item.setExpanded(True)
132              #print "je suis la"
133              return
134         item.deplieToutEtReaffiche()
135
136     def handleOnItem(self,item,int):
137         #if (len(self.selectedIndexes())!=2): return
138         #print "je passe dans handleOnItem"
139         self.inhibeExpand == True 
140         self.itemCourrant=item
141         itemParent=item
142         #print self.itemCourrant
143         while not (hasattr (itemParent,'getPanel2')) : 
144            if itemParent.plie==True : itemParent.setDeplie()
145            itemParent=itemParent.treeParent 
146         #print itemParent
147         #print itemParent.fenetre
148         #print self.editor.afficheCommandesPliees
149         if itemParent.fenetre != self.editor.fenetreCentraleAffichee : 
150             #print self.editor.afficheCommandesPliees
151             if self.editor.afficheCommandesPliees : itemParent.plieToutEtReaffiche()
152             else :                                  itemParent.affichePanneau()
153         if itemParent!=item and item.fenetre != None: item.fenetre.rendVisible()
154         #try :
155         if 1:
156            fr = item.item.get_fr()
157            if self.editor: self.editor.labelCommentaire.setText(unicode(fr))
158         #except:
159         else :
160             pass
161         self.inhibeExpand == False 
162         #print "je mets inhibeExpand a false handleOnItem"
163
164
165     def choisitPremier(self,name):
166         self.editor.layoutJDCCHOIX.removeWidget(self.racine.fenetre)
167         self.racine.fenetre.close()
168         new_node=self.racine.append_brother(name,'after')
169  
170 # type de noeud
171 COMMENT     = "COMMENTAIRE"
172 PARAMETERS  = "PARAMETRE"
173  
174 class JDCNode(QTreeWidgetItem):
175     def __init__( self, treeParent, item):
176         #print "creation d'un noeud : ", item, " ",item.nom,"", treeParent, self
177         self.a=0
178         self.item        = item
179         self.vraiParent  = treeParent
180         self.treeParent  = treeParent
181         self.tree        = self.treeParent.tree
182         self.editor      = self.treeParent.editor
183         self.appliEficas = treeParent.appliEficas
184         self.treeParent.childrenIssusDesBlocs=[]
185         self.childrenComplete=[]
186                         
187         from InterfaceQT4 import compocomm
188         from InterfaceQT4 import compoparam
189         if   (isinstance(self.item,compocomm.COMMTreeItem)) : name=tr("Commentaire")
190         elif (isinstance(self.item,compoparam.PARAMTreeItem)) : name=self.appliEficas.trUtf8(str(item.GetLabelText()[0]))
191         else:   name  = self.appliEficas.trUtf8(str(tr( item.nom))+" :")
192         value = self.appliEficas.trUtf8(str( item.GetText() ) )
193  
194
195         mesColonnes=QStringList()
196         if self.editor.enteteQTree=='complet': mesColonnes <<  name << value
197         else : mesColonnes <<  name
198
199         if self.treeParent.plie==True :
200             self.plie        = True
201             self.appartientAUnNoeudPlie=True
202         else :
203             self.plie        = False
204             self.appartientAUnNoeudPlie = False
205         #print "self.plie", self.plie
206         #print "self.appartientAUnNoeudPlie", self.appartientAUnNoeudPlie
207         #print self.treeParent
208
209         ajoutAuParentduNoeud=0
210         from InterfaceQT4 import compobloc
211         from InterfaceQT4 import compomclist
212         while (isinstance(self.treeParent,compobloc.Node) or ( isinstance(self.treeParent,compomclist.Node) and self.treeParent.item.isMCList())) : 
213         #while (isinstance(self.treeParent,compobloc.Node)) :
214               self.treeParent=self.treeParent.treeParent
215               ajoutAuParentduNoeud=1
216         if ajoutAuParentduNoeud :
217            treeParent.childrenComplete.append(self)
218            self.treeParent.childrenIssusDesBlocs.append(self)
219         while (isinstance(self.treeParent,compobloc.Node)) : self.treeParent=self.treeParent.treeParent
220
221         #if isinstance(self,compobloc.Node) : 
222         if (isinstance(self,compobloc.Node) or ( isinstance(self,compomclist.Node) and self.item.isMCList())) : 
223            QTreeWidgetItem.__init__(self,None,mesColonnes)
224         else :
225            QTreeWidgetItem.__init__(self,self.treeParent,mesColonnes)
226            self.treeParent.childrenComplete.append(self)
227
228         self.setToolTip(0,QString(self.item.get_fr()))
229         self.setToolTip(1,QString(self.item.get_fr()))
230
231         repIcon=QString(self.appliEficas.repIcon)
232         monIcone = QIcon(repIcon+"/" +self.item.GetIconName() + ".png")
233         self.setIcon(0,monIcone)
234
235         self.children = []
236         self.build_children()
237         self.menu=None
238         self.existeMenu=1
239
240         self.item.connect("valid",self.onValid,())
241         self.item.connect("supp" ,self.onSupp,())
242         self.item.connect("add"  ,self.onAdd,())
243         self.state=""
244         self.fenetre=None
245         try :
246           if self.item.getObject().isBLOC() : 
247                 self.setExpanded(True) 
248                 self.plie=False
249         except :
250           pass
251
252
253     def build_children(self,posInsertion=10000):
254         """ Construit la liste des enfants de self """
255         """ Se charge de remettre les noeuds Expanded dans le meme etat """
256         #print "*********** build_children ",self.item, self.item.GetLabelText()
257         
258         listeExpanded=[]
259         for item in self.childrenComplete :
260             #print dir(item)
261             #if item.isExpanded():
262             #   if self.childrenComplete.index(item) < posInsertion :
263             #      listeExpanded.append(self.childrenComplete.index(item))
264             #      print dir(item.item )
265             #   else :
266             #      listeExpanded.append( self.childrenComplete.index(item) +1)
267             self.detruit_les_noeuds_issus_de_blocs(item)
268             parent=item.treeParent
269             parent.removeChild(item)
270
271         #print listeExpanded
272         self.children = []
273         self.childrenComplete = []
274         sublist = self.item._GetSubList()
275         ind=0
276         for item in sublist :
277             nouvelItem=item.itemNode(self,item)
278             self.children.append(nouvelItem)
279             #print "         J ajoute ", nouvelItem ,nouvelItem.item.GetLabelText(),"dans" ,self.item.GetLabelText()
280             #print item
281             #if ind in listeExpanded : nouvelItem.setExpanded(1)
282  
283             #if ind in listeExpanded : print "plie=0"
284             #else                   : print "plie=1"
285             #if ind in listeExpanded : nouvelItem.plie=0
286             #else                   : nouvelItem.plie=1
287             #ind=ind+1
288
289         #print "*********** fin build_children ",self.item, self.item.GetLabelText()
290         
291     def chercheNoeudCorrespondant(self,objSimp):
292         sublist = self.item._GetSubList()
293         for node in self.childrenComplete:
294             if node.item.object==objSimp : return node
295         return None
296
297     def affichePanneau(self) :
298         #print "dans affichePanneau appel getPanel2", self.item.GetLabelText()
299         if self.item.isactif(): 
300            itemParent=self
301            #print self
302            #print self.getPanel2
303            while not (hasattr (itemParent,'getPanel2')) : 
304                 itemParent=itemParent.treeParent 
305            if itemParent!=self : 
306               itemParent.affichePanneau()
307               return
308            #print self.getPanel2
309            self.fenetre=self.getPanel2()
310         else:
311             from monInactifPanel import PanelInactif
312             self.fenetre = PanelInactif(self,self.editor)
313          
314         self.editor.widgetCentraleLayout.addWidget(self.fenetre)
315         #print "widgetCentraleLayout = ", self.editor.widgetCentraleLayout
316         #print "nouvelle fenetre ", self.fenetre, " associee a ", self
317
318         self.editor.anciennefenetre=self.editor.fenetreCentraleAffichee
319         #print "ancienne fenetre ", self.editor.anciennefenetre
320         self.editor.fenetreCentraleAffichee=self.fenetre
321         self.tree.node_selected= self
322
323         if self.editor.anciennefenetre != None : 
324            a=self.editor.anciennefenetre.close()
325            #print "je ferme ", self.editor.anciennefenetre
326
327         if self.editor.widgetTree !=None  : index=1
328         else : index=0
329
330         if self.editor.first :
331            self.editor.splitter.setSizes((400,1400,400))
332            if not(isinstance(self.fenetre,MonChoixCommande)): self.editor.first=False
333         self.tree.inhibeExpand=True
334         self.tree.expandItem(self)
335         self.select()
336         self.tree.inhibeExpand=False
337         #print "fin de affichePanneau"
338         #print "______________________________"
339           
340
341     def createPopUpMenu(self):
342         #implemente dans les noeuds derives si necessaire
343         self.existeMenu = 0
344
345     def commentIt(self):
346         """
347         Cette methode a pour but de commentariser la commande pointee par self
348         """
349         # On traite par une exception le cas ou l'utilisateur final cherche a désactiver
350         # (commentariser) un commentaire.
351         try :
352             pos=self.treeParent.children.index(self)
353             commande_comment = self.item.get_objet_commentarise()
354             # On signale a l editeur du panel (le JDCDisplay) une modification
355             self.editor.init_modif()
356             self.treeParent.build_children()
357             self.treeParent.children[pos].select()
358             self.treeParent.children[pos].affichePanneau()
359         except Exception,e:
360             traceback.print_exc()
361             QMessageBox.critical( self.editor, "TOO BAD",str(e))
362         
363     def unCommentIt(self):
364         """
365         Realise la decommentarisation de self
366         """
367         try :
368             pos=self.treeParent.children.index(self)
369             commande,nom = self.item.uncomment()
370             self.editor.init_modif()
371             self.treeParent.build_children()
372             self.treeParent.children[pos].select()
373             self.treeParent.children[pos].affichePanneau()
374         except Exception,e:
375             QMessageBox.critical( self.editor, "Erreur !",str(e))
376         
377     def addComment( self, after=True ):
378         """
379         Ajoute un commentaire a l'interieur du JDC :
380         """
381         self.editor.init_modif()
382         if after:
383             pos = 'after'
384         else:
385             pos = 'before'
386         return self.append_brother( COMMENT, pos )
387                 
388     def addParameters( self, after=True ):
389         """
390         Ajoute un parametre a l'interieur du JDC :
391         """
392         self.editor.init_modif()
393         if after: pos = 'after'
394         else: pos = 'before'
395         child=self.append_brother( PARAMETERS, pos )
396         return  child
397     
398     
399     def select( self ):
400         """
401         Rend le noeud courant (self) selectionne et deselectionne
402         tous les autres
403         """        
404         #print "je suis sur select"
405         for item in self.tree.selectedItems() :
406             item.setSelected(0)
407         self.setSelected( True )    
408         #self.setExpanded( True )    
409         self.tree.setCurrentItem( self )    
410         self.tree.node_selected= self
411                                
412     #------------------------------------------------------------------
413     # Methodes de creation et destruction de noeuds
414     # Certaines de ces methodes peuvent etre appelees depuis l'externe
415     #------------------------------------------------------------------
416     def append_brother(self,name,pos='after',plier=False):
417         """
418         Permet d'ajouter un objet frere a l'objet associe au noeud self
419         par defaut on l'ajoute immediatement apres 
420         Methode externe
421         """
422         self.editor.init_modif()
423
424         from InterfaceQT4 import compojdc
425         if (isinstance(self.treeParent, compojdc.Node)) and not self.verifiePosition(name,pos)  : return 0
426         
427         index = self.treeParent.children.index(self)
428         if   pos == 'before': index = index
429         elif pos == 'after': index = index +1
430         else:
431             print unicode(pos), tr("  n'est pas un index valide pour append_brother")
432             return 0
433         return self.treeParent.append_child(name,pos=index,plier=plier)
434
435     def verifiePosition(self,name,pos,aLaRacine=False):
436         if name not in self.editor.Classement_Commandes_Ds_Arbre : return True
437         indexName=self.editor.Classement_Commandes_Ds_Arbre.index(name)
438
439         etapes=self.item.get_jdc().etapes
440         if etapes == [] : return True
441
442         if aLaRacine == False :indexOu=etapes.index(self.item.object)
443         else : indexOu=0
444
445         if pos=="after" : indexOu = indexOu+1
446         for e in etapes[:indexOu] :
447             nom=e.nom
448             if nom not in self.editor.Classement_Commandes_Ds_Arbre : continue
449             indexEtape=self.editor.Classement_Commandes_Ds_Arbre.index(nom)
450             if indexEtape > indexName :
451                comment=tr('le mot clef ')+name+tr(' doit etre insere avant ')+nom
452                QMessageBox.information( None,tr('insertion impossible'),comment, )
453                return False
454         for e in etapes[indexOu:] :
455             nom=e.nom
456             if nom not in self.editor.Classement_Commandes_Ds_Arbre : continue
457             indexEtape=self.editor.Classement_Commandes_Ds_Arbre.index(nom)
458             if indexEtape < indexName :
459                comment=tr('le mot clef ')+name+tr(' doit etre insere apres ')+nom
460                QMessageBox.information( None,tr('insertion impossible'),comment, )
461                return False
462         return True
463
464     def append_child(self,name,pos=None,plier=False):
465         """
466            Methode pour ajouter un objet fils a l'objet associe au noeud self.
467            On peut l'ajouter en debut de liste (pos='first'), en fin (pos='last')
468            ou en position intermediaire.
469            Si pos vaut None, on le place a la position du catalogue.
470         """
471         #print "************** append_child ",self.item.GetLabelText(), plier
472
473          
474         self.editor.init_modif()
475         if pos == 'first':
476             index = 0
477         elif pos == 'last':
478             index = len(self.children)
479         elif type(pos) == types.IntType :
480             # position fixee
481             index = pos
482         elif type(pos) == types.InstanceType:
483             # pos est un item. Il faut inserer name apres pos
484             index = self.item.get_index(pos) +1
485         elif type(name) == types.InstanceType:
486             index = self.item.get_index_child(name.nom)
487         else:
488             index = self.item.get_index_child(name)
489
490         # si on essaye d inserer a la racine
491         if (isinstance(self.treeParent,JDCTree) and index==0) :
492            verifiePosition=self.verifiePosition(name,'first',aLaRacine=True)
493            if not verifiePosition : return 0
494
495         self.tree.inhibeExpand=True
496         obj=self.item.additem(name,index) #CS_pbruno emet le signal 'add'
497         if obj is None:obj=0
498         if obj == 0:return 0
499         #try :
500         #  old_obj = self.item.object.get_child(name.nom,restreint = 'oui')
501         #  child=old_obj[-1]
502         #  if plier : child.plieToutEtReaffiche()
503         #  else     : child.affichePanneau() 
504         #  print "dans le 1er Try"
505         #else :
506         #except:
507           # Souci pour gerer les copies des AFFE d'une commande à l autre
508         #  try :
509         #     child=self.children[index]
510         #     if plier == True : child.setPlie()
511         #     else             : child.setDeplie() 
512         #     print "dans le 2nd Try"
513         #  except :
514         #     child=self.children[index]
515         #     print "dans le except"
516         try :
517         #if 1:
518            child=self.children[index]
519            if plier == True : child.setPlie()
520            else             : child.setDeplie() 
521         except :
522            child=self.children[index]
523            #print "dans le except"
524         self.tree.inhibeExpand=False
525         return child
526
527     def deplace(self):
528         self.editor.init_modif()
529         index = self.treeParent.children.index(self) - 1 
530         if index < 0 : index =0
531         ret=self.treeParent.item.deplaceEntite(self.item.getObject())
532
533     def delete(self):
534         """ 
535             Methode externe pour la destruction de l'objet associe au noeud
536         """
537         self.editor.init_modif()
538         index = self.vraiParent.children.index(self) - 1 
539         if index < 0 : index =0
540         recalcule=0
541         if self.item.nom == "VARIABLE" :
542            recalcule=1
543            jdc=self.item.jdc
544         ret=self.vraiParent.item.suppitem(self.item)
545         self.treeParent.build_children()
546         if self.treeParent.childrenComplete : toselect=self.treeParent.childrenComplete[index]
547         else: toselect=self.treeParent
548         if recalcule : jdc.recalcule_etat_correlation()
549         from InterfaceQT4 import compojdc
550         # cas ou on detruit dans l arbre sans affichage
551         if isinstance(self.treeParent,compojdc.Node) : 
552            toselect.affichePanneau()
553         else :
554            if self.treeParent.fenetre== None : return
555            #print "J appelle reaffiche de browser apres delete"
556            self.treeParent.fenetre.reaffiche(toselect)
557
558     def deleteMultiple(self,liste=()):
559         """ 
560             Methode externe pour la destruction d une liste de noeud
561         """
562         from InterfaceQT4 import compojdc 
563         self.editor.init_modif()
564         index=9999
565         recalcule=0
566         jdc=self.treeParent
567         parentPosition=jdc
568         while not(isinstance(jdc,compojdc.Node)):
569               jdc=jdc.treeParent
570         for noeud in liste :
571             if not( isinstance(noeud.treeParent, compojdc.Node)): continue
572             if noeud.item.nom == "VARIABLE" : recalcule=1
573             if noeud.treeParent.children.index(noeud) < index : index=noeud.treeParent.children.index(noeud)
574         if index < 0 : index =0
575
576         # Cas ou on détruit dans une ETape
577         if index == 9999 : 
578               parentPosition=self.treeParent
579               while not(isinstance(parentPosition, compojdc.Node)):
580                  index=parentPosition.treeParent.children.index(parentPosition)
581                  parentPosition=parentPosition.treeParent
582
583         for noeud in liste:
584             noeud.treeParent.item.suppitem(noeud.item)
585
586         jdc.build_children()
587         if recalcule : jdc.recalcule_etat_correlation()
588         try    : toselect=parentPosition.children[index]
589         except : toselect=jdc
590         toselect.select()
591         toselect.affichePanneau()
592 #        
593 #    #------------------------------------------------------------------
594     def onValid(self):        
595
596         print "onValid pour ", self.item.nom
597         if hasattr(self,'fenetre') and self.fenetre: self.fenetre.setValide()
598         if (self.item.nom == "VARIABLE" or self.item.nom == "DISTRIBUTION") and self.item.isvalid():
599            self.item.jdc.recalcule_etat_correlation()
600         if hasattr(self.item,'forceRecalcul'):
601            self.forceRecalculChildren(self.item.forceRecalcul)
602         self.editor.init_modif()
603         
604         self.update_node_valid()
605         self.update_node_label()
606         self.update_node_texte()
607
608     def onAdd(self,object):
609         #print "onAdd pour ", self.item.nom
610         self.editor.init_modif()
611         self.update_nodes()
612         #print "dans onAdd" ,self.item 
613         # PN -- non necessaire si item=jdc
614         if hasattr(self.item,'jdc'): self.item.jdc.aReafficher=True
615  
616     def onSupp(self,object):
617         #print "onSupp pour ", self.item.nom
618         self.editor.init_modif()
619         self.update_nodes()
620         # PN -- non necessaire si item=jdc
621         if hasattr(self.item,'jdc'): self.item.jdc.aReafficher=True
622          
623     def detruit_les_noeuds_issus_de_blocs(self,bloc):
624         from InterfaceQT4 import compobloc
625         if (isinstance(bloc,compobloc.Node)) :
626            for node in bloc.childrenComplete :
627                self.detruit_les_noeuds_issus_de_blocs(node)
628                parent=node.treeParent
629                #print "je detruit " , node.item.GetLabelText()
630                parent.removeChild(node)
631
632     def update_node_valid(self):
633         """Cette methode remet a jour la validite du noeud (icone)
634            Elle appelle isvalid
635         """
636         repIcon=QString(self.appliEficas.repIcon)
637         monIcone = QIcon(repIcon+"/" +self.item.GetIconName() + ".png")
638         self.setIcon(0,monIcone)
639
640
641     def update_node_label(self):
642         """ Met a jour le label du noeud """
643         #print "NODE update_node_label", self.item.GetLabelText()
644         labeltext,fonte,couleur = self.item.GetLabelText()
645         # PNPN a reflechir
646         #self.setText(0, labeltext)        
647     
648     
649     def update_node_label_in_blue(self):
650         if hasattr(self.appliEficas,'noeudColore'):
651            self.appliEficas.noeudColore.setTextColor( 0,Qt.black)
652            self.appliEficas.noeudColore.update_node_label()
653         self.setTextColor( 0,Qt.blue )
654         labeltext,fonte,couleur = self.item.GetLabelText()
655         self.setText(0, labeltext)        
656         self.appliEficas.noeudColore=self
657
658     def update_plusieurs_node_label_in_blue(self,liste):
659         if hasattr(self.appliEficas,'listeNoeudsColores'):
660            for noeud in self.appliEficas.listeNoeudsColores:
661                noeud.setTextColor( 0,Qt.black)
662                noeud.update_node_label()
663         self.appliEficas.listeNoeudsColores=[]
664         for noeud in liste :
665             noeud.setTextColor( 0,Qt.blue )
666             labeltext,fonte,couleur = noeud.item.GetLabelText()
667             noeud.setText(0, labeltext)        
668             self.appliEficas.listeNoeudsColores.append(noeud)
669
670     def update_node_texte_in_black(self):
671         """ Met a jour les noms des SD et valeurs des mots-cles """
672         self.setTextColor( 1,Qt.black )
673         value = self.item.GetText()
674         self.setText(1, value)
675
676     def update_node_texte(self):
677         """ Met a jour les noms des SD et valeurs des mots-cles """
678         value = self.item.GetText()
679         self.setText(1, value)
680
681     def update_node_texte_in_blue(self):
682         self.setTextColor( 1,Qt.blue )
683         value = self.item.GetText()
684         self.setText(1, value)
685
686     def update_nodes(self):
687         #print 'NODE update_nodes', self.item.GetLabelText()
688         self.build_children()
689
690     def update_valid(self) :
691         """Cette methode a pour but de mettre a jour la validite du noeud
692            et de propager la demande de mise a jour a son parent
693         """
694         #print "NODE update_valid", self.item.GetLabelText()
695         self.update_node_valid()
696         try :
697           self.treeParent.update_valid()
698         except:
699           pass
700             
701     def update_texte(self):
702         """ Met a jour les noms des SD et valeurs des mots-cles """
703         #print "NODE update_texte", self.item.GetLabelText()
704         self.update_node_texte()
705         if self.isExpanded() :
706             for child in self.children:
707                 if child.isHidden() == false : child.update_texte()
708
709
710     def forceRecalculChildren(self,niveau):
711         if self.state=='recalcule' : 
712            self.state=""
713            return
714         self.state='recalcule'
715         if hasattr(self.item,'object'):
716            self.item.object.state="modified"
717         for child in self.children:
718            if niveau > 0 : child.forceRecalculChildren(niveau - 1)
719               
720         
721
722     def doPaste(self,node_selected,pos='after'):
723         """
724             Déclenche la copie de l'objet item avec pour cible
725             l'objet passé en argument : node_selected
726         """
727         #print 'je passe dans doPaste'
728         objet_a_copier = self.item.get_copie_objet()
729         child=node_selected.doPasteCommande(objet_a_copier,pos)
730         return child
731
732     def doPasteCommande(self,objet_a_copier,pos='after'):
733         """
734           Réalise la copie de l'objet passé en argument qui est nécessairement
735           une commande
736         """
737         child=None
738         try :
739           child = self.append_brother(objet_a_copier,pos)
740         except :
741            pass
742         return child
743
744     def doPastePremier(self,objet_a_copier):
745         """
746            Réalise la copie de l'objet passé en argument (objet_a_copier)
747         """
748         objet = objet_a_copier.item.get_copie_objet()
749         child = self.append_child(objet,pos='first')
750         return child
751
752
753     def plieToutEtReaffiche(self):
754         #print "je suis dans plieToutEtReaffiche", self.item.get_nom()
755         self.editor.deplier = False
756         for item in self.children :
757             item.setPlie()
758         self.affichePanneau()
759
760     def deplieToutEtReaffiche(self):
761         self.editor.deplier = True
762         for item in self.children :
763             item.setDeplie()
764         self.affichePanneau()
765
766     def setPlie(self):
767         #print "je mets inhibeExpand a true dans setPlie"
768         #print "je suis dans plieTout", self.item.get_nom()
769         import compojdc
770         if self.fenetre == self.editor.fenetreCentraleAffichee  and isinstance(self.treeParent,compojdc.Node): 
771            return
772         self.tree.inhibeExpand=True
773         self.tree.collapseItem(self)
774         self.setPlieChildren()
775         self.tree.inhibeExpand=False
776         #print "je mets inhibeExpand a false dans setPlie"
777
778
779         # on ne plie pas au niveau 1
780         #   self.plie=False
781         #   for item in self.children :
782         #       item.appartientAUnNoeudPlie=False
783
784     def setPlieChildren(self):
785         self.plie=True
786         for c in self.children :
787             c.setPlieChildren()
788             #print "dans setPlieChildren appartientAUnNoeudPlie=True ", c, c.item.GetLabelText()[0]
789             c.appartientAUnNoeudPlie=True
790             c.plie=True
791             c.setExpanded(False)
792
793         # Pour les blocs et les motcles list
794         # on affiche un niveau de plus
795         from InterfaceQT4 import compobloc
796         from InterfaceQT4 import compomclist
797         if (isinstance(self,compobloc.Node) or ( isinstance(self,compomclist.Node) and self.item.isMCList())) : 
798             niveauPere=self.treeParent
799             while (isinstance(niveauPere,compobloc.Node) or (isinstance(niveauPere,compomclist.Node) and niveauPere.item.isMCList())) : 
800                niveauPere=niveauPere.treeParent
801             for c in self.children :
802                 c.appartientAUnNoeudPlie=niveauPere.appartientAUnNoeudPlie
803                 c.setExpanded(False)
804
805         # on affiche un niveau de plus
806         #if isinstance(self,compomclist.Node)  : 
807         #if isinstance(self,compobloc.Node)  : 
808         #    niveauPere=self.treeParent
809         #    while (isinstance(niveauPere,compobloc.Node)):
810         #       niveauPere=niveauPere.treeParent
811         #    for c in self.children :
812         #        c.appartientAUnNoeudPlie=niveauPere.appartientAUnNoeudPlie
813
814     def setDeplie(self):
815         #print "je mets inhibeExpand a true dans setDeplie"
816         self.tree.inhibeExpand=True
817         self.plie=False
818         self.tree.expandItem(self)
819         self.setDeplieChildren()
820         self.tree.inhibeExpand=False
821         #print "je mets inhibeExpand a false dans setDePlie"
822
823     def setDeplieChildren(self):
824         #print "dans setDeplieChildren appartientAUnNoeudPlie=False ", self.item.GetLabelText()
825         for c in self.children :
826             c.setDeplieChildren()
827             #print "dans setDeplieChildren appartientAUnNoeudPlie=False ", c.item.GetLabelText()
828             c.appartientAUnNoeudPlie=False
829             c.setExpanded(True)
830             c.plie=False
831        
832     def selectAvant(self):
833         i=self.item.jdc.etapes.index(self.item.object)
834         try :
835            cherche=self.item.jdc.etapes[i-1]
836         except :
837            cherche=self.item.jdc.etapes[-1]
838         node=None
839         for i in self.tree.racine.children :
840             if i.item.object== cherche  : 
841                node=i
842                break
843         if node : node.affichePanneau()
844
845     def selectApres(self):
846         i=self.item.jdc.etapes.index(self.item.object)
847         try :
848            cherche=self.item.jdc.etapes[i+1]
849         except :
850            cherche=self.item.jdc.etapes[0]
851         node=None
852         for i in self.tree.racine.children :
853             if i.item.object== cherche  : 
854                node=i
855                break
856         if node : node.affichePanneau()