]> SALOME platform Git repositories - modules/geom.git/blob - src/Tools/t_shape_dialog.py
Salome HOME
first fully working version, not optimised though
[modules/geom.git] / src / Tools / 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       
48       return r1, r2, h1, h2
49
50     def reject(self):
51         self._wasOk = False
52         QtGui.QDialog.reject(self)
53
54     def wasOk(self):
55         return self._wasOk
56
57      
58 # ================     
59 # Tests
60 # ================
61
62 def main( args ):
63     import sys
64     app = QtGui.QApplication(sys.argv)
65     Dialog = TShapeDialog()
66     ui = Ui_Dialog()
67     ui.setupUi(Dialog)
68     Dialog.show()
69     sys.exit(app.exec_())
70
71 if __name__=="__main__":
72     main(sys.argv)