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
21 from Editeur import Objecttreeitem
24 from Extensions.i18n import tr
27 class Node(browser.JDCNode,typeNode.PopUpMenuRacine):
31 #if self.affichage_onglet==1 :
32 # from monRacinePanel_onglet import MonRacinePanel
33 # return MonRacinePanel(self,parent=self.editor)
34 from monRacinePanel import MonRacinePanel
35 return MonRacinePanel(self,parent=self.editor)
38 from monChoixCommande import MonChoixCommande
39 return MonChoixCommande(self,self.item, self.editor)
42 def createPopUpMenu(self):
43 typeNode.PopUpMenuRacine.createPopUpMenu(self)
45 def addParameters(self,apres):
46 param=self.append_child("PARAMETRE",pos=0)
51 class JDCTreeItem(Objecttreeitem.ObjectTreeItem):
54 def IsExpandable(self):
60 def GetLabelText(self):
61 # None --> fonte et couleur par defaut
62 return tr(self.object.nom),None,None
66 Retourne l'objet pointe par self
70 def GetIconName(self):
71 if self.object.isvalid():
72 return "ast-green-square"
74 return "ast-red-square"
77 if self.object.etapes_niveaux != []:
78 return range(len(self.object.etapes_niveaux))
80 return range(len(self.object.etapes))
82 def additem(self,name,pos):
83 cmd = self._object.addentite(name,pos)
86 def suppitem(self,item) :
87 # item = item de l'ETAPE a supprimer du JDC
88 # item.getObject() = ETAPE ou COMMENTAIRE
91 itemobject=item.getObject()
92 if self.object.suppentite(itemobject):
93 if itemobject.nature == "COMMENTAIRE" :
94 message = tr("Commentaire supprime")
96 message = tr("Commande %s supprimee",itemobject.nom)
99 message=tr("Pb interne : impossible de supprimer cet objet")
102 def GetSubList(self):
104 Retourne la liste des items fils de l'item jdc.
105 Cette liste est conservee et mise a jour a chaque appel
107 if self.object.etapes_niveaux != []:
108 liste = self.object.etapes_niveaux
110 liste = self.object.etapes
111 sublist=[None]*len(liste)
112 # suppression des items lies aux objets disparus
113 for item in self.sublist:
114 old_obj=item.getObject()
116 pos=liste.index(old_obj)
119 pass # objets supprimes ignores
120 # ajout des items lies aux nouveaux objets
123 if sublist[pos] is None:
124 # nouvel objet : on cree un nouvel item
125 item = self.make_objecttreeitem(self.appli, obj.nom + " : ", obj)
132 def get_l_noms_etapes(self):
133 """ Retourne la liste des noms des etapes de self.object"""
134 return self.object.get_l_noms_etapes()
136 def get_liste_cmd(self):
137 listeCmd = self.object.niveau.definition.get_liste_cmd()
141 treeitem =JDCTreeItem