Salome HOME
version 19 mars
[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.maCommande.listeAffichageWidget.append(self.radioButton_1)
44
45
46   def setValeursApresBouton(self):
47       if self.objSimp.get_valeur()==None : return
48       valeur=self.objSimp.get_valeur()
49       if not(type(valeur) in types.StringTypes) : valeur=str(valeur)
50       try :
51         self.dict_bouton[valeur].setChecked(True)
52       except :
53         pass
54
55   def determineChoix(self):
56       self.horizontalLayout.setAlignment(Qt.AlignLeft)
57       i=1
58       j=len(self.maListeDeValeur)
59       if j > self.maxI : 
60          print "poumbadaboum"
61          return
62       while i < j+1 :
63          nomBouton="radioButton_"+str(i)
64          bouton=getattr(self,nomBouton)
65          valeur=self.maListeDeValeur[i-1]
66          if not(type(valeur) in types.StringTypes) : valeur=str(valeur)
67          bouton.setText(valeur)
68          self.dict_bouton[valeur]=bouton
69          self.connect(bouton,SIGNAL("clicked()"),self.boutonclic)
70          bouton.keyPressEvent=self.keyPressEvent
71          setattr(self,nomBouton,bouton)
72          i=i+1
73       while i < self.maxI +1 :
74          nomBouton="radioButton_"+str(i)
75          bouton=getattr(self,nomBouton)
76          bouton.close()
77          i=i+1
78
79   def boutonclic(self):
80       for valeur in self.dict_bouton.keys():
81           if self.dict_bouton[valeur].isChecked():
82              #print "dans boutonclic is checked", valeur, type(valeur)
83              SaisieValeur.LEValeurPressed(self,valeur)
84       self.reaffiche()
85
86
87   def keyPressEvent(self, event):
88     if event.key() == Qt.Key_Right : self.selectSuivant(); return
89     if event.key() == Qt.Key_Left  : self.selectPrecedent(); return
90     QWidget.keyPressEvent(self,event)
91
92   def selectSuivant(self):
93       aLeFocus=self.focusWidget()
94       nom=aLeFocus.objectName()[12:]
95       i=nom.toInt()[0]+1
96       if i ==  len(self.maListeDeValeur) +1 : i=1
97       nomBouton="radioButton_"+str(i)
98       courant=getattr(self,nomBouton)
99       courant.setFocus(True)
100
101   def selectPrecedent(self):
102       aLeFocus=self.focusWidget()
103       nom=aLeFocus.objectName()[12:]
104       i=nom.toInt()[0]-1
105       if i == 0 : i= len(self.maListeDeValeur)  
106       nomBouton="radioButton_"+str(i)
107       courant=getattr(self,nomBouton)
108       courant.setFocus(True)
109
110
111 class MonWidgetRadioButton (Ui_WidgetRadioButton,MonWidgetRadioButtonCommun):
112   def __init__(self,node,monSimpDef,nom,objSimp,parentQt,commande):
113         #print "MonWidgetRadioButton ", self
114         self.maListeDeValeur=monSimpDef.into
115         MonWidgetRadioButtonCommun.__init__(self,node,monSimpDef,nom,objSimp,parentQt,commande)
116         
117   def setMaxI(self):
118         self.maxI=3
119
120
121 class MonWidgetRadioButtonSD (Ui_WidgetRadioButton,MonWidgetRadioButtonCommun):
122
123   def __init__(self,node,monSimpDef,nom,objSimp,parentQt,commande):
124         print "dans le init de MonWidgetRadioButtonSD",self
125         self.maListeDeValeur=node.item.get_sd_avant_du_bon_type()
126         MonWidgetRadioButtonCommun.__init__(self,node,monSimpDef,nom,objSimp,parentQt,commande)
127
128   def setMaxI(self):
129         self.maxI=3