Salome HOME
dd0b60e46fee7dac53ef848ab5c2aead39b20086
[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 determine import monEnvQT5
23 if monEnvQT5:
24     from PyQt5.QtWidgets import QCheckBox, QWidget
25     from PyQt5.QtCore import Qt
26 else :
27     from PyQt4.QtGui  import *
28     from PyQt4.QtCore import *
29
30 from Extensions.i18n import tr
31 from desWidgetOptionnel import Ui_WidgetOptionnel
32
33     
34 # Import des panels
35
36 class monButtonCustom(QCheckBox):
37
38    def __init__(self,texte,monOptionnel,parent=None):
39       QCheckBox.__init__(self,tr(texte),parent)
40       self.texte=texte
41       self.monOptionnel=monOptionnel
42
43    def mouseDoubleClickEvent(self, event):
44       #print "dans mouseDoubleClickEvent", self
45       if self not in self.monOptionnel.dicoCb.keys() : 
46          event.accept()
47          return
48       listeCheckedMC="+"+self.monOptionnel.dicoCb[self]
49       self.monOptionnel.parentMC.ajoutMC(listeCheckedMC)
50       self.setChecked(False)
51       event.accept()
52       
53
54    def mousePressEvent(self, event):
55       #print "dans mousePressEvent"
56       self.mousePressed=True
57       if not( event.button() != Qt.RightButton)  : 
58          event.accept()
59          return
60       QCheckBox.mousePressEvent(self, event)
61       event.accept()
62
63
64 class MonWidgetOptionnel (QWidget,Ui_WidgetOptionnel):
65   """
66   """
67   def __init__(self,parentQt):
68      #print "dans init de monWidgetOptionnel ", parentQt, parentQt.node.item.nom
69      QWidget.__init__(self,None)
70      self.setupUi(self)
71      self.dicoCb={}
72      self.parentMC=None
73      self.listeChecked=[]
74      self.mousePressed=False
75      self.cbPressed=None
76      self.cb=None
77      self.parentQt=parentQt
78      #self.connect(self.bAjoutMC,SIGNAL("clicked()"), self.ajoutMC)
79      #print "fin init de monWidgetOptionnel ", parentQt, parentQt.node.item.nom
80
81      
82
83
84   def affiche(self,liste):
85      print "dans Optionnel ____ affiche", liste
86      self.show()
87      labeltext,fonte,couleur = self.parentMC.node.item.GetLabelText()
88      l=labeltext
89      li=[]
90      while len(l) > 25:
91          li.append(l[0:24])
92          l=l[24:]
93      li.append(l)
94      texte=""
95      for l in li : texte+=l+"\n"
96      texte=texte[0:-2]
97      self.GeneaLabel.setText(tr("Options pour \n") +texte)
98
99      for cb in self.dicoCb.keys():
100          #print 'je detruis', self.dicoCb[cb], cb
101          #print cb.close()
102          cb.close()
103
104      self.dicoCb={}
105      liste.reverse()
106      for mot in liste :
107          cb = monButtonCustom(mot,self)
108          #print "j ajoute ", mot, cb
109          self.dicoCb[cb]=mot
110          self.commandesOptionnellesLayout.insertWidget(0,cb)
111      self.scrollAreaCommandesOptionnelles.horizontalScrollBar().setSliderPosition(0)
112      print "Fin Optionnel ____ affiche", liste
113
114   def CBChecked(self):
115       # ordre ?
116       return
117       for cb in self.dicoCb.keys() :
118           if cb.isChecked()      and self.dicoCb[cb] not in self.listeChecked : self.listeChecked.append(self.dicoCb[cb])
119           if not(cb.isChecked()) and self.dicoCb[cb] in self.listeChecked     : self.listeChecked.remove(self.dicoCb[cb])
120       self.parentMC.recalculeListeMC(self.listeChecked)
121
122
123   def ajoutMC(self):
124      maListe=""
125      for cb in self.dicoCb.keys():
126          if cb.isChecked() : maListe+="+"+str(cb.text())
127      if maListe=="":return
128      #print "dans Optionnel __ ajout de ", maListe
129      self.parentMC.ajoutMC(maListe)
130
131   def hide(self):
132      self.parentQt.editor.saveSplitterSizes()
133      QWidget.hide(self)