1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2007-2013 EDF R&D
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.
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.
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
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
27 from PyQt4.QtGui import *
28 from PyQt4.QtCore import *
29 from Extensions.i18n import tr
30 from gereRegles import GereRegles
31 from monChoixCommande import MonChoixCommande
33 class JDCTree( QTreeWidget,GereRegles ):
34 def __init__( self, jdc_item, QWParent):
35 #if hasattr(QWParent,'widgetTree') :
36 self.editor = QWParent
38 if self.editor.widgetTree !=None :
39 QTreeWidget.__init__(self, self.editor.widgetTree )
40 self.editor.verticalLayout_2.addWidget(self)
41 if self.editor.enteteQTree=='complet':
42 self.headerItem().setText(0, "Commande ")
43 self.headerItem().setText(1, "Concept/Valeur")
45 self.headerItem().setText(0, "Commande ")
46 self.setColumnWidth(0,200)
47 self.setExpandsOnDoubleClick(False)
48 self.setSelectionMode(3)
50 QTreeWidget.__init__(self, None )
53 self.appliEficas = self.editor.appliEficas
54 self.childrenComplete=[]
55 self.racine=self.item.itemNode(self,self.item)
57 self.itemCourrant=None
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)
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 !=[] :
72 if self.editor.afficheCommandesPliees : self.racine.children[0].plieToutEtReaffiche()
73 else : self.racine.children[0].deplieToutEtReaffiche()
76 self.racine.children[0].fenetre.donnePremier()
77 else : self.racine.affichePanneau()
81 def contextMenuEvent(self,event) :
82 #print "contextMenuEvent"
83 coord=event.globalPos()
84 item= self.currentItem()
85 self.handleContextMenu(item,coord)
87 def handleContextMenu(self,item,coord):
89 Private slot to show the context menu of the listview.
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
95 #print "handleContextMenu"
96 if item == None : return
97 if item.existeMenu == 0 : return
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)
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
111 while not (hasattr (itemParent,'getPanel')) :
112 itemParent=itemParent.treeParent
113 if self.tree.node_selected != itemParent :
114 item.setExpanded(False)
119 item.plieToutEtReaffiche()
121 def handleExpandedItem(self,item):
122 #print "dans ExpandItem", self.inhibeExpand
123 if self.inhibeExpand == True : return
126 while not (hasattr (itemParent,'getPanel')) :
127 if itemParent.plie==True : itemParent.setDeplie()
128 itemParent=itemParent.treeParent
130 if self.tree.node_selected != itemParent :
131 item.setExpanded(True)
134 item.deplieToutEtReaffiche()
137 def handleOnItem(self,item,int):
138 #if (len(self.selectedIndexes())!=2): return
139 #print "je passe dans handleOnItem pour ", item.item.nom, item, item.item
140 self.inhibeExpand == True
141 self.itemCourrant=item
143 #print self.itemCourrant
144 while not (hasattr (itemParent,'getPanel')) :
145 if itemParent.plie==True : itemParent.setDeplie()
146 itemParent=itemParent.treeParent
147 #print itemParent.item.nom
148 #print itemParent.fenetre
149 #print self.editor.afficheCommandesPliees
150 if itemParent.fenetre != self.editor.fenetreCentraleAffichee :
151 if self.editor.afficheCommandesPliees : itemParent.plieToutEtReaffiche()
152 else : itemParent.affichePanneau()
153 if itemParent!=item and item.fenetre != None: item.fenetre.rendVisible()
156 fr = item.item.get_fr()
157 if self.editor: self.editor.labelCommentaire.setText(unicode(fr))
161 self.inhibeExpand == False
162 #print "je mets inhibeExpand a false handleOnItem"
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')
171 COMMENT = "COMMENTAIRE"
172 PARAMETERS = "PARAMETRE"
174 class JDCNode(QTreeWidgetItem,GereRegles):
175 def __init__( self, treeParent, item, itemExpand=False, ancien=False ):
176 #print "creation d'un noeud : ", item, " ",item.nom,"", treeParent, self
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
185 self.childrenComplete=[]
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() ) )
195 mesColonnes=QStringList()
196 if self.editor.enteteQTree=='complet': mesColonnes << name << value
197 else : mesColonnes << name
199 if self.treeParent.plie==True :
201 self.appartientAUnNoeudPlie=True
204 self.appartientAUnNoeudPlie = False
205 if ancien and itemExpand : self.plie = False
206 if ancien and not itemExpand : self.plie = True
209 from InterfaceQT4 import compobloc
210 from InterfaceQT4 import compomclist
212 ajoutAuParentduNoeud=0
213 self.treeParent=treeParent
214 while (isinstance(self.treeParent,compobloc.Node) or ( isinstance(self.treeParent,compomclist.Node) and self.treeParent.item.isMCList())) :
215 self.treeParent.childrenComplete.append(self)
216 self.treeParent=self.treeParent.vraiParent
217 self.treeParent.childrenComplete.append(self)
218 if (isinstance(self,compobloc.Node) or ( isinstance(self,compomclist.Node) and self.item.isMCList())) :
219 QTreeWidgetItem.__init__(self,None,mesColonnes)
221 QTreeWidgetItem.__init__(self,self.treeParent,mesColonnes)
223 self.setToolTip(0,QString(self.item.get_fr()))
224 self.setToolTip(1,QString(self.item.get_fr()))
226 repIcon=QString(self.appliEficas.repIcon)
227 monIcone = QIcon(repIcon+"/" +self.item.GetIconName() + ".png")
228 self.setIcon(0,monIcone)
231 self.build_children()
235 self.item.connect("valid",self.onValid,())
236 self.item.connect("supp" ,self.onSupp,())
237 self.item.connect("add" ,self.onAdd,())
242 if self.item.getObject().isBLOC() :
243 self.setExpanded(True)
249 def build_children(self,posInsertion=10000):
250 """ Construit la liste des enfants de self """
251 """ Se charge de remettre les noeuds Expanded dans le meme etat """
252 #print "*********** build_children ",self,self.item, self.item.nom
254 self.listeItemExpanded=[]
255 self.listeItemPlie=[]
256 for enfant in self.childrenComplete :
257 if enfant.isExpanded() : self.listeItemExpanded.append(enfant.item)
258 if not(enfant.isExpanded()) : self.listeItemPlie.append(enfant.item)
260 for enfant in self.childrenComplete :
262 parent=enfant.treeParent
263 parent.removeChild(enfant)
268 self.childrenComplete = []
269 sublist = self.item._GetSubList()
272 for item in sublist :
275 if item in self.listeItemExpanded : itemExpand=True; ancien=True
276 if item in self.listeItemPlie : itemExpand=False; ancien=True
277 nouvelItem=item.itemNode(self,item,itemExpand,ancien)
278 self.children.append(nouvelItem)
280 #print "fin *********** build_children ",self,self.item, self.item.nom
283 def chercheNoeudCorrespondant(self,objSimp):
284 sublist = self.item._GetSubList()
285 for node in self.childrenComplete:
286 if node.item.object==objSimp : return node
290 def affichePanneau(self) :
291 #print " affichePanneau " , self.item.nom
292 if self.item.isactif():
294 while not (hasattr (itemParent,'getPanel')) : itemParent=itemParent.treeParent
295 if itemParent!=self :
296 itemParent.affichePanneau()
298 self.fenetre=self.getPanel()
300 from monInactifPanel import PanelInactif
301 self.fenetre = PanelInactif(self,self.editor)
303 self.editor.widgetCentraleLayout.addWidget(self.fenetre)
305 self.editor.anciennefenetre=self.editor.fenetreCentraleAffichee
306 self.editor.fenetreCentraleAffichee=self.fenetre
307 self.tree.node_selected= self
309 if self.editor.anciennefenetre != None :
310 a=self.editor.anciennefenetre.close()
312 if self.editor.widgetTree !=None : index=1
315 if self.editor.first :
316 self.editor.splitter.setSizes((400,1400,400))
317 if not(isinstance(self.fenetre,MonChoixCommande)): self.editor.first=False
318 self.tree.inhibeExpand=True
319 self.tree.expandItem(self)
321 self.tree.inhibeExpand=False
322 #print "fin de affichePanneau"
323 #print "______________________________"
326 def createPopUpMenu(self):
327 #implemente dans les noeuds derives si necessaire
332 Cette methode a pour but de commentariser la commande pointee par self
334 # On traite par une exception le cas ou l'utilisateur final cherche a désactiver
335 # (commentariser) un commentaire.
337 pos=self.treeParent.children.index(self)
338 commande_comment = self.item.get_objet_commentarise()
339 # On signale a l editeur du panel (le JDCDisplay) une modification
340 self.editor.init_modif()
341 self.treeParent.build_children()
342 self.treeParent.children[pos].select()
343 self.treeParent.children[pos].affichePanneau()
345 traceback.print_exc()
346 QMessageBox.critical( self.editor, "TOO BAD",str(e))
348 def unCommentIt(self):
350 Realise la decommentarisation de self
353 pos=self.treeParent.children.index(self)
354 commande,nom = self.item.uncomment()
355 self.editor.init_modif()
356 self.treeParent.build_children()
357 self.treeParent.children[pos].select()
358 self.treeParent.children[pos].affichePanneau()
360 QMessageBox.critical( self.editor, "Erreur !",str(e))
362 def addComment( self, after=True ):
364 Ajoute un commentaire a l'interieur du JDC :
366 self.editor.init_modif()
371 return self.append_brother( COMMENT, pos )
373 def addParameters( self, after=True ):
375 Ajoute un parametre a l'interieur du JDC :
377 self.editor.init_modif()
378 if after: pos = 'after'
380 child=self.append_brother( PARAMETERS, pos )
386 Rend le noeud courant (self) selectionne et deselectionne
389 for item in self.tree.selectedItems() :
391 self.setSelected( True )
392 #self.setExpanded( True )
393 self.tree.setCurrentItem( self )
394 self.tree.node_selected= self
396 #------------------------------------------------------------------
397 # Methodes de creation et destruction de noeuds
398 # Certaines de ces methodes peuvent etre appelees depuis l'externe
399 #------------------------------------------------------------------
400 def append_brother(self,name,pos='after',plier=False):
402 Permet d'ajouter un objet frere a l'objet associe au noeud self
403 par defaut on l'ajoute immediatement apres
406 self.editor.init_modif()
408 from InterfaceQT4 import compojdc
409 if (isinstance(self.treeParent, compojdc.Node)) and not self.verifiePosition(name,pos) : return 0
411 index = self.treeParent.children.index(self)
412 if pos == 'before': index = index
413 elif pos == 'after': index = index +1
415 print unicode(pos), tr(" n'est pas un index valide pour append_brother")
417 return self.treeParent.append_child(name,pos=index,plier=plier)
419 def verifiePosition(self,name,pos,aLaRacine=False):
420 if name not in self.editor.Classement_Commandes_Ds_Arbre : return True
421 indexName=self.editor.Classement_Commandes_Ds_Arbre.index(name)
423 etapes=self.item.get_jdc().etapes
424 if etapes == [] : return True
426 if aLaRacine == False :indexOu=etapes.index(self.item.object)
429 if pos=="after" : indexOu = indexOu+1
430 for e in etapes[:indexOu] :
432 if nom not in self.editor.Classement_Commandes_Ds_Arbre : continue
433 indexEtape=self.editor.Classement_Commandes_Ds_Arbre.index(nom)
434 if indexEtape > indexName :
435 comment=tr('le mot clef ')+name+tr(' doit etre insere avant ')+nom
436 QMessageBox.information( None,tr('insertion impossible'),comment, )
438 for e in etapes[indexOu:] :
440 if nom not in self.editor.Classement_Commandes_Ds_Arbre : continue
441 indexEtape=self.editor.Classement_Commandes_Ds_Arbre.index(nom)
442 if indexEtape < indexName :
443 comment=tr('le mot clef ')+name+tr(' doit etre insere apres ')+nom
444 QMessageBox.information( None,tr('insertion impossible'),comment, )
448 def append_child(self,name,pos=None,plier=False):
450 Methode pour ajouter un objet fils a l'objet associe au noeud self.
451 On peut l'ajouter en debut de liste (pos='first'), en fin (pos='last')
452 ou en position intermediaire.
453 Si pos vaut None, on le place a la position du catalogue.
455 #print "************** append_child ",self.item.GetLabelText(), plier
458 self.editor.init_modif()
462 index = len(self.children)
463 elif type(pos) == types.IntType :
466 elif type(pos) == types.InstanceType:
467 # pos est un item. Il faut inserer name apres pos
468 index = self.item.get_index(pos) +1
469 elif type(name) == types.InstanceType:
470 index = self.item.get_index_child(name.nom)
472 index = self.item.get_index_child(name)
474 # si on essaye d inserer a la racine
475 if (isinstance(self.treeParent,JDCTree) and index==0) :
476 verifiePosition=self.verifiePosition(name,'first',aLaRacine=True)
477 if not verifiePosition : return 0
479 self.tree.inhibeExpand=True
480 obj=self.item.additem(name,index) #CS_pbruno emet le signal 'add'
484 child=self.children[index]
485 if plier == True : child.setPlie()
486 else : child.setDeplie()
488 child=self.children[index]
489 self.tree.inhibeExpand=False
490 #print " fin append child"
494 self.editor.init_modif()
495 index = self.treeParent.children.index(self) - 1
496 if index < 0 : index =0
497 ret=self.treeParent.item.deplaceEntite(self.item.getObject())
501 Methode externe pour la destruction de l'objet associe au noeud
503 self.editor.init_modif()
504 index = self.vraiParent.children.index(self) - 1
505 if index < 0 : index =0
507 if self.item.nom == "VARIABLE" :
510 ret,commentaire=self.vraiParent.item.suppitem(self.item)
512 self.editor.affiche_infos(commentaire,Qt.red)
514 self.editor.affiche_infos(commentaire)
515 self.treeParent.build_children()
516 if self.treeParent.childrenComplete : toselect=self.treeParent.childrenComplete[index]
517 else: toselect=self.treeParent
518 if recalcule : jdc.recalcule_etat_correlation()
519 from InterfaceQT4 import compojdc
520 # cas ou on detruit dans l arbre sans affichage
521 if isinstance(self.treeParent,compojdc.Node) :
522 toselect.affichePanneau()
524 if self.treeParent.fenetre== None : return
525 #print "J appelle reaffiche de browser apres delete"
526 self.treeParent.fenetre.reaffiche(toselect)
528 def deleteMultiple(self,liste=()):
530 Methode externe pour la destruction d une liste de noeud
532 from InterfaceQT4 import compojdc
533 self.editor.init_modif()
538 while not(isinstance(jdc,compojdc.Node)):
541 if not( isinstance(noeud.treeParent, compojdc.Node)): continue
542 if noeud.item.nom == "VARIABLE" : recalcule=1
543 if noeud.treeParent.children.index(noeud) < index : index=noeud.treeParent.children.index(noeud)
544 if index < 0 : index =0
546 # Cas ou on détruit dans une ETape
548 parentPosition=self.treeParent
549 while not(isinstance(parentPosition, compojdc.Node)):
550 index=parentPosition.treeParent.children.index(parentPosition)
551 parentPosition=parentPosition.treeParent
554 noeud.treeParent.item.suppitem(noeud.item)
557 if recalcule : jdc.recalcule_etat_correlation()
558 try : toselect=parentPosition.children[index]
559 except : toselect=jdc
561 toselect.affichePanneau()
563 # #------------------------------------------------------------------
566 #print "onValid pour ", self.item.nom
567 if hasattr(self,'fenetre') and self.fenetre: self.fenetre.setValide()
568 if (self.item.nom == "VARIABLE" or self.item.nom == "DISTRIBUTION") and self.item.isvalid():
569 self.item.jdc.recalcule_etat_correlation()
570 if hasattr(self.item,'forceRecalcul'):
571 self.forceRecalculChildren(self.item.forceRecalcul)
572 self.editor.init_modif()
574 self.update_node_valid()
575 self.update_node_label()
576 self.update_node_texte()
578 def onAdd(self,object):
579 if self.JESUISOFF==1 : return
580 self.editor.init_modif()
583 # PN -- non necessaire si item=jdc
584 if hasattr(self.item,'jdc'): self.item.jdc.aReafficher=True
586 def onSupp(self,object):
587 if self.JESUISOFF==1 : return
588 self.editor.init_modif()
590 # PN -- non necessaire si item=jdc
591 if hasattr(self.item,'jdc'): self.item.jdc.aReafficher=True
596 def update_node_valid(self):
597 """Cette methode remet a jour la validite du noeud (icone)
600 repIcon=QString(self.appliEficas.repIcon)
601 monIcone = QIcon(repIcon+"/" +self.item.GetIconName() + ".png")
602 self.setIcon(0,monIcone)
605 def update_node_label(self):
606 """ Met a jour le label du noeud """
607 #print "NODE update_node_label", self.item.GetLabelText()
608 labeltext,fonte,couleur = self.item.GetLabelText()
610 #self.setText(0, labeltext)
613 def update_node_label_in_blue(self):
614 if hasattr(self.appliEficas,'noeudColore'):
615 self.appliEficas.noeudColore.setTextColor( 0,Qt.black)
616 self.appliEficas.noeudColore.update_node_label()
617 self.setTextColor( 0,Qt.blue )
618 labeltext,fonte,couleur = self.item.GetLabelText()
619 self.setText(0, labeltext)
620 self.appliEficas.noeudColore=self
622 def update_plusieurs_node_label_in_blue(self,liste):
623 if hasattr(self.appliEficas,'listeNoeudsColores'):
624 for noeud in self.appliEficas.listeNoeudsColores:
625 noeud.setTextColor( 0,Qt.black)
626 noeud.update_node_label()
627 self.appliEficas.listeNoeudsColores=[]
629 noeud.setTextColor( 0,Qt.blue )
630 labeltext,fonte,couleur = noeud.item.GetLabelText()
631 noeud.setText(0, labeltext)
632 self.appliEficas.listeNoeudsColores.append(noeud)
634 def update_node_texte_in_black(self):
635 """ Met a jour les noms des SD et valeurs des mots-cles """
636 self.setTextColor( 1,Qt.black )
637 value = self.item.GetText()
638 self.setText(1, value)
640 def update_node_texte(self):
641 """ Met a jour les noms des SD et valeurs des mots-cles """
642 value = self.item.GetText()
643 self.setText(1, value)
646 def update_node_texte_in_blue(self):
647 self.setTextColor( 1,Qt.blue )
648 value = self.item.GetText()
649 self.setText(1, value)
651 def update_nodes(self):
652 #print 'NODE update_nodes', self.item.GetLabelText()
653 self.build_children()
655 def update_valid(self) :
656 """Cette methode a pour but de mettre a jour la validite du noeud
657 et de propager la demande de mise a jour a son parent
659 #print "NODE update_valid", self.item.GetLabelText()
660 self.update_node_valid()
662 self.treeParent.update_valid()
666 def update_texte(self):
667 """ Met a jour les noms des SD et valeurs des mots-cles """
668 #print "NODE update_texte", self.item.GetLabelText()
669 self.update_node_texte()
670 if self.isExpanded() :
671 for child in self.children:
672 if child.isHidden() == false : child.update_texte()
675 def forceRecalculChildren(self,niveau):
676 if self.state=='recalcule' :
679 self.state='recalcule'
680 if hasattr(self.item,'object'):
681 self.item.object.state="modified"
682 for child in self.children:
683 if niveau > 0 : child.forceRecalculChildren(niveau - 1)
687 def doPaste(self,node_selected,pos='after'):
689 Déclenche la copie de l'objet item avec pour cible
690 l'objet passé en argument : node_selected
692 #print 'je passe dans doPaste'
693 objet_a_copier = self.item.get_copie_objet()
694 child=node_selected.doPasteCommande(objet_a_copier,pos)
697 def doPasteCommande(self,objet_a_copier,pos='after'):
699 Réalise la copie de l'objet passé en argument qui est nécessairement
704 child = self.append_brother(objet_a_copier,pos)
709 def doPastePremier(self,objet_a_copier):
711 Réalise la copie de l'objet passé en argument (objet_a_copier)
713 objet = objet_a_copier.item.get_copie_objet()
714 child = self.append_child(objet,pos='first')
718 def plieToutEtReaffiche(self):
719 #print "je suis dans plieToutEtReaffiche", self.item.get_nom()
720 self.editor.deplier = False
721 for item in self.children :
722 # il ne faut pas plier les blocs
723 from InterfaceQT4 import compobloc
724 if (isinstance(item,compobloc.Node)) : continue
726 self.affichePanneau()
728 def deplieToutEtReaffiche(self):
729 self.editor.deplier = True
730 for item in self.children :
732 self.affichePanneau()
735 #print "je mets inhibeExpand a true dans setPlie"
736 #print "je suis dans plieTout", self.item.get_nom()
738 if self.fenetre == self.editor.fenetreCentraleAffichee and isinstance(self.treeParent,compojdc.Node):
740 self.tree.inhibeExpand=True
741 self.tree.collapseItem(self)
742 self.setPlieChildren()
743 self.tree.inhibeExpand=False
744 #print "je mets inhibeExpand a false dans setPlie"
747 # on ne plie pas au niveau 1
749 # for item in self.children :
750 # item.appartientAUnNoeudPlie=False
752 def setPlieChildren(self):
753 #print "dans setPlieChildren pour", self.item.nom
755 for c in self.children :
757 #print "dans setPlieChildren appartientAUnNoeudPlie=True ", c, c.item.GetLabelText()[0]
758 c.appartientAUnNoeudPlie=True
760 #print "dans setPlieChildren plie", c.item.nom
763 # Pour les blocs et les motcles list
764 # on affiche un niveau de plus
765 from InterfaceQT4 import compobloc
766 from InterfaceQT4 import compomclist
767 if (isinstance(self,compobloc.Node) or ( isinstance(self,compomclist.Node) and self.item.isMCList())) :
768 niveauPere=self.treeParent
769 while (isinstance(niveauPere,compobloc.Node) or (isinstance(niveauPere,compomclist.Node) and niveauPere.item.isMCList())) :
770 niveauPere=niveauPere.treeParent
771 for c in self.children :
772 c.appartientAUnNoeudPlie=niveauPere.appartientAUnNoeudPlie
775 # on affiche un niveau de plus
776 #if isinstance(self,compomclist.Node) :
777 #if isinstance(self,compobloc.Node) :
778 # niveauPere=self.treeParent
779 # while (isinstance(niveauPere,compobloc.Node)):
780 # niveauPere=niveauPere.treeParent
781 # for c in self.children :
782 # c.appartientAUnNoeudPlie=niveauPere.appartientAUnNoeudPlie
785 #print "dans setPlieChildren pour", self.item.nom
786 #print "je mets inhibeExpand a true dans setDeplie"
787 self.tree.inhibeExpand=True
789 self.tree.expandItem(self)
790 self.setDeplieChildren()
791 self.tree.inhibeExpand=False
792 #print "je mets inhibeExpand a false dans setDePlie"
794 def setDeplieChildren(self):
795 #print "dans setDeplieChildren appartientAUnNoeudPlie=False ", self.item.GetLabelText()
796 for c in self.children :
797 c.setDeplieChildren()
798 #print "dans setDeplieChildren ", c.item.nom
799 c.appartientAUnNoeudPlie=False
803 def selectAvant(self):
804 i=self.item.jdc.etapes.index(self.item.object)
806 cherche=self.item.jdc.etapes[i-1]
808 cherche=self.item.jdc.etapes[-1]
810 for i in self.tree.racine.children :
811 if i.item.object== cherche :
814 if node : node.affichePanneau()
816 def selectApres(self):
817 i=self.item.jdc.etapes.index(self.item.object)
819 cherche=self.item.jdc.etapes[i+1]
821 cherche=self.item.jdc.etapes[0]
823 for i in self.tree.racine.children :
824 if i.item.object== cherche :
827 if node : node.affichePanneau()