Salome HOME
Tuple
[tools/eficas.git] / InterfaceQT4 / monWidgetRadioButton.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 # Modules Python
21 import string,types,os
22
23 # Modules Eficas
24 from PyQt4.QtGui import *
25 from PyQt4.QtCore import *
26 from Extensions.i18n import tr
27
28 from feuille               import Feuille
29 from desWidgetRadioButton  import Ui_WidgetRadioButton 
30 from politiquesValidation  import PolitiqueUnique
31 from qtSaisie              import SaisieValeur
32
33
34 class MonWidgetRadioButtonCommun (Feuille):
35   def __init__(self,node,monSimpDef,nom,objSimp,parentQt,commande):
36         self.setMaxI()
37         Feuille.__init__(self,node,monSimpDef,nom,objSimp,parentQt,commande)
38         self.politique=PolitiqueUnique(self.node,self.editor)
39         self.dict_bouton={}
40         self.determineChoix()
41         self.setValeursApresBouton()
42         self.parentQt.commandesLayout.insertWidget(-1,self)
43         self.AAfficher=self.radioButton_1
44         self.maCommande.listeAffichageWidget.append(self.radioButton_1)
45
46
47   def setValeursApresBouton(self):
48       if self.objSimp.get_valeur()==None : return
49       valeur=self.objSimp.get_valeur()
50       if not(type(valeur) in types.StringTypes) : valeur=str(valeur)
51       try :
52         self.dict_bouton[valeur].setChecked(True)
53       except :
54         pass
55
56   def determineChoix(self):
57       self.horizontalLayout.setAlignment(Qt.AlignLeft)
58       i=1
59       j=len(self.maListeDeValeur)
60       if j > self.maxI : 
61          print "poumbadaboum"
62          return
63       while i < j+1 :
64          nomBouton="radioButton_"+str(i)
65          bouton=getattr(self,nomBouton)
66          valeur=self.maListeDeValeur[i-1]
67          if not(type(valeur) in types.StringTypes) : valeur=str(valeur)
68          bouton.setText(valeur)
69          self.dict_bouton[valeur]=bouton
70          self.connect(bouton,SIGNAL("clicked()"),self.boutonclic)
71          bouton.keyPressEvent=self.keyPressEvent
72          setattr(self,nomBouton,bouton)
73          i=i+1
74       while i < self.maxI +1 :
75          nomBouton="radioButton_"+str(i)
76          bouton=getattr(self,nomBouton)
77          bouton.close()
78          i=i+1
79
80   def boutonclic(self):
81       for valeur in self.dict_bouton.keys():
82           if self.dict_bouton[valeur].isChecked():
83              #print "dans boutonclic is checked", valeur, type(valeur)
84              SaisieValeur.LEValeurPressed(self,valeur)
85       self.reaffiche()
86
87
88   def keyPressEvent(self, event):
89     if event.key() == Qt.Key_Right : self.selectSuivant(); return
90     if event.key() == Qt.Key_Left  : self.selectPrecedent(); return
91     QWidget.keyPressEvent(self,event)
92
93   def selectSuivant(self):
94       aLeFocus=self.focusWidget()
95       nom=aLeFocus.objectName()[12:]
96       i=nom.toInt()[0]+1
97       if i ==  len(self.maListeDeValeur) +1 : i=1
98       nomBouton="radioButton_"+str(i)
99       courant=getattr(self,nomBouton)
100       courant.setFocus(True)
101
102   def selectPrecedent(self):
103       aLeFocus=self.focusWidget()
104       nom=aLeFocus.objectName()[12:]
105       i=nom.toInt()[0]-1
106       if i == 0 : i= len(self.maListeDeValeur)  
107       nomBouton="radioButton_"+str(i)
108       courant=getattr(self,nomBouton)
109       courant.setFocus(True)
110
111
112 class MonWidgetRadioButton (Ui_WidgetRadioButton,MonWidgetRadioButtonCommun):
113   def __init__(self,node,monSimpDef,nom,objSimp,parentQt,commande):
114         #print "MonWidgetRadioButton ", self
115         self.maListeDeValeur=monSimpDef.into
116         MonWidgetRadioButtonCommun.__init__(self,node,monSimpDef,nom,objSimp,parentQt,commande)
117         
118   def setMaxI(self):
119         self.maxI=3
120
121
122 class MonWidgetRadioButtonSD (Ui_WidgetRadioButton,MonWidgetRadioButtonCommun):
123
124   def __init__(self,node,monSimpDef,nom,objSimp,parentQt,commande):
125         #print "dans le init de MonWidgetRadioButtonSD",self
126         self.maListeDeValeur=node.item.get_sd_avant_du_bon_type()
127         MonWidgetRadioButtonCommun.__init__(self,node,monSimpDef,nom,objSimp,parentQt,commande)
128
129   def setMaxI(self):
130         self.maxI=3