]> SALOME platform Git repositories - tools/eficas.git/blob - InterfaceQT4/monWidgetRadioButton.py
Salome HOME
merge Nizhny
[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         self.dict_bouton[valeur].setFocus(True)
54       except :
55         pass
56
57   def determineChoix(self):
58       self.horizontalLayout.setAlignment(Qt.AlignLeft)
59       i=1
60       j=len(self.maListeDeValeur)
61       if j > self.maxI : 
62          print "poumbadaboum"
63          return
64       while i < j+1 :
65          nomBouton="radioButton_"+str(i)
66          bouton=getattr(self,nomBouton)
67          valeur=self.maListeDeValeur[i-1]
68          if not(type(valeur) in types.StringTypes) : valeur=str(valeur)
69          bouton.setText(tr(valeur))
70          self.dict_bouton[valeur]=bouton
71          self.connect(bouton,SIGNAL("clicked()"),self.boutonclic)
72          bouton.keyPressEvent=self.keyPressEvent
73          setattr(self,nomBouton,bouton)
74          i=i+1
75       while i < self.maxI +1 :
76          nomBouton="radioButton_"+str(i)
77          bouton=getattr(self,nomBouton)
78          bouton.close()
79          i=i+1
80
81   def boutonclic(self):
82       for valeur in self.dict_bouton.keys():
83           if self.dict_bouton[valeur].isChecked():
84              #print "dans boutonclic is checked", valeur, type(valeur)
85              SaisieValeur.LEValeurPressed(self,valeur)
86       self.reaffiche()
87
88
89   def keyPressEvent(self, event):
90     if event.key() == Qt.Key_Right : self.selectSuivant(); return
91     if event.key() == Qt.Key_Left  : self.selectPrecedent(); return
92     if event.key() == Qt.Key_Return or event.key() == Qt.Key_Space : self.checkFocused(); return
93     QWidget.keyPressEvent(self,event)
94
95   def selectSuivant(self):
96       aLeFocus=self.focusWidget()
97       nom=aLeFocus.objectName()[12:]
98       i=nom.toInt()[0]+1
99       if i ==  len(self.maListeDeValeur) +1 : i=1
100       nomBouton="radioButton_"+str(i)
101       courant=getattr(self,nomBouton)
102       courant.setFocus(True)
103
104   def selectPrecedent(self):
105       aLeFocus=self.focusWidget()
106       nom=aLeFocus.objectName()[12:]
107       i=nom.toInt()[0]-1
108       if i == 0 : i= len(self.maListeDeValeur)  
109       nomBouton="radioButton_"+str(i)
110       courant=getattr(self,nomBouton)
111       courant.setFocus(True)
112
113   def checkFocused(self):
114       aLeFocus=self.focusWidget()
115       nom=aLeFocus.objectName()[12:]
116       i=nom.toInt()[0]
117       if i > 0 and i <= len(self.maListeDeValeur):
118         nomBouton="radioButton_"+str(i)
119         courant=getattr(self,nomBouton)
120         if not courant.isChecked():
121           courant.setChecked(True)
122           self.boutonclic()
123
124
125 class MonWidgetRadioButton (Ui_WidgetRadioButton,MonWidgetRadioButtonCommun):
126   def __init__(self,node,monSimpDef,nom,objSimp,parentQt,commande):
127         #print "MonWidgetRadioButton ", self
128         self.maListeDeValeur=monSimpDef.into
129         MonWidgetRadioButtonCommun.__init__(self,node,monSimpDef,nom,objSimp,parentQt,commande)
130         
131   def setMaxI(self):
132         self.maxI=3
133
134
135 class MonWidgetRadioButtonSD (Ui_WidgetRadioButton,MonWidgetRadioButtonCommun):
136
137   def __init__(self,node,monSimpDef,nom,objSimp,parentQt,commande):
138         #print "dans le init de MonWidgetRadioButtonSD",self
139         self.maListeDeValeur=node.item.get_sd_avant_du_bon_type()
140         MonWidgetRadioButtonCommun.__init__(self,node,monSimpDef,nom,objSimp,parentQt,commande)
141
142   def setMaxI(self):
143         self.maxI=3