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