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