Salome HOME
cc0fbd29ae0c0c638c5146c3247132299857b053
[tools/eficas.git] / InterfaceQT4 / monWidgetOptionnel.py
1 # Copyright (C) 2007-2013   EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19 # Modules Python
20 # Modules Eficas
21
22 from __future__ import absolute_import
23 from PyQt5.QtWidgets import QCheckBox, QWidget
24 from PyQt5.QtCore import Qt
25
26 from Extensions.i18n import tr
27 from desWidgetOptionnel import Ui_WidgetOptionnel
28 from .monGroupeOptionnel import MonGroupeOptionnel
29
30     
31 # Import des panels
32 class  MonWidgetOptionnel (QWidget,Ui_WidgetOptionnel):
33   def __init__(self,parentQt):
34      #print "dans init de monWidgetOptionnel ", parentQt, parentQt.node.item.nom
35      QWidget.__init__(self,None)
36      self.setupUi(self)
37      self.dicoMCWidgetOptionnel={}
38      self.parentQt=parentQt
39
40   def afficheOptionnel(self,liste,MC):
41      #print "dans Optionnel ____ affiche", liste 
42      self.vireLesAutres(MC)
43      if MC.node.item.nom in self.dicoMCWidgetOptionnel :
44         self.dicoMCWidgetOptionnel[MC.node.item.nom].setParent(None)
45         self.dicoMCWidgetOptionnel[MC.node.item.nom].close()
46      groupe = MonGroupeOptionnel(liste,self,MC)
47      self.groupesOptionnelsLayout.insertWidget(0,groupe)
48      self.dicoMCWidgetOptionnel[MC.node.item.nom]=groupe
49      return groupe
50
51   def vireLesAutres(self,MC):
52       #print "je passe dans vireLesAutres"
53       genea =MC.obj.get_genealogie()
54       #print genea
55       for k in list(self.dicoMCWidgetOptionnel.keys()):
56           if k not in genea :  
57              self.dicoMCWidgetOptionnel[k].close()
58              del self.dicoMCWidgetOptionnel[k]
59           #if k not in genea :  print k
60       #print "________"
61       
62   def afficheOptionnelVide(self):
63       self.GeneaLabel.setText("")
64       for k in list(self.dicoMCWidgetOptionnel.keys()):
65             self.dicoMCWidgetOptionnel[k].close()
66             del self.dicoMCWidgetOptionnel[k]
67
68   def titre(self,MC):
69      if self.parentCommande.node.editor.code in ['Adao','ADAO'] and self.parentCommande.node.editor.closeFrameRechercheCommande==True :
70         self.frameLabelCommande.close()
71         return
72      labeltext,fonte,couleur = self.parentCommande.node.item.GetLabelText()
73      l=tr(labeltext)
74      li=[]
75      while len(l) > 25:
76          li.append(l[0:24])
77          l=l[24:]
78      li.append(l)
79      texte=""
80      for l in li : texte+=l+"\n"
81      texte=texte[0:-2]
82      self.GeneaLabel.setText(tr("Options pour \n") +texte)