Salome HOME
remise en marche du plugin t_shape_fluid
[modules/geom.git] / src / Tools / t_shape / t_shape_dialog.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2010-2014  CEA/DEN, EDF R&D, OPEN CASCADE
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, or (at your option) any later version.
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 # Author : Renaud Nédélec (OpenCascade S.A.S)
21
22 import sys
23 from PyQt4 import QtGui
24 from PyQt4 import QtCore
25
26 from t_shape_dialog_ui import Ui_Dialog
27
28
29 class TShapeDialog(QtGui.QDialog):
30     def __init__(self):
31       QtGui.QDialog.__init__(self, None, QtCore.Qt.Tool)
32       # Set up the user interface from Designer.
33       self.ui = Ui_Dialog()
34       self.ui.setupUi(self)
35       self.show()
36       self._wasOk = False
37       self.ui.dsb_solidThickness.setEnabled(False)
38       self.ui.label_5.setEnabled(False)
39       self.ui.dsb_bigRadius.setValue(50.0)
40       self.ui.dsb_smallRadius.setValue(40.0)
41       self.ui.dsb_bigHeight.setValue(80.0)
42       self.ui.dsb_smallHeight.setValue(80.0)
43    
44     def accept(self):
45       self._wasOk = True
46       QtGui.QDialog.accept(self)
47       
48     def getData(self):
49       r1 = self.ui.dsb_bigRadius.value()
50       r2 = self.ui.dsb_smallRadius.value()
51       h1 = self.ui.dsb_bigHeight.value()
52       h2 = self.ui.dsb_smallHeight.value()
53       thickness = self.ui.dsb_solidThickness.value()
54       
55       return r1, r2, h1, h2, thickness
56
57     def reject(self):
58         self._wasOk = False
59         QtGui.QDialog.reject(self)
60
61     def wasOk(self):
62         return self._wasOk
63
64      
65 # ================     
66 # Tests
67 # ================
68
69 def main( args ):
70     import sys
71     app = QtGui.QApplication(sys.argv)
72     Dialog = TShapeDialog()
73     ui = Ui_Dialog()
74     ui.setupUi(Dialog)
75     Dialog.show()
76     sys.exit(app.exec_())
77
78 if __name__=="__main__":
79     main(sys.argv)