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