Salome HOME
*** empty log message ***
[modules/geom.git] / src / GEOMBase / GEOMBase_aParameterDlg.h
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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File   : GEOMBase_aParameterDlg.h
23 // Author : Lucien PIGNOLONI
24 //
25
26 #ifndef GEOMBASE_APARAMETERDLG_H
27 #define GEOMBASE_APARAMETERDLG_H
28
29 #include "GEOM_GEOMBase.hxx"
30
31 #include <QDialog>
32
33 class QPushButton;
34 class QtxDoubleSpinBox;
35
36 //=================================================================================
37 // class    : GEOMBase_aParameterDlg
38 // purpose  :
39 //=================================================================================
40 class GEOMBASE_EXPORT GEOMBase_aParameterDlg : public QDialog
41
42     Q_OBJECT
43
44 public:
45     GEOMBase_aParameterDlg(const char* aValue1 = "25", const char* aTitle1 = "Value :", QWidget* parent = 0, const char* name = 0, bool modal = FALSE, Qt::WindowFlags fl = 0, const double bottom = -1E6, const double top = +1E6, const int decimals = 6);
46     ~GEOMBase_aParameterDlg();
47
48     void setValue(double val);
49     double getValue();
50
51 private:
52     QPushButton* myButtonOk;
53     QPushButton* myButtonCancel;
54     QtxDoubleSpinBox* mySpinBox;
55
56 };
57
58 #endif // GEOMBASE_APARAMETERDLG_H