]> SALOME platform Git repositories - modules/geom.git/blob - src/PrimitiveGUI/PrimitiveGUI_CylinderDlg.cxx
Salome HOME
Code refactoring
[modules/geom.git] / src / PrimitiveGUI / PrimitiveGUI_CylinderDlg.cxx
1 //  Copyright (C) 2007-2010  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
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : PrimitiveGUI_CylinderDlg.cxx
25 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
26 //
27 #include "PrimitiveGUI_CylinderDlg.h"
28
29 #include <DlgRef.h>
30 #include <GeometryGUI.h>
31 #include <GEOMBase.h>
32
33 #include <SUIT_Session.h>
34 #include <SUIT_ResourceMgr.h>
35 #include <SalomeApp_Application.h>
36 #include <LightApp_SelectionMgr.h>
37
38 // OCCT Includes
39 #include <TopoDS_Shape.hxx>
40 #include <TopoDS_Edge.hxx>
41 #include <TopoDS.hxx>
42 #include <TopExp.hxx>
43 #include <TColStd_IndexedMapOfInteger.hxx>
44 #include <TopTools_IndexedMapOfShape.hxx>
45
46 #include <GEOMImpl_Types.hxx>
47
48 //=================================================================================
49 // class    : PrimitiveGUI_CylinderDlg()
50 // purpose  : Constructs a PrimitiveGUI_CylinderDlg which is a child of 'parent', with the
51 //            name 'name' and widget flags set to 'f'.
52 //            The dialog will by default be modeless, unless you set 'modal' to
53 //            TRUE to construct a modal dialog.
54 //=================================================================================
55 PrimitiveGUI_CylinderDlg::PrimitiveGUI_CylinderDlg (GeometryGUI* theGeometryGUI, QWidget* parent,
56                                                     bool modal, Qt::WindowFlags fl)
57   : GEOMBase_Skeleton(theGeometryGUI, parent, modal, fl),
58     myInitial(true)
59 {
60   QPixmap image0 (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_DLG_CYLINDER_PV")));
61   QPixmap image1 (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_DLG_CYLINDER_DXYZ")));
62   QPixmap image2 (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_SELECT")));
63
64   setWindowTitle(tr("GEOM_CYLINDER_TITLE"));
65
66   /***************************************************************/
67   mainFrame()->GroupConstructors->setTitle(tr("GEOM_CYLINDER"));
68   mainFrame()->RadioButton1->setIcon(image0);
69   mainFrame()->RadioButton2->setIcon(image1);
70   mainFrame()->RadioButton3->setAttribute(Qt::WA_DeleteOnClose);
71   mainFrame()->RadioButton3->close();
72
73   GroupPoints = new DlgRef_2Sel2Spin(centralWidget());
74   GroupPoints->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
75   GroupPoints->TextLabel1->setText(tr("GEOM_BASE_POINT"));
76   GroupPoints->TextLabel2->setText(tr("GEOM_VECTOR"));
77   GroupPoints->TextLabel3->setText(tr("GEOM_RADIUS"));
78   GroupPoints->TextLabel4->setText(tr("GEOM_HEIGHT"));
79   GroupPoints->PushButton1->setIcon(image2);
80   GroupPoints->PushButton2->setIcon(image2);
81
82   GroupDimensions = new DlgRef_2Spin(centralWidget());
83   GroupDimensions->GroupBox1->setTitle(tr("GEOM_BOX_OBJ"));
84   GroupDimensions->TextLabel1->setText(tr("GEOM_RADIUS"));
85   GroupDimensions->TextLabel2->setText(tr("GEOM_HEIGHT"));
86
87   QVBoxLayout* layout = new QVBoxLayout(centralWidget());
88   layout->setMargin(0); layout->setSpacing(6);
89   layout->addWidget(GroupPoints);
90   layout->addWidget(GroupDimensions);
91   /***************************************************************/
92
93   setHelpFileName("create_cylinder_page.html");
94
95   Init();
96 }
97
98 //=================================================================================
99 // function : ~PrimitiveGUI_CylinderDlg()
100 // purpose  : Destroys the object and frees any allocated resources
101 //=================================================================================
102 PrimitiveGUI_CylinderDlg::~PrimitiveGUI_CylinderDlg()
103 {
104   // no need to delete child widgets, Qt does it all for us
105 }
106
107 //=================================================================================
108 // function : Init()
109 // purpose  :
110 //=================================================================================
111 void PrimitiveGUI_CylinderDlg::Init()
112 {
113   // Get setting of step value from file configuration
114   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
115   double step = resMgr->doubleValue("Geometry", "SettingsGeomStep", 100);
116
117   // min, max, step and decimals for spin boxes & initial values
118   initSpinBox(GroupPoints->SpinBox_DX, 0.00001, COORD_MAX, step, "length_precision" );
119   initSpinBox(GroupPoints->SpinBox_DY, 0.00001, COORD_MAX, step, "length_precision" );
120   initSpinBox(GroupDimensions->SpinBox_DX, 0.00001, COORD_MAX, step, "length_precision" );
121   initSpinBox(GroupDimensions->SpinBox_DY, 0.00001, COORD_MAX, step, "length_precision" );
122
123   // init variables
124   myEditCurrentArgument = GroupPoints->LineEdit1;
125   GroupPoints->LineEdit1->setReadOnly(true);
126   GroupPoints->LineEdit2->setReadOnly(true);
127
128   GroupPoints->LineEdit1->setText("");
129   GroupPoints->LineEdit2->setText("");
130   myPoint = myDir = GEOM::GEOM_Object::_nil();
131
132   double aRadius(100.0), aHeight(300.0);
133   GroupPoints->SpinBox_DX->setValue(aRadius);
134   GroupPoints->SpinBox_DY->setValue(aHeight);
135   GroupDimensions->SpinBox_DX->setValue(aRadius);
136   GroupDimensions->SpinBox_DY->setValue(aHeight);
137
138   // signals and slots connections
139   connect(buttonOk(),    SIGNAL(clicked()), this, SLOT(ClickOnOk()));
140   connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
141
142   connect(this,          SIGNAL(constructorsClicked(int)), this, SLOT(ConstructorsClicked(int)));
143
144   connect(GroupPoints->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
145   connect(GroupPoints->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
146
147   connect(GroupPoints->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
148   connect(GroupPoints->LineEdit2, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
149
150   connect(GroupPoints->SpinBox_DX,     SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
151   connect(GroupPoints->SpinBox_DY,     SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
152   connect(GroupDimensions->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
153   connect(GroupDimensions->SpinBox_DY, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
154
155   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), this, SLOT(SetDoubleSpinBoxStep(double)));
156
157   initName(tr("GEOM_CYLINDER"));
158
159   setConstructorId(1); // simplest constructor
160   ConstructorsClicked(1);
161 }
162
163 //=================================================================================
164 // function : SetDoubleSpinBoxStep()
165 // purpose  : Double spin box management
166 //=================================================================================
167 void PrimitiveGUI_CylinderDlg::SetDoubleSpinBoxStep (double step)
168 {
169   GroupPoints->SpinBox_DX->setSingleStep(step);
170   GroupPoints->SpinBox_DY->setSingleStep(step);
171   GroupDimensions->SpinBox_DX->setSingleStep(step);
172   GroupDimensions->SpinBox_DY->setSingleStep(step);
173 }
174
175 //=================================================================================
176 // function : ConstructorsClicked()
177 // purpose  : Radio button management
178 //=================================================================================
179 void PrimitiveGUI_CylinderDlg::ConstructorsClicked (int constructorId)
180 {
181   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
182
183   switch (constructorId) {
184   case 0:
185     {
186       GroupDimensions->hide();
187       GroupPoints->show();
188
189       GroupPoints->PushButton1->click();
190       break;
191     }
192   case 1:
193     {
194       GroupPoints->hide();
195       GroupDimensions->show();
196       disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
197       globalSelection(); // close local contexts, if any
198       break;
199     }
200   }
201
202   qApp->processEvents();
203   updateGeometry();
204   resize(minimumSizeHint());
205   SelectionIntoArgument();
206
207   displayPreview();
208 }
209
210 //=================================================================================
211 // function : ClickOnOk()
212 // purpose  :
213 //=================================================================================
214 void PrimitiveGUI_CylinderDlg::ClickOnOk()
215 {
216   if (ClickOnApply())
217     ClickOnCancel();
218 }
219
220 //=================================================================================
221 // function : ClickOnApply()
222 // purpose  :
223 //=================================================================================
224 bool PrimitiveGUI_CylinderDlg::ClickOnApply()
225 {
226   if (!onAccept())
227     return false;
228
229   initName();
230   // activate selection and connect selection manager
231   ConstructorsClicked(getConstructorId());
232   return true;
233 }
234
235 //=================================================================================
236 // function : SelectionIntoArgument()
237 // purpose  : Called when selection is changed or on dialog initialization or activation
238 //=================================================================================
239 void PrimitiveGUI_CylinderDlg::SelectionIntoArgument()
240 {
241   if (getConstructorId() != 0)
242     return;
243
244   erasePreview();
245   myEditCurrentArgument->setText("");
246
247   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
248   SALOME_ListIO aSelList;
249   aSelMgr->selectedObjects(aSelList);
250
251   if (aSelList.Extent() != 1) {
252     if (myEditCurrentArgument == GroupPoints->LineEdit1)
253       myPoint = GEOM::GEOM_Object::_nil();
254     else if (myEditCurrentArgument == GroupPoints->LineEdit2)
255       myDir = GEOM::GEOM_Object::_nil();
256     return;
257   }
258
259   // nbSel == 1
260   GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject( aSelList.First() );
261
262   if (CORBA::is_nil(aSelectedObject))
263     return;
264
265   QString aName = GEOMBase::GetName(aSelectedObject);
266
267   // Get Selected object if selected subshape
268   TopoDS_Shape aShape;
269   if (GEOMBase::GetShape(aSelectedObject, aShape, TopAbs_SHAPE) && !aShape.IsNull())
270   {
271     TopAbs_ShapeEnum aNeedType = TopAbs_VERTEX;
272     if (myEditCurrentArgument == GroupPoints->LineEdit2)
273       aNeedType = TopAbs_EDGE;
274
275     TColStd_IndexedMapOfInteger aMap;
276     aSelMgr->GetIndexes(aSelList.First(), aMap);
277     if (aMap.Extent() == 1) { // Local Selection
278       int anIndex = aMap(1);
279       if (aNeedType == TopAbs_EDGE)
280         aName.append(":edge_" + QString::number(anIndex));
281       else
282         aName.append(":vertex_" + QString::number(anIndex));
283
284       //Find SubShape Object in Father
285       GEOM::GEOM_Object_var aFindedObject = GEOMBase_Helper::findObjectInFather(aSelectedObject, aName);
286
287       if (aFindedObject->_is_nil()) { // Object not found in study
288         GEOM::GEOM_IShapesOperations_var aShapesOp =
289           getGeomEngine()->GetIShapesOperations(getStudyId());
290         aSelectedObject = aShapesOp->GetSubShape(aSelectedObject, anIndex);
291       }
292       else {
293         aSelectedObject = aFindedObject; // get Object from study
294       }
295     }
296     else { // Global Selection
297       if (aShape.ShapeType() != aNeedType) {
298         aSelectedObject = GEOM::GEOM_Object::_nil();
299         aName = "";
300       }
301     }
302   }
303
304   myEditCurrentArgument->setText(aName);
305
306   // clear selection
307   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
308   myGeomGUI->getApp()->selectionMgr()->clearSelected();
309   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
310           this, SLOT(SelectionIntoArgument()));
311
312   if (myEditCurrentArgument == GroupPoints->LineEdit1) {
313     myPoint = aSelectedObject;
314     if (!myPoint->_is_nil() && myDir->_is_nil())
315       GroupPoints->PushButton2->click();
316   }
317   else if (myEditCurrentArgument == GroupPoints->LineEdit2) {
318     myDir = aSelectedObject;
319     if (!myDir->_is_nil() && myPoint->_is_nil())
320       GroupPoints->PushButton1->click();
321   }
322
323   displayPreview();
324 }
325
326 //=================================================================================
327 // function : SetEditCurrentArgument()
328 // purpose  :
329 //=================================================================================
330 void PrimitiveGUI_CylinderDlg::SetEditCurrentArgument()
331 {
332   QPushButton* send = (QPushButton*)sender();
333
334   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
335   if (send == GroupPoints->PushButton1) {
336     myEditCurrentArgument = GroupPoints->LineEdit1;
337
338     GroupPoints->PushButton2->setDown(false);
339     GroupPoints->LineEdit2->setEnabled(false);
340
341     globalSelection(GEOM_POINT); // to break previous local selection
342     localSelection(GEOM::GEOM_Object::_nil(), TopAbs_VERTEX);
343   }
344   else if (send == GroupPoints->PushButton2) {
345     myEditCurrentArgument = GroupPoints->LineEdit2;
346
347     GroupPoints->PushButton1->setDown(false);
348     GroupPoints->LineEdit1->setEnabled(false);
349
350     globalSelection(GEOM_LINE);  // to break previous local selection
351     localSelection(GEOM::GEOM_Object::_nil(), TopAbs_EDGE);
352   }
353   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
354           this, SLOT(SelectionIntoArgument()));
355
356   // enable line edit
357   myEditCurrentArgument->setEnabled(true);
358   myEditCurrentArgument->setFocus();
359   // after setFocus(), because it will be setDown(false) when loses focus
360   send->setDown(true);
361
362   // seems we need it only to avoid preview disappearing, caused by selection mode change
363   displayPreview();
364 }
365
366 //=================================================================================
367 // function : LineEditReturnPressed()
368 // purpose  :
369 //=================================================================================
370 void PrimitiveGUI_CylinderDlg::LineEditReturnPressed()
371 {
372   QLineEdit* send = (QLineEdit*)sender();
373   if (send == GroupPoints->LineEdit1 ||
374       send == GroupPoints->LineEdit2) {
375     myEditCurrentArgument = send;
376     GEOMBase_Skeleton::LineEditReturnPressed();
377   }
378 }
379
380 //=================================================================================
381 // function : ActivateThisDialog()
382 // purpose  :
383 //=================================================================================
384 void PrimitiveGUI_CylinderDlg::ActivateThisDialog()
385 {
386   GEOMBase_Skeleton::ActivateThisDialog();
387
388   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
389            this, SLOT( SelectionIntoArgument() ) );
390
391   ConstructorsClicked( getConstructorId() );
392 }
393
394 //=================================================================================
395 // function : enterEvent()
396 // purpose  :
397 //=================================================================================
398 void PrimitiveGUI_CylinderDlg::enterEvent (QEvent*)
399 {
400   if (!mainFrame()->GroupConstructors->isEnabled())
401     ActivateThisDialog();
402 }
403
404 //=================================================================================
405 // function : ValueChangedInSpinBox()
406 // purpose  :
407 //=================================================================================
408 void PrimitiveGUI_CylinderDlg::ValueChangedInSpinBox()
409 {
410   displayPreview();
411 }
412
413 //=================================================================================
414 // function : createOperation
415 // purpose  :
416 //=================================================================================
417 GEOM::GEOM_IOperations_ptr PrimitiveGUI_CylinderDlg::createOperation()
418 {
419   return getGeomEngine()->GetI3DPrimOperations(getStudyId());
420 }
421
422 //=================================================================================
423 // function : isValid
424 // purpose  :
425 //=================================================================================
426 bool PrimitiveGUI_CylinderDlg::isValid (QString& msg)
427 {
428   bool ok = true;
429   if( getConstructorId() == 0 )
430   {
431     ok = GroupPoints->SpinBox_DX->isValid( msg, !IsPreview() ) && ok;
432     ok = GroupPoints->SpinBox_DY->isValid( msg, !IsPreview() ) && ok;
433   }
434   else if( getConstructorId() == 1 )
435   {
436     ok = GroupDimensions->SpinBox_DX->isValid( msg, !IsPreview() ) && ok;
437     ok = GroupDimensions->SpinBox_DY->isValid( msg, !IsPreview() ) && ok;
438   }
439   ok = fabs( getHeight() ) > Precision::Confusion() && ok;
440   return getConstructorId() == 0 ? !(myPoint->_is_nil() || myDir->_is_nil()) && ok : ok;
441 }
442
443 //=================================================================================
444 // function : execute
445 // purpose  :
446 //=================================================================================
447 bool PrimitiveGUI_CylinderDlg::execute (ObjectList& objects)
448 {
449   bool res = false;
450
451   GEOM::GEOM_Object_var anObj;
452
453   GEOM::GEOM_I3DPrimOperations_var anOper = GEOM::GEOM_I3DPrimOperations::_narrow(getOperation());
454
455   switch (getConstructorId()) {
456   case 0:
457     if (!CORBA::is_nil(myPoint) && !CORBA::is_nil(myDir)) {
458       anObj = anOper->MakeCylinderPntVecRH(myPoint, myDir, getRadius(), getHeight());
459       if (!anObj->_is_nil() && !IsPreview())
460       {
461         QStringList aParameters;
462         aParameters << GroupPoints->SpinBox_DX->text();
463         aParameters << GroupPoints->SpinBox_DY->text();
464         anObj->SetParameters(aParameters.join(":").toLatin1().constData());
465       }
466       res = true;
467     }
468     break;
469   case 1:
470     anObj = anOper->MakeCylinderRH(getRadius(), getHeight());
471     if (!anObj->_is_nil() && !IsPreview())
472     {
473       QStringList aParameters;
474       aParameters << GroupDimensions->SpinBox_DX->text();
475       aParameters << GroupDimensions->SpinBox_DY->text();
476       anObj->SetParameters(aParameters.join(":").toLatin1().constData());
477     }
478     res = true;
479     break;
480   }
481
482   if (!anObj->_is_nil())
483     objects.push_back(anObj._retn());
484
485   return res;
486 }
487
488 //=================================================================================
489 // function : getRadius()
490 // purpose  :
491 //=================================================================================
492 double PrimitiveGUI_CylinderDlg::getRadius() const
493 {
494   int aConstructorId = getConstructorId();
495   if (aConstructorId == 0)
496     return GroupPoints->SpinBox_DX->value();
497   else if (aConstructorId == 1)
498     return GroupDimensions->SpinBox_DX->value();
499   return 0;
500 }
501
502 //=================================================================================
503 // function : getHeight()
504 // purpose  :
505 //=================================================================================
506 double PrimitiveGUI_CylinderDlg::getHeight() const
507 {
508   int aConstructorId = getConstructorId();
509   if (aConstructorId == 0)
510     return GroupPoints->SpinBox_DY->value();
511   else if (aConstructorId == 1)
512     return GroupDimensions->SpinBox_DY->value();
513   return 0;
514 }
515
516 //=================================================================================
517 // function : addSubshapeToStudy
518 // purpose  : virtual method to add new SubObjects if local selection
519 //=================================================================================
520 void PrimitiveGUI_CylinderDlg::addSubshapesToStudy()
521 {
522   QMap<QString, GEOM::GEOM_Object_var> objMap;
523
524   switch (getConstructorId()) {
525   case 0:
526     objMap[GroupPoints->LineEdit1->text()] = myPoint;
527     objMap[GroupPoints->LineEdit2->text()] = myDir;
528     break;
529   case 1:
530     return;
531   }
532   addSubshapesToFather(objMap);
533 }