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