Salome HOME
some cleaning and update of the dialog box
[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    
38     def accept(self):
39       self._wasOk = True
40       QtGui.QDialog.accept(self)
41       
42     def getData(self):
43       r1 = self.ui.doubleSpinBox.value()
44       r2 = self.ui.doubleSpinBox_2.value()
45       h1 = self.ui.doubleSpinBox_3.value()
46       h2 = self.ui.doubleSpinBox_4.value()
47       thickness = self.ui.doubleSpinBox_5.value()
48       
49       return r1, r2, h1, h2, thickness
50
51     def reject(self):
52         self._wasOk = False
53         QtGui.QDialog.reject(self)
54
55     def wasOk(self):
56         return self._wasOk
57
58      
59 # ================     
60 # Tests
61 # ================
62
63 def main( args ):
64     import sys
65     app = QtGui.QApplication(sys.argv)
66     Dialog = TShapeDialog()
67     ui = Ui_Dialog()
68     ui.setupUi(Dialog)
69     Dialog.show()
70     sys.exit(app.exec_())
71
72 if __name__=="__main__":
73     main(sys.argv)