]> SALOME platform Git repositories - modules/geom.git/blob - src/Tools/t_shape/t_shape_dialog.py
Salome HOME
ce60329948040cde34f06caae121dd522856c4ea
[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.doubleSpinBox_5.setEnabled(False)
38       self.ui.label_5.setEnabled(False)
39    
40     def accept(self):
41       self._wasOk = True
42       QtGui.QDialog.accept(self)
43       
44     def getData(self):
45       r1 = self.ui.doubleSpinBox.value()
46       r2 = self.ui.doubleSpinBox_2.value()
47       h1 = self.ui.doubleSpinBox_3.value()
48       h2 = self.ui.doubleSpinBox_4.value()
49       thickness = self.ui.doubleSpinBox_5.value()
50       
51       return r1, r2, h1, h2, thickness
52
53     def reject(self):
54         self._wasOk = False
55         QtGui.QDialog.reject(self)
56
57     def wasOk(self):
58         return self._wasOk
59
60      
61 # ================     
62 # Tests
63 # ================
64
65 def main( args ):
66     import sys
67     app = QtGui.QApplication(sys.argv)
68     Dialog = TShapeDialog()
69     ui = Ui_Dialog()
70     ui.setupUi(Dialog)
71     Dialog.show()
72     sys.exit(app.exec_())
73
74 if __name__=="__main__":
75     main(sys.argv)