Salome HOME
Update copyright: 2016
[modules/geom.git] / src / Tools / t_shape / t_shape_progress.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2014-2016  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, 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 from salome.geom.t_shape import t_shape_builder
23 from PyQt4.QtGui import QProgressDialog
24 from PyQt4 import QtCore
25
26 class t_shape_progress(QProgressDialog):
27     _totSteps = 0
28     _nmaxSteps = 27
29     
30     def __init__(self, parent=None):
31       QProgressDialog.__init__(self, "t_shape fluid build", "stop", 0, self._nmaxSteps, parent, QtCore.Qt.Tool)
32       self.show()
33         
34     def run(self, activeStudy, r1, r2, h1, h2, thickness):
35       shape = t_shape_builder.build_shape(activeStudy, r1, r2, h1, h2, thickness, self)
36       self.setValue(self._nmaxSteps)
37       return shape
38       
39     def addSteps(self, nbSteps):
40       self._totSteps += nbSteps
41       self.setValue(self._totSteps)