Salome HOME
pb python3
[tools/eficas.git] / Ihm / I_MCFACT.py
index d9bd8154a8fc429b2d94c53d3ac95e75b78f2346..fc7d4a9f87f281c2af89c1e31e7e6a8f3b7315d7 100644 (file)
@@ -1,32 +1,33 @@
 # -*- coding: utf-8 -*-
-#            CONFIGURATION MANAGEMENT OF EDF VERSION
-# ======================================================================
-# COPYRIGHT (C) 1991 - 2002  EDF R&D                  WWW.CODE-ASTER.ORG
-# THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
-# IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
-# THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR
-# (AT YOUR OPTION) ANY LATER VERSION.
+# Copyright (C) 2007-2013   EDF R&D
 #
-# THIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT
-# WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
-# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU
-# GENERAL PUBLIC LICENSE FOR MORE DETAILS.
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License.
 #
-# YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE
-# ALONG WITH THIS PROGRAM; IF NOT, WRITE TO EDF R&D CODE_ASTER,
-#    1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE.
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
 #
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 #
-# ======================================================================
-import CONNECTOR
-import I_MCCOMPO
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
+from __future__ import absolute_import
+from Extensions.i18n import tr
+from . import CONNECTOR
+from . import I_MCCOMPO
 import Noyau
 
 class MCFACT(I_MCCOMPO.MCCOMPO):
   def isrepetable(self):
      """ 
-         Indique si l'objet est répétable.
-         Retourne 1 si le mot-clé facteur self peut être répété
+         Indique si l'objet est repetable.
+         Retourne 1 si le mot-cle facteur self peut etre repete
          Retourne 0 dans le cas contraire
      """
      if self.definition.max > 1:
@@ -36,7 +37,10 @@ class MCFACT(I_MCCOMPO.MCCOMPO):
        return 0
 
   def isoblig(self):
-    return self.definition.statut=='o'
+    if self.definition.statut != 'o' : return 0
+    objet = self.parent.get_child(self.nom)
+    if len(objet) > 1 : return 0
+    else : return 1
 
   def getlabeltext(self):
     """
@@ -47,20 +51,31 @@ class MCFACT(I_MCCOMPO.MCCOMPO):
     objet = self.parent.get_child(self.nom)
     # objet peut-etre self ou une MCList qui contient self ...
     if objet is None or objet is self:
-      return "Erreur - mclist inexistante: "+self.nom
+     return tr("Erreur - mclist inexistante : %s", self.nom)
 
     try:
       if len(objet) > 1 :
-        index = objet.get_index(self)+1 # + 1 à cause de la numérotation qui commence à 0
-        return self.nom +'_'+`index`+':'
+        index = objet.get_index(self)+1 # + 1 a cause de la numerotation qui commence a 0
+        return self.nom +'_'+repr(index)+':'
       else:
         return self.nom
     except:
-        return "Erreur - mot clé facteur de nom: "+self.nom
+      return tr("Erreur - mot cle facteur de nom : %s", self.nom)
+
+  def get_genealogie_precise(self):
+    nom=self.getlabeltext() 
+    if nom[-1]==':' : nom=nom[0:-1]
+    if self.parent:
+       l=self.parent.get_genealogie_precise()
+       l.append(nom.strip())
+       return l
+    else:
+       return [nom.strip()]
+
 
   def init_modif(self):
     """
-       Met l'état de l'objet à modified et propage au parent
+       Met l'etat de l'objet a modified et propage au parent
        qui vaut None s'il n'existe pas
     """
     self.state = 'modified'
@@ -70,11 +85,11 @@ class MCFACT(I_MCCOMPO.MCCOMPO):
 
   def fin_modif(self):
     """
-      Méthode appelée après qu'une modification a été faite afin de déclencher
-      d'éventuels traitements post-modification
+      Methode appelee apres qu'une modification a ete faite afin de declencher
+      d'eventuels traitements post-modification
     """
     #print "fin_modif",self
-    # pour les objets autres que les commandes, aucun traitement spécifique
+    # pour les objets autres que les commandes, aucun traitement specifique
     # on remonte l'info de fin de modif au parent
     CONNECTOR.Emit(self,"valid")
     parent= hasattr(self,"alt_parent") and self.alt_parent or self.parent
@@ -82,7 +97,7 @@ class MCFACT(I_MCCOMPO.MCCOMPO):
        parent.fin_modif()
 
   def normalize(self):
-    """ Retourne le MCFACT normalisé. Pour un MCFACT isolé, l'objet normalisé
+    """ Retourne le MCFACT normalise. Pour un MCFACT isole, l'objet normalise
         est une MCLIST de longueur 1 qui contient ce MCFACT
     """
     new_obj = self.definition.list_instance()