Salome HOME
8f7b8779718af84733c88ece47d38cfe15566a52
[modules/geom.git] / src / GEOMBase / GEOMBase_aParameterDlg.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   : GEOMBase_aParameterDlg.cxx
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 using namespace std;
30 #include "GEOMBase_aParameterDlg.h"
31 #include "QAD_SpinBoxDbl.h"
32 #include "QAD_Tools.h"
33
34 #include <stdio.h>
35
36 #include <qgroupbox.h>
37 #include <qlabel.h>
38 #include <qpushbutton.h>
39 #include <qlayout.h>
40 #include <qvariant.h>
41 #include <qvalidator.h>
42
43 //====================================================================================== 
44 // function : GEOMBase_aParameterDlg()
45 // purpose  : Constructs a GEOMBase_aParametertDlg which is a child of 'parent', with the 
46 //            name 'name' and widget flags set to 'f'
47 //
48 //  avalue1    : is a float or integer used as default value in edit line
49 //  aTitle1    : is the prompt for aValue1
50 //  aTitle     : is the title for the user in dialog box
51 //
52 //  bottom     : the minimal value to be entered
53 //  top        : the maximum value to be entered
54 //  decimals   : number of decimals to be entered
55 //
56 //  The dialog will by default be modeless, unless you set 'modal' to
57 //  TRUE to construct a modal dialog.
58 // 
59 //====================================================================================== 
60 GEOMBase_aParameterDlg::GEOMBase_aParameterDlg(const char *aValue1, const char *aTitle1, QWidget* parent, const char* name, bool modal, WFlags fl, const double bottom, const double top, const int decimals)
61   :QDialog( parent, name, modal, WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu)
62 {
63   if(!name)
64     setName( "MyParameterDialog" );
65   resize(288, 81); 
66   setCaption(name); /* appears on the title bar */
67   setSizeGripEnabled(TRUE);
68
69   QGridLayout* topLayout = new QGridLayout(this); 
70   topLayout->setSpacing(6);
71   topLayout->setMargin(11);
72
73   QGroupBox* mainGrp = new QGroupBox(this, "mainGrp");
74   mainGrp->setColumnLayout(0, Qt::Vertical);
75   mainGrp->layout()->setSpacing(0);
76   mainGrp->layout()->setMargin(0);
77   QGridLayout* mainGrpLayout = new QGridLayout(mainGrp->layout());
78   mainGrpLayout->setAlignment(Qt::AlignTop);
79   mainGrpLayout ->setSpacing(6);
80   mainGrpLayout->setMargin(11);
81   topLayout->addWidget(mainGrp, 0, 0);
82
83   /* aTitle1 : text prompt on left of edit line */
84   QLabel* TextLabel1 = new QLabel(mainGrp, "TextLabel1");
85   TextLabel1->setText(tr(aTitle1));  
86   mainGrpLayout->addWidget(TextLabel1, 0, 0);
87
88   mySpinBox = new QAD_SpinBoxDbl(mainGrp, "mySpinBox");
89   mySpinBox->setPrecision(12);
90   mySpinBox->setRange(bottom, top);
91   ((QDoubleValidator*)(mySpinBox->validator()))->setRange(bottom, top, decimals);
92   mySpinBox->setValue(QString(aValue1).toDouble());
93   mainGrpLayout->addWidget(mySpinBox, 0, 1);
94   
95   QGroupBox* btnGrp = new QGroupBox(this, "btnGrp");
96   btnGrp->setColumnLayout(0, Qt::Vertical);
97   btnGrp->layout()->setSpacing(0);
98   btnGrp->layout()->setMargin(0);
99   QGridLayout* btnGrpLayout = new QGridLayout(btnGrp->layout());
100   btnGrpLayout->setAlignment(Qt::AlignTop);
101   btnGrpLayout->setSpacing(6);
102   btnGrpLayout->setMargin(11);
103   topLayout->addWidget(btnGrp, 1, 0);
104
105   /* Ok button */
106   myButtonOk = new QPushButton(btnGrp, "buttonOk");
107   myButtonOk->setText(tr("GEOM_BUT_OK"));
108   myButtonOk->setAutoDefault(TRUE);
109   myButtonOk->setDefault(TRUE);
110   btnGrpLayout->addWidget(myButtonOk, 0, 0);
111
112   btnGrpLayout->addItem(new QSpacerItem(5, 5, QSizePolicy::Expanding, QSizePolicy::Minimum), 0, 1);
113
114   /* Cancel button */
115   myButtonCancel = new QPushButton(btnGrp, "buttonCancel");
116   myButtonCancel->setText(tr("GEOM_BUT_CANCEL"));
117   myButtonCancel->setAutoDefault(TRUE);
118   btnGrpLayout->addWidget(myButtonCancel, 0, 2);
119
120   /* signals and slots connections */
121   connect(myButtonOk, SIGNAL(clicked()), this, SLOT(accept()));
122   connect(myButtonCancel, SIGNAL(clicked()), this, SLOT(reject()));
123   
124   /* Move widget on the botton right corner of main widget */
125   QAD_Tools::centerWidget(this, parent);
126 }
127
128
129 //====================================================================================== 
130 // function : ~GEOMBase_aParameterDlg() destructor
131 // purpose  : Destroys the object and frees any allocated resources
132 //====================================================================================== 
133 GEOMBase_aParameterDlg::~GEOMBase_aParameterDlg()
134 {
135   // no need to delete child widgets, Qt does it all for us
136 }
137
138
139 //====================================================================================== 
140 // function : GEOMBase_aParameterDlg::setValue
141 // purpose  : sets value
142 //====================================================================================== 
143 void GEOMBase_aParameterDlg::setValue(double val)
144 {
145   mySpinBox->setValue(val);
146 }
147
148
149 //====================================================================================== 
150 // function : GEOMBase_aParameterDlg::getValue
151 // purpose  : gets value
152 //====================================================================================== 
153 double GEOMBase_aParameterDlg::getValue()
154 {
155   return mySpinBox->value();
156 }