]> SALOME platform Git repositories - modules/geom.git/blob - src/BasicGUI/BasicGUI_VectorDlg.cxx
Salome HOME
NPAL 18378
[modules/geom.git] / src / BasicGUI / BasicGUI_VectorDlg.cxx
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  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 //
24 //  File   : BasicGUI_VectorDlg.cxx
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #include "BasicGUI_VectorDlg.h"
30
31 #include "SUIT_Desktop.h"
32 #include "SUIT_Session.h"
33 #include "SalomeApp_Application.h"
34 #include "LightApp_SelectionMgr.h"
35
36 #include <TopoDS_Shape.hxx>
37 #include <TopoDS.hxx>
38 #include <TopExp.hxx>
39 #include <TColStd_IndexedMapOfInteger.hxx>
40 #include <TopTools_IndexedMapOfShape.hxx>
41
42 #include <qlabel.h>
43
44 #include "GEOMImpl_Types.hxx"
45
46 #include "utilities.h"
47
48 using namespace std;
49
50 //=================================================================================
51 // class    : BasicGUI_VectorDlg()
52 // purpose  : Constructs a BasicGUI_VectorDlg which is a child of 'parent', with the 
53 //            name 'name' and widget flags set to 'f'.
54 //            The dialog will by default be modeless, unless you set 'modal' to
55 //            TRUE to construct a modal dialog.
56 //=================================================================================
57 BasicGUI_VectorDlg::BasicGUI_VectorDlg(GeometryGUI* theGeometryGUI, QWidget* parent,
58                                        const char* name, bool modal, WFlags fl)
59   :GEOMBase_Skeleton(theGeometryGUI, parent, name, modal, fl)
60 {
61   QPixmap image0(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_VECTOR_2P")));
62   QPixmap image1(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_VECTOR_DXYZ")));
63   QPixmap image2(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_SELECT")));
64
65   setCaption(tr("GEOM_VECTOR_TITLE"));
66
67   /***************************************************************/
68   GroupConstructors->setTitle(tr("GEOM_VECTOR"));
69   RadioButton1->setPixmap(image0);
70   RadioButton2->setPixmap(image1);
71   RadioButton3->close(TRUE);
72
73   GroupPoints = new DlgRef_2Sel_QTD(this, "GroupPoints");
74   GroupPoints->GroupBox1->setTitle(tr("GEOM_POINTS"));
75   GroupPoints->TextLabel1->setText(tr("GEOM_POINT_I").arg("1"));
76   GroupPoints->TextLabel2->setText(tr("GEOM_POINT_I").arg("2"));
77   GroupPoints->PushButton1->setPixmap(image2);
78   GroupPoints->PushButton2->setPixmap(image2);
79
80   GroupPoints->LineEdit1->setReadOnly( true );
81   GroupPoints->LineEdit2->setReadOnly( true );
82
83   GroupDimensions = new DlgRef_3Spin1Check(this, "GroupDimensions");
84   GroupDimensions->GroupBox1->setTitle(tr("GEOM_COORDINATES"));
85   GroupDimensions->TextLabel1->setText(tr("GEOM_DX"));
86   GroupDimensions->TextLabel2->setText(tr("GEOM_DY"));
87   GroupDimensions->TextLabel3->setText(tr("GEOM_DZ"));
88   GroupDimensions->CheckBox1->setText(tr("GEOM_REVERSE_VECTOR"));
89
90   Layout1->addWidget(GroupPoints, 2, 0);
91   Layout1->addWidget(GroupDimensions, 2, 0);
92   /***************************************************************/
93
94   setHelpFileName("vector.htm");
95   
96   /* Initialisations */
97   Init();
98 }
99
100
101 //=================================================================================
102 // function : ~BasicGUI_VectorDlg()
103 // purpose  : Destroys the object and frees any allocated resources
104 //=================================================================================
105 BasicGUI_VectorDlg::~BasicGUI_VectorDlg()
106 {  
107 }
108
109
110 //=================================================================================
111 // function : Init()
112 // purpose  :
113 //=================================================================================
114 void BasicGUI_VectorDlg::Init()
115 {
116     /* init variables */
117   myEditCurrentArgument = GroupPoints->LineEdit1;
118
119   myPoint1 = GEOM::GEOM_Object::_nil();
120   myPoint2 = GEOM::GEOM_Object::_nil();
121
122   /* Get setting of step value from file configuration */
123   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
124   double step = resMgr->doubleValue( "Geometry", "SettingsGeomStep", 100);
125  
126   /* min, max, step and decimals for spin boxes */
127   GroupDimensions->SpinBox_DX->RangeStepAndValidator(COORD_MIN, COORD_MAX, step, DBL_DIGITS_DISPLAY);
128   GroupDimensions->SpinBox_DY->RangeStepAndValidator(COORD_MIN, COORD_MAX, step, DBL_DIGITS_DISPLAY);
129   GroupDimensions->SpinBox_DZ->RangeStepAndValidator(COORD_MIN, COORD_MAX, step, DBL_DIGITS_DISPLAY);
130
131   double dx( 0. ), dy( 0. ), dz( 200. );
132   GroupDimensions->SpinBox_DX->SetValue( dx );
133   GroupDimensions->SpinBox_DY->SetValue( dy );
134   GroupDimensions->SpinBox_DZ->SetValue( dz );
135
136   GroupDimensions->CheckBox1->setChecked(FALSE);
137
138   /* signals and slots connections */
139   connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
140   connect(myGeomGUI, SIGNAL(SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
141   connect(myGeomGUI, SIGNAL(SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
142   
143   connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
144   connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
145   connect(GroupConstructors, SIGNAL(clicked(int)), this, SLOT(ConstructorsClicked(int)));
146
147   connect(GroupPoints->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
148   connect(GroupPoints->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
149
150   connect(GroupPoints->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
151   connect(GroupPoints->LineEdit2, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
152
153   connect(GroupDimensions->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
154   connect(GroupDimensions->SpinBox_DY, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
155   connect(GroupDimensions->SpinBox_DZ, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
156
157   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), GroupDimensions->SpinBox_DX, SLOT(SetStep(double)));
158   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), GroupDimensions->SpinBox_DY, SLOT(SetStep(double)));
159   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), GroupDimensions->SpinBox_DZ, SLOT(SetStep(double)));
160
161   connect(GroupDimensions->CheckBox1, SIGNAL(stateChanged(int)), this, SLOT(ReverseVector(int)));
162
163   connect(myGeomGUI->getApp()->selectionMgr(), 
164           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
165
166   initName( tr("GEOM_VECTOR") );
167
168   GroupDimensions->hide();
169   ConstructorsClicked( 0 );
170 }
171
172
173 //=================================================================================
174 // function : ConstructorsClicked()
175 // purpose  : Radio button management
176 //=================================================================================
177 void BasicGUI_VectorDlg::ConstructorsClicked( int constructorId )
178 {
179   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
180   myPoint1 = GEOM::GEOM_Object::_nil();
181   myPoint2 = GEOM::GEOM_Object::_nil();
182
183   switch (constructorId)
184   {
185     case 0:
186     {
187       GroupDimensions->hide();
188       resize(0, 0);
189       GroupPoints->show();
190
191       myEditCurrentArgument = GroupPoints->LineEdit1;
192       GroupPoints->LineEdit1->setText("");
193       GroupPoints->LineEdit2->setText("");
194
195       globalSelection(); // close local contexts, if any
196       localSelection(GEOM::GEOM_Object::_nil(), TopAbs_VERTEX);
197       connect(myGeomGUI->getApp()->selectionMgr(), 
198               SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
199       break;
200     }
201     case 1:
202     {
203       GroupPoints->hide();
204       resize( 0, 0 );
205       GroupDimensions->show();
206
207       double dx( 0. ), dy( 0. ), dz( 0. ); 
208       GroupDimensions->SpinBox_DX->SetValue( dx );
209       GroupDimensions->SpinBox_DY->SetValue( dy );
210       GroupDimensions->SpinBox_DZ->SetValue( dz );
211
212       GroupDimensions->CheckBox1->setChecked( FALSE );
213       break;
214     }
215   }
216
217   displayPreview();
218 }
219
220
221 //=================================================================================
222 // function : ClickOnOk()
223 // purpose  :
224 //=================================================================================
225 void BasicGUI_VectorDlg::ClickOnOk()
226 {
227   if ( ClickOnApply() )
228     ClickOnCancel();
229 }
230
231 //=======================================================================
232 // function : ClickOnCancel()
233 // purpose  :
234 //=======================================================================
235 void BasicGUI_VectorDlg::ClickOnCancel()
236 {
237   GEOMBase_Skeleton::ClickOnCancel();
238 }
239
240 //=================================================================================
241 // function : ClickOnApply()
242 // purpose  :
243 //=================================================================================
244 bool BasicGUI_VectorDlg::ClickOnApply()
245 {
246   buttonApply->setFocus();
247
248   if ( !onAccept() )
249     return false;
250
251   initName();
252   if ( getConstructorId() != 1 )
253         ConstructorsClicked( getConstructorId() );
254   return true;
255 }
256
257
258 //=================================================================================
259 // function : SelectionIntoArgument()
260 // purpose  : Called when selection as changed or other case
261 //=================================================================================
262 void BasicGUI_VectorDlg::SelectionIntoArgument()
263 {
264   myEditCurrentArgument->setText("");
265
266   if (IObjectCount() != 1) 
267   {
268     if (myEditCurrentArgument == GroupPoints->LineEdit1)
269       myPoint1 = GEOM::GEOM_Object::_nil();
270     else if (myEditCurrentArgument == GroupPoints->LineEdit2)
271       myPoint2 = GEOM::GEOM_Object::_nil();
272     return;
273   }
274
275   // nbSel == 1 
276   Standard_Boolean aRes = Standard_False;
277   GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject(firstIObject(), aRes);
278   if (!CORBA::is_nil(aSelectedObject) && aRes)
279   {
280     QString aName = GEOMBase::GetName(aSelectedObject);
281
282     TopoDS_Shape aShape;
283     if (GEOMBase::GetShape(aSelectedObject, aShape, TopAbs_SHAPE) && !aShape.IsNull())
284     {
285       LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
286       TColStd_IndexedMapOfInteger aMap;
287       aSelMgr->GetIndexes(firstIObject(), aMap);
288       if (aMap.Extent() == 1) // Local Selection
289       {
290
291         int anIndex = aMap(1);
292         aName += QString(":vertex_%1").arg(anIndex);
293
294         //Find SubShape Object in Father
295         GEOM::GEOM_Object_var aFindedObject = GEOMBase_Helper::findObjectInFather(aSelectedObject, aName);
296         
297         if ( aFindedObject == GEOM::GEOM_Object::_nil() ) { // Object not found in study
298           GEOM::GEOM_IShapesOperations_var aShapesOp = getGeomEngine()->GetIShapesOperations(getStudyId());
299           aSelectedObject = aShapesOp->GetSubShape(aSelectedObject, anIndex);
300         }
301         else
302           aSelectedObject = aFindedObject; // get Object from study
303       }
304       else // Global Selection
305       {
306         if (aShape.ShapeType() != TopAbs_VERTEX) {
307           aSelectedObject = GEOM::GEOM_Object::_nil();
308           aName = "";
309         }
310       }
311     }
312
313     myEditCurrentArgument->setText(aName);
314
315     if      ( myEditCurrentArgument == GroupPoints->LineEdit1 ) myPoint1 = aSelectedObject;
316     else if ( myEditCurrentArgument == GroupPoints->LineEdit2 ) myPoint2 = aSelectedObject;
317   }
318
319   displayPreview();
320 }
321
322 //=================================================================================
323 // function : SetEditCurrentArgument()
324 // purpose  :
325 //=================================================================================
326 void BasicGUI_VectorDlg::SetEditCurrentArgument()
327 {
328   QPushButton* send = (QPushButton*)sender();
329   if      ( send == GroupPoints->PushButton1 ) myEditCurrentArgument = GroupPoints->LineEdit1;
330   else if ( send == GroupPoints->PushButton2 ) myEditCurrentArgument = GroupPoints->LineEdit2;
331   myEditCurrentArgument->setFocus();
332   SelectionIntoArgument();
333 }
334
335
336 //=================================================================================
337 // function : LineEditReturnPressed()
338 // purpose  :
339 //=================================================================================
340 void BasicGUI_VectorDlg::LineEditReturnPressed()
341
342   QLineEdit* send = (QLineEdit*)sender();
343   if      ( send == GroupPoints->LineEdit1 ) myEditCurrentArgument = GroupPoints->LineEdit1;
344   else if ( send == GroupPoints->LineEdit2 ) myEditCurrentArgument = GroupPoints->LineEdit2;
345   else return;
346   GEOMBase_Skeleton::LineEditReturnPressed();
347 }
348
349 //=================================================================================
350 // function : ActivateThisDialog()
351 // purpose  :
352 //=================================================================================
353 void BasicGUI_VectorDlg::ActivateThisDialog()
354 {
355   GEOMBase_Skeleton::ActivateThisDialog();
356   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
357           this, SLOT(SelectionIntoArgument()));
358         
359   ConstructorsClicked(getConstructorId());
360 }
361
362 //=================================================================================
363 // function : DeactivateActiveDialog()
364 // purpose  : public slot to deactivate if active
365 //=================================================================================
366 void BasicGUI_VectorDlg::DeactivateActiveDialog()
367 {
368   GEOMBase_Skeleton::DeactivateActiveDialog();
369 }
370
371 //=================================================================================
372 // function : enterEvent()
373 // purpose  :
374 //=================================================================================
375 void BasicGUI_VectorDlg::enterEvent(QEvent* e)
376 {
377   if ( !GroupConstructors->isEnabled() )
378     ActivateThisDialog();
379 }
380
381 //=================================================================================
382 // function : ValueChangedInSpinBox()
383 // purpose  :
384 //=================================================================================
385 void BasicGUI_VectorDlg::ValueChangedInSpinBox( double newValue )
386 {
387   displayPreview();
388 }
389
390 //=================================================================================
391 // function : ReverseVector()
392 // purpose  : 'state' not used here
393 //=================================================================================
394 void BasicGUI_VectorDlg::ReverseVector(int state)
395 {
396   double dx = -GroupDimensions->SpinBox_DX->GetValue();
397   double dy = -GroupDimensions->SpinBox_DY->GetValue();
398   double dz = -GroupDimensions->SpinBox_DZ->GetValue();
399
400   GroupDimensions->SpinBox_DX->SetValue( dx );
401   GroupDimensions->SpinBox_DY->SetValue( dy );
402   GroupDimensions->SpinBox_DZ->SetValue( dz );
403   
404   displayPreview();
405 }
406
407 //=================================================================================
408 // function : createOperation
409 // purpose  :
410 //=================================================================================
411 GEOM::GEOM_IOperations_ptr BasicGUI_VectorDlg::createOperation()
412 {
413   return myGeomGUI->GetGeomGen()->GetIBasicOperations( getStudyId() );
414 }
415
416 //=================================================================================
417 // function : isValid
418 // purpose  :
419 //=================================================================================
420 bool BasicGUI_VectorDlg::isValid( QString& msg )
421 {
422   return getConstructorId() == 0 ? !myPoint1->_is_nil() && !myPoint2->_is_nil(): true;
423 }
424
425 //=================================================================================
426 // function : execute
427 // purpose  :
428 //=================================================================================
429 bool BasicGUI_VectorDlg::execute( ObjectList& objects )
430 {
431   bool res = false;
432   
433   GEOM::GEOM_Object_var anObj;
434
435   switch ( getConstructorId() ) {
436   case 0 :
437     anObj = GEOM::GEOM_IBasicOperations::_narrow( getOperation() )->MakeVectorTwoPnt( myPoint1, myPoint2 );
438     res = true;
439     break;
440
441   case 1 :
442     {
443       double dx = GroupDimensions->SpinBox_DX->GetValue();
444       double dy = GroupDimensions->SpinBox_DY->GetValue();
445       double dz = GroupDimensions->SpinBox_DZ->GetValue();
446       anObj = GEOM::GEOM_IBasicOperations::_narrow( getOperation() )->MakeVectorDXDYDZ( dx,dy,dz );
447       res = true;
448       break;
449     }
450   }
451
452   if ( !anObj->_is_nil() )
453     objects.push_back( anObj._retn() );
454
455   return res;
456 }
457
458 //=================================================================================
459 // function : addSubshapeToStudy
460 // purpose  : virtual method to add new SubObjects if local selection
461 //=================================================================================
462 void BasicGUI_VectorDlg::addSubshapesToStudy()
463 {
464   QMap<QString, GEOM::GEOM_Object_var> objMap;
465
466 switch (getConstructorId())
467   {
468   case 0:
469      objMap[GroupPoints->LineEdit1->text()] = myPoint1;
470      objMap[GroupPoints->LineEdit2->text()] = myPoint2;
471     break;
472   case 1:
473     return;
474   }
475  addSubshapesToFather( objMap );
476 }