Salome HOME
bug de la poubelle
[tools/eficas.git] / Ihm / I_MCFACT.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 from Extensions.i18n import tr
21 import CONNECTOR
22 import I_MCCOMPO
23 import Noyau
24 import string
25
26 class MCFACT(I_MCCOMPO.MCCOMPO):
27   def isrepetable(self):
28      """ 
29          Indique si l'objet est répétable.
30          Retourne 1 si le mot-clé facteur self peut être répété
31          Retourne 0 dans le cas contraire
32      """
33      if self.definition.max > 1:
34        # marche avec '**'
35        return 1
36      else :
37        return 0
38
39   def isoblig(self):
40     if self.definition.statut != 'o' : return 0
41     objet = self.parent.get_child(self.nom)
42     if len(objet) > 1 : return 0
43     else : return 1
44
45   def getlabeltext(self):
46     """
47        Retourne le label de self suivant qu'il s'agit d'un MCFACT
48        isole ou d'un MCFACT appartenant a une MCList :
49        utilisee pour l'affichage dans l'arbre
50     """
51     objet = self.parent.get_child(self.nom)
52     # objet peut-etre self ou une MCList qui contient self ...
53     if objet is None or objet is self:
54      return tr("Erreur - mclist inexistante : %s", self.nom)
55
56     try:
57       if len(objet) > 1 :
58         index = objet.get_index(self)+1 # + 1 à cause de la numérotation qui commence à 0
59         return self.nom +'_'+`index`+':'
60       else:
61         return self.nom
62     except:
63       return tr("Erreur - mot cle facteur de nom : %s", self.nom)
64
65   def get_genealogie_precise(self):
66     nom=self.getlabeltext() 
67     if nom[-1]==':' : nom=nom[0:-1]
68     if self.parent:
69        l=self.parent.get_genealogie_precise()
70        l.append(string.strip(nom))
71        return l
72     else:
73        return [string.strip(nom)]
74
75
76   def init_modif(self):
77     """
78        Met l'état de l'objet à modified et propage au parent
79        qui vaut None s'il n'existe pas
80     """
81     self.state = 'modified'
82     parent= hasattr(self,"alt_parent") and self.alt_parent or self.parent
83     if parent:
84        parent.init_modif()
85
86   def fin_modif(self):
87     """
88       Méthode appelée après qu'une modification a été faite afin de déclencher
89       d'éventuels traitements post-modification
90     """
91     #print "fin_modif",self
92     # pour les objets autres que les commandes, aucun traitement spécifique
93     # on remonte l'info de fin de modif au parent
94     CONNECTOR.Emit(self,"valid")
95     parent= hasattr(self,"alt_parent") and self.alt_parent or self.parent
96     if parent:
97        parent.fin_modif()
98
99   def normalize(self):
100     """ Retourne le MCFACT normalisé. Pour un MCFACT isolé, l'objet normalisé
101         est une MCLIST de longueur 1 qui contient ce MCFACT
102     """
103     new_obj = self.definition.list_instance()
104     new_obj.init(nom=self.nom,parent=None)
105     new_obj.append(self)
106     return new_obj
107
108   def supprime(self):
109     self.alt_parent=None
110     Noyau.N_MCFACT.MCFACT.supprime(self)