]> SALOME platform Git repositories - modules/geom.git/blob - src/AdvancedGUI/AdvancedGUI_DividedCylinderDlg.cxx
Salome HOME
tiny fix
[modules/geom.git] / src / AdvancedGUI / AdvancedGUI_DividedCylinderDlg.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 #include "AdvancedGUI_DividedCylinderDlg.h"
23
24 #include <DlgRef.h>
25 #include <GeometryGUI.h>
26 #include <GEOMBase.h>
27
28 #include <SUIT_Session.h>
29 #include <SUIT_ResourceMgr.h>
30 #include <SalomeApp_Application.h>
31 #include <LightApp_SelectionMgr.h>
32
33 // OCCT Includes
34 #include <TopoDS_Shape.hxx>
35 #include <TopoDS.hxx>
36 #include <TopExp.hxx>
37 #include <TColStd_IndexedMapOfInteger.hxx>
38 #include <TopTools_IndexedMapOfShape.hxx>
39
40 #include <GEOMImpl_Types.hxx>
41
42 //=================================================================================
43 // Constructor
44 //=================================================================================
45 AdvancedGUI_DividedCylinderDlg::AdvancedGUI_DividedCylinderDlg (GeometryGUI* theGeometryGUI, QWidget* parent)
46   : GEOMBase_Skeleton(theGeometryGUI, parent, false)
47 {
48   QPixmap imageOp  (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_DLG_DIVIDEDCYLINDER_R_H")));
49   QPixmap imageSel (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_SELECT")));
50
51   setWindowTitle(tr("GEOM_DIVIDEDCYLINDER_TITLE"));
52
53   /***************************************************************/
54   mainFrame()->GroupConstructors->setTitle(tr("GEOM_DIVIDEDCYLINDER"));
55   mainFrame()->RadioButton1->setIcon(imageOp);
56   mainFrame()->RadioButton2->setAttribute(Qt::WA_DeleteOnClose);
57   mainFrame()->RadioButton2->close();
58   mainFrame()->RadioButton3->setAttribute(Qt::WA_DeleteOnClose);
59   mainFrame()->RadioButton3->close();
60
61   GroupParams = new DlgRef_2Spin(centralWidget());
62
63   QVBoxLayout* layout = new QVBoxLayout(centralWidget());
64   layout->setMargin(0); layout->setSpacing(6);
65   layout->addWidget(GroupParams);
66   /***************************************************************/
67
68   setHelpFileName("create_dividedcylinder_page.html");
69
70   Init();
71 }
72
73 //=================================================================================
74 // Destructor
75 //=================================================================================
76 AdvancedGUI_DividedCylinderDlg::~AdvancedGUI_DividedCylinderDlg()
77 {
78   // no need to delete child widgets, Qt does it all for us
79 }
80
81 //=================================================================================
82 // function : Init()
83 // purpose  :
84 //=================================================================================
85 void AdvancedGUI_DividedCylinderDlg::Init()
86 {
87   // Get setting of step value from file configuration
88   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
89   double step = resMgr->doubleValue("Geometry", "SettingsGeomStep", 100);
90
91   // min, max, step and decimals for spin boxes & initial values
92   initSpinBox(GroupParams->SpinBox_DX, 0.00001, COORD_MAX, step, "length_precision" );
93   initSpinBox(GroupParams->SpinBox_DY, 0.00001, COORD_MAX, step, "length_precision" );
94   
95   // init variables
96   double aRadius = 100;
97   double aHeight = 300;
98   GroupParams->SpinBox_DX->setValue(aRadius);
99   GroupParams->SpinBox_DY->setValue(aHeight);
100
101   // Signal/slot connections
102   connect(buttonOk(),    SIGNAL(clicked()), this, SLOT(ClickOnOk()));
103   connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
104   connect(myGeomGUI,     SIGNAL(SignalDefaultStepValueChanged(double)),
105           this,          SLOT(SetDoubleSpinBoxStep(double)));
106   
107   connect(GroupParams->SpinBox_DX,     SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
108   connect(GroupParams->SpinBox_DY,     SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
109
110   initName(tr("GEOM_DIVIDEDCYLINDER"));
111   
112   resize(minimumSizeHint());
113   displayPreview(true);
114 }
115
116 //=================================================================================
117 // function : SetDoubleSpinBoxStep()
118 // purpose  : Double spin box management
119 //=================================================================================
120 void AdvancedGUI_DividedCylinderDlg::SetDoubleSpinBoxStep (double step)
121 {
122   //@@ set double spin box step for all spin boxes here @@//
123 }
124
125 //=================================================================================
126 // function : ClickOnOk()
127 // purpose  :
128 //=================================================================================
129 void AdvancedGUI_DividedCylinderDlg::ClickOnOk()
130 {
131   if (ClickOnApply())
132     ClickOnCancel();
133 }
134
135 //=================================================================================
136 // function : ClickOnApply()
137 // purpose  :
138 //=================================================================================
139 bool AdvancedGUI_DividedCylinderDlg::ClickOnApply()
140 {
141   if (!onAccept())
142     return false;
143
144   initName();
145
146   return true;
147 }
148
149 //=================================================================================
150 // function : ActivateThisDialog()
151 // purpose  :
152 //=================================================================================
153 void AdvancedGUI_DividedCylinderDlg::ActivateThisDialog()
154 {
155   GEOMBase_Skeleton::ActivateThisDialog();
156   displayPreview(true);
157 }
158
159 //=================================================================================
160 // function : enterEvent [REDEFINED]
161 // purpose  :
162 //=================================================================================
163 void AdvancedGUI_DividedCylinderDlg::enterEvent (QEvent*)
164 {
165   if (!mainFrame()->GroupConstructors->isEnabled())
166     ActivateThisDialog();
167 }
168
169 //=================================================================================
170 // function : ValueChangedInSpinBox()
171 // purpose  :
172 //=================================================================================
173 void AdvancedGUI_DividedCylinderDlg::ValueChangedInSpinBox()
174 {
175   //@@ connect custom spin boxes or other widget to this slot in the Init() method for automatic preview update @@//
176   displayPreview(true);
177 }
178
179 //=================================================================================
180 // function : createOperation
181 // purpose  :
182 //=================================================================================
183 GEOM::GEOM_IOperations_ptr AdvancedGUI_DividedCylinderDlg::createOperation()
184 {
185   return getGeomEngine()->GetIAdvancedOperations(getStudyId());
186 }
187
188 //=================================================================================
189 // function : isValid
190 // purpose  :
191 //=================================================================================
192 bool AdvancedGUI_DividedCylinderDlg::isValid (QString& msg)
193 {
194   bool ok = true;
195
196   //@@ add custom validation actions here @@//
197
198   return ok;
199 }
200
201 //=================================================================================
202 // function : execute
203 // purpose  :
204 //=================================================================================
205 bool AdvancedGUI_DividedCylinderDlg::execute (ObjectList& objects)
206 {
207   bool res = false;
208
209   GEOM::GEOM_Object_var anObj;
210
211   GEOM::GEOM_IAdvancedOperations_var anOper = GEOM::GEOM_IAdvancedOperations::_narrow(getOperation());
212
213   //@@ retrieve input values from the widgets here @@//
214   CORBA::Double theR = GroupParams->SpinBox_DX->value();
215   CORBA::Double theH = GroupParams->SpinBox_DY->value();
216
217   // call engine function
218   anObj = anOper->MakeDividedCylinder(theR, theH);
219   res = !anObj->_is_nil();
220   if (res && !IsPreview())
221   {
222     QStringList aParameters;
223     aParameters << GroupParams->SpinBox_DX->text(); // R parameter
224     aParameters << GroupParams->SpinBox_DY->text(); // H parameter
225     if ( aParameters.count() > 0 ) anObj->SetParameters(aParameters.join(":").toLatin1().constData());
226   }
227   
228   if (res)
229     objects.push_back(anObj._retn());
230
231   return res;
232 }