Salome HOME
NRI : 1_3_0 version.
[modules/geom.git] / src / GEOMGUI / GeometryGUI_SpinBox.cxx
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : GeometryGUI_SpinBox.cxx
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 using namespace std;
30 #include "GeometryGUI_SpinBox.h"
31 #include "GeometryGUI.h"
32 #include <qvalidator.h>
33 //#include <qpushbutton.h>
34 //#include "utilities.h"
35
36 //=================================================================================
37 // class    : GeometryGUI_SpinBox()
38 // purpose  : constructor of specific widget accepting floats in double precision.
39 //=================================================================================
40 GeometryGUI_SpinBox::GeometryGUI_SpinBox( QWidget* parent, const char* name )
41 : QAD_SpinBoxDbl( parent, name)
42 {
43   /* when step value is changed in myGeomGUI */
44   connect( GeometryGUI::GetGeometryGUI(), SIGNAL( SignalDefaultStepValueChanged( double )), this, SLOT( SetStep( double ) ) );
45 }
46
47
48 //=================================================================================
49 // function : SetStep()  [SLOT]
50 // purpose  :
51 //=================================================================================
52 void GeometryGUI_SpinBox::SetStep( double newStep )
53 {
54   setLineStep( newStep );
55 }
56
57 //=================================================================================
58 // function : ~GeometryGUI_SpinBox()
59 // purpose  : destructor
60 //=================================================================================
61 GeometryGUI_SpinBox::~GeometryGUI_SpinBox()
62 {
63 }
64
65 //=================================================================================
66 // function : SetValue()
67 // purpose  :
68 //=================================================================================
69 void GeometryGUI_SpinBox::SetValue( double v )
70 {
71   setValue( v );
72 }
73
74 //=================================================================================
75 // function : GetValue()
76 // purpose  : returns a double
77 //=================================================================================
78 double GeometryGUI_SpinBox::GetValue( )
79 {
80   return value();
81 }
82
83 //=================================================================================
84 // function : GetString()
85 // purpose  : returns a QString
86 //=================================================================================
87 QString GeometryGUI_SpinBox::GetString( )
88 {
89   return cleanText();
90 }
91
92 //=================================================================================
93 // function : RangeStepAndValidator()
94 // purpose  :
95 //=================================================================================
96 void GeometryGUI_SpinBox::RangeStepAndValidator( double min, double max, double step, unsigned short decimals )
97 {
98   setRange( min, max );
99   setLineStep( step );
100   ( ( QDoubleValidator* )validator() )->setRange( min, max, decimals ) ;
101 }