Salome HOME
7abd0bef96e36fd5e7eb3cd20b20d0b651494c62
[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   displayPreview(true);
112 }
113
114 //=================================================================================
115 // function : SetDoubleSpinBoxStep()
116 // purpose  : Double spin box management
117 //=================================================================================
118 void AdvancedGUI_DividedCylinderDlg::SetDoubleSpinBoxStep (double step)
119 {
120   //@@ set double spin box step for all spin boxes here @@//
121 }
122
123 //=================================================================================
124 // function : ClickOnOk()
125 // purpose  :
126 //=================================================================================
127 void AdvancedGUI_DividedCylinderDlg::ClickOnOk()
128 {
129   if (ClickOnApply())
130     ClickOnCancel();
131 }
132
133 //=================================================================================
134 // function : ClickOnApply()
135 // purpose  :
136 //=================================================================================
137 bool AdvancedGUI_DividedCylinderDlg::ClickOnApply()
138 {
139   if (!onAccept())
140     return false;
141
142   initName();
143
144   return true;
145 }
146
147 //=================================================================================
148 // function : ActivateThisDialog()
149 // purpose  :
150 //=================================================================================
151 void AdvancedGUI_DividedCylinderDlg::ActivateThisDialog()
152 {
153   GEOMBase_Skeleton::ActivateThisDialog();
154   displayPreview(true);
155 }
156
157 //=================================================================================
158 // function : enterEvent [REDEFINED]
159 // purpose  :
160 //=================================================================================
161 void AdvancedGUI_DividedCylinderDlg::enterEvent (QEvent*)
162 {
163   if (!mainFrame()->GroupConstructors->isEnabled())
164     ActivateThisDialog();
165 }
166
167 //=================================================================================
168 // function : ValueChangedInSpinBox()
169 // purpose  :
170 //=================================================================================
171 void AdvancedGUI_DividedCylinderDlg::ValueChangedInSpinBox()
172 {
173   //@@ connect custom spin boxes or other widget to this slot in the Init() method for automatic preview update @@//
174   displayPreview(true);
175 }
176
177 //=================================================================================
178 // function : createOperation
179 // purpose  :
180 //=================================================================================
181 GEOM::GEOM_IOperations_ptr AdvancedGUI_DividedCylinderDlg::createOperation()
182 {
183   return getGeomEngine()->GetIAdvancedOperations(getStudyId());
184 }
185
186 //=================================================================================
187 // function : isValid
188 // purpose  :
189 //=================================================================================
190 bool AdvancedGUI_DividedCylinderDlg::isValid (QString& msg)
191 {
192   bool ok = true;
193
194   //@@ add custom validation actions here @@//
195
196   return ok;
197 }
198
199 //=================================================================================
200 // function : execute
201 // purpose  :
202 //=================================================================================
203 bool AdvancedGUI_DividedCylinderDlg::execute (ObjectList& objects)
204 {
205   bool res = false;
206
207   GEOM::GEOM_Object_var anObj;
208
209   GEOM::GEOM_IAdvancedOperations_var anOper = GEOM::GEOM_IAdvancedOperations::_narrow(getOperation());
210
211   //@@ retrieve input values from the widgets here @@//
212   CORBA::Double theR = GroupParams->SpinBox_DX->value();
213   CORBA::Double theH = GroupParams->SpinBox_DY->value();
214
215   // call engine function
216   anObj = anOper->MakeDividedCylinder(theR, theH);
217   res = !anObj->_is_nil();
218   if (res && !IsPreview())
219   {
220     QStringList aParameters;
221     aParameters << GroupParams->SpinBox_DX->text(); // R parameter
222     aParameters << GroupParams->SpinBox_DY->text(); // H parameter
223     if ( aParameters.count() > 0 ) anObj->SetParameters(aParameters.join(":").toLatin1().constData());
224   }
225   
226   if (res)
227     objects.push_back(anObj._retn());
228
229   return res;
230 }