Salome HOME
Merge from BR_WIN_INDUS_514 04/10/2010
[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   Standard_Boolean testResult = Standard_False;
252   GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject(aSelList.First(), testResult);
253
254   if (!testResult || CORBA::is_nil(aSelectedObject))
255     return;
256
257   QString aName = GEOMBase::GetName(aSelectedObject);
258
259   // Get Selected object if selected subshape
260   TopoDS_Shape aShape;
261   if (GEOMBase::GetShape(aSelectedObject, aShape, TopAbs_SHAPE) && !aShape.IsNull())
262   {
263     TColStd_IndexedMapOfInteger aMap;
264     aSelMgr->GetIndexes(aSelList.First(), aMap);
265     if (aMap.Extent() == 1) // Local Selection
266     {
267       int anIndex = aMap(1);
268       aName.append(":vertex_" + QString::number(anIndex));        
269
270       //Find SubShape Object in Father
271       GEOM::GEOM_Object_var aFindedObject = GEOMBase_Helper::findObjectInFather(aSelectedObject, aName);
272
273       if (aFindedObject->_is_nil()) { // Object not found in study
274         GEOM::GEOM_IShapesOperations_var aShapesOp =
275           getGeomEngine()->GetIShapesOperations(getStudyId());
276         aSelectedObject = aShapesOp->GetSubShape(aSelectedObject, anIndex);
277       }
278       else {
279         aSelectedObject = aFindedObject; // get Object from study        
280       }
281     }
282     else // Global Selection
283     {
284       if (aShape.ShapeType() != TopAbs_VERTEX) {
285         aSelectedObject = GEOM::GEOM_Object::_nil();
286         aName = "";
287       }
288     }
289   }
290
291   myEditCurrentArgument->setText(aName);
292
293   // clear selection
294   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
295   myGeomGUI->getApp()->selectionMgr()->clearSelected();
296   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
297           this, SLOT(SelectionIntoArgument()));
298
299   if (myEditCurrentArgument == GroupPoints->LineEdit1) {
300     myPoint1 = aSelectedObject;
301     if (!myPoint1->_is_nil() && myPoint2->_is_nil())
302       GroupPoints->PushButton2->click();
303   }
304   else if (myEditCurrentArgument == GroupPoints->LineEdit2) {
305     myPoint2 = aSelectedObject;
306     if (!myPoint2->_is_nil() && myPoint1->_is_nil())
307       GroupPoints->PushButton1->click();
308   }
309
310   displayPreview();
311 }
312
313 //=================================================================================
314 // function : SetEditCurrentArgument()
315 // purpose  :
316 //=================================================================================
317 void PrimitiveGUI_BoxDlg::SetEditCurrentArgument()
318 {
319   QPushButton* send = (QPushButton*)sender();
320
321   // ?? Commented, because we need this flag in ConstructorsClicked, because
322   // SelectionIntoArgument must be called only on dialog creation, and must not be called on
323   // simple switch between constructors (as we need to keep old values in fields in this case)
324
325   // clear selection
326   //disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
327
328   if (send == GroupPoints->PushButton1) {
329     myEditCurrentArgument = GroupPoints->LineEdit1;
330     GroupPoints->PushButton2->setDown(false);
331     GroupPoints->LineEdit2->setEnabled(false);
332   }
333   else if (send == GroupPoints->PushButton2) {
334     myEditCurrentArgument = GroupPoints->LineEdit2;
335     GroupPoints->PushButton1->setDown(false);
336     GroupPoints->LineEdit1->setEnabled(false);
337   }
338
339   // enable line edit
340   myEditCurrentArgument->setEnabled(true);
341   myEditCurrentArgument->setFocus();
342   // after setFocus(), because it will be setDown(false) when loses focus
343   send->setDown(true);
344
345   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
346   globalSelection(); // close local contexts, if any
347   localSelection(GEOM::GEOM_Object::_nil(), TopAbs_VERTEX);
348   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
349           this, SLOT(SelectionIntoArgument()));
350
351   // seems we need it only to avoid preview disappearing, caused by selection mode change
352   displayPreview();
353 }
354
355 //=================================================================================
356 // function : LineEditReturnPressed()
357 // purpose  :
358 //=================================================================================
359 void PrimitiveGUI_BoxDlg::LineEditReturnPressed()
360 {
361   QLineEdit* send = (QLineEdit*)sender();
362   if (send == GroupPoints->LineEdit1 || send == GroupPoints->LineEdit2) {
363     myEditCurrentArgument = send;
364     GEOMBase_Skeleton::LineEditReturnPressed();
365   }
366 }
367
368 //=================================================================================
369 // function : ActivateThisDialog()
370 // purpose  :
371 //=================================================================================
372 void PrimitiveGUI_BoxDlg::ActivateThisDialog()
373 {
374   GEOMBase_Skeleton::ActivateThisDialog();
375   if (getConstructorId() == 0) {
376     localSelection(GEOM::GEOM_Object::_nil(), TopAbs_VERTEX);
377     connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
378             this, SLOT(SelectionIntoArgument()));
379   }
380   displayPreview();
381 }
382
383 //=================================================================================
384 // function : enterEvent [REDEFINED]
385 // purpose  :
386 //=================================================================================
387 void PrimitiveGUI_BoxDlg::enterEvent (QEvent*)
388 {
389   if (!mainFrame()->GroupConstructors->isEnabled())
390     ActivateThisDialog();
391 }
392
393 //=================================================================================
394 // function : ValueChangedInSpinBox()
395 // purpose  :
396 //=================================================================================
397 void PrimitiveGUI_BoxDlg::ValueChangedInSpinBox()
398 {
399   displayPreview();
400 }
401
402 //=================================================================================
403 // function : createOperation
404 // purpose  :
405 //=================================================================================
406 GEOM::GEOM_IOperations_ptr PrimitiveGUI_BoxDlg::createOperation()
407 {
408   return getGeomEngine()->GetI3DPrimOperations(getStudyId());
409 }
410
411 //=================================================================================
412 // function : isValid
413 // purpose  :
414 //=================================================================================
415 bool PrimitiveGUI_BoxDlg::isValid (QString& msg)
416 {
417   bool ok = true;
418   if( getConstructorId() == 1 )
419   {
420     ok = GroupDimensions->SpinBox_DX->isValid( msg, !IsPreview() ) && ok;
421     ok = GroupDimensions->SpinBox_DY->isValid( msg, !IsPreview() ) && ok;
422     ok = GroupDimensions->SpinBox_DZ->isValid( msg, !IsPreview() ) && ok;
423
424     ok = fabs( GroupDimensions->SpinBox_DX->value() ) > Precision::Confusion() && ok;
425     ok = fabs( GroupDimensions->SpinBox_DY->value() ) > Precision::Confusion() && ok;
426     ok = fabs( GroupDimensions->SpinBox_DZ->value() ) > Precision::Confusion() && ok;
427   }
428   return getConstructorId() == 0 ? !(myPoint1->_is_nil() || myPoint2->_is_nil()) : ok;
429 }
430
431 //=================================================================================
432 // function : execute
433 // purpose  :
434 //=================================================================================
435 bool PrimitiveGUI_BoxDlg::execute (ObjectList& objects)
436 {
437   bool res = false;
438
439   GEOM::GEOM_Object_var anObj;
440
441   GEOM::GEOM_I3DPrimOperations_var anOper = GEOM::GEOM_I3DPrimOperations::_narrow(getOperation());
442   
443   switch (getConstructorId()) {
444   case 0:
445     {
446       if (!CORBA::is_nil(myPoint1) && !CORBA::is_nil(myPoint2)) {
447         anObj = anOper->MakeBoxTwoPnt(myPoint1, myPoint2);
448         res = true;
449       }
450     }
451     break;
452   case 1:
453     {
454       double x = GroupDimensions->SpinBox_DX->value();
455       double y = GroupDimensions->SpinBox_DY->value();
456       double z = GroupDimensions->SpinBox_DZ->value();
457
458       anObj = anOper->MakeBoxDXDYDZ(x, y, z);
459       if (!anObj->_is_nil() && !IsPreview())
460       {
461         QStringList aParameters;
462         aParameters << GroupDimensions->SpinBox_DX->text();
463         aParameters << GroupDimensions->SpinBox_DY->text();
464         aParameters << GroupDimensions->SpinBox_DZ->text();
465         anObj->SetParameters(aParameters.join(":").toLatin1().constData());
466       }
467       res = true;
468     }
469     break;
470   }
471
472   if (!anObj->_is_nil())
473     objects.push_back(anObj._retn());
474
475   return res;
476 }
477
478 //=================================================================================
479 // function : addSubshapesToStudy
480 // purpose  : virtual method to add new SubObjects if local selection
481 //=================================================================================
482 void PrimitiveGUI_BoxDlg::addSubshapesToStudy()
483 {
484   if (getConstructorId() == 0) {
485     QMap<QString, GEOM::GEOM_Object_var> objMap;
486     objMap[GroupPoints->LineEdit1->text()] = myPoint1;
487     objMap[GroupPoints->LineEdit2->text()] = myPoint2;
488     addSubshapesToFather(objMap);
489   }
490 }