Salome HOME
*** empty log message ***
[modules/geom.git] / src / BasicGUI / BasicGUI_PlaneDlg.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_PlaneDlg.cxx
23 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
24 //
25
26 #include "BasicGUI_PlaneDlg.h"
27
28 #include <GEOM_DlgRef.h>
29
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 <TColStd_MapOfInteger.hxx>
39
40 #include <GEOMImpl_Types.hxx>
41
42 //=================================================================================
43 // class    : BasicGUI_PlaneDlg()
44 // purpose  : Constructs a BasicGUI_PlaneDlg which is a child of 'parent', with the
45 //            name 'name' and widget flags set to 'f'.
46 //            The dialog will by default be modeless, unless you set 'modal' to
47 //            TRUE to construct a modal dialog.
48 //=================================================================================
49 BasicGUI_PlaneDlg::BasicGUI_PlaneDlg( GeometryGUI* theGeometryGUI, QWidget* parent,
50                                       bool modal, Qt::WindowFlags fl )
51   : GEOMBase_Skeleton( theGeometryGUI, parent, modal, fl )
52 {
53   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_PLANE_PV" ) ) );
54   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_PLANE_3PNTS" ) ) );
55   QPixmap image2( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_PLANE_FACE" ) ) );
56   QPixmap image3( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
57
58   setWindowTitle( tr( "GEOM_PLANE_TITLE" ) );
59
60   /***************************************************************/
61   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_PLANE" ) );
62   mainFrame()->RadioButton1->setIcon( image0 );
63   mainFrame()->RadioButton2->setIcon( image1 );
64   mainFrame()->RadioButton3->setIcon( image2 );
65
66   GroupPntDir = new DlgRef_2Sel1Spin( centralWidget() );
67   GroupPntDir->GroupBox1->setTitle( tr( "GEOM_PLANE_PV" ) );
68   GroupPntDir->TextLabel1->setText( tr( "GEOM_POINT" ) );
69   GroupPntDir->TextLabel2->setText( tr( "GEOM_VECTOR" ) );
70   GroupPntDir->TextLabel3->setText( tr( "GEOM_PLANE_SIZE" ) );
71   GroupPntDir->PushButton1->setIcon( image3 );
72   GroupPntDir->PushButton2->setIcon( image3 );
73   GroupPntDir->LineEdit1->setReadOnly( true );
74   GroupPntDir->LineEdit2->setReadOnly( true );
75
76   Group3Pnts = new DlgRef_3Sel1Spin( centralWidget() );
77   Group3Pnts->GroupBox1->setTitle( tr( "GEOM_3_POINTS" ) );
78   Group3Pnts->TextLabel1->setText( tr( "GEOM_POINT1" ) );
79   Group3Pnts->TextLabel2->setText( tr( "GEOM_POINT2" ) );
80   Group3Pnts->TextLabel3->setText( tr( "GEOM_POINT3" ) );
81   Group3Pnts->TextLabel4->setText( tr( "GEOM_PLANE_SIZE" ) );
82   Group3Pnts->PushButton1->setIcon( image3 );
83   Group3Pnts->PushButton2->setIcon( image3 );
84   Group3Pnts->PushButton3->setIcon( image3 );
85
86   Group3Pnts->LineEdit1->setReadOnly( true );
87   Group3Pnts->LineEdit2->setReadOnly( true );
88   Group3Pnts->LineEdit3->setReadOnly( true );
89
90   GroupFace = new DlgRef_1Sel1Spin( centralWidget() );
91   GroupFace->GroupBox1->setTitle( tr( "GEOM_FACE_OR_LCS" ) );
92   GroupFace->TextLabel1->setText( tr( "GEOM_SELECTION" ) );
93   GroupFace->TextLabel2->setText( tr( "GEOM_PLANE_SIZE" ) );
94   GroupFace->PushButton1->setIcon( image3 );
95
96   GroupFace->LineEdit1->setReadOnly( true );
97
98   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
99   layout->setMargin( 0 ); layout->setSpacing( 6 );
100   layout->addWidget( GroupPntDir );
101   layout->addWidget( Group3Pnts );
102   layout->addWidget( GroupFace );
103   /***************************************************************/
104
105   setHelpFileName( "plane.htm" );
106
107   Init();
108 }
109
110
111 //=================================================================================
112 // function : ~BasicGUI_PlaneDlg()
113 // purpose  : Destroys the object and frees any allocated resources
114 //=================================================================================
115 BasicGUI_PlaneDlg::~BasicGUI_PlaneDlg()
116 {
117 }
118
119
120 //=================================================================================
121 // function : Init()
122 // purpose  :
123 //=================================================================================
124 void BasicGUI_PlaneDlg::Init()
125 {
126   /* init variables */
127   myEditCurrentArgument = GroupPntDir->LineEdit1;
128
129   myPoint = myDir = myPoint1 = myPoint2 = myPoint3 = myFace = GEOM::GEOM_Object::_nil();
130
131   // myGeomGUI->SetState( 0 );
132
133   /* Get setting of step value from file configuration */
134   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
135   double aStep = resMgr->doubleValue( "Geometry", "SettingsGeomStep", 100 );
136
137   double aTrimSize = 2000.0;
138
139   /* min, max, step and decimals for spin boxes */
140   initSpinBox( GroupPntDir->SpinBox_DX, 0.001, COORD_MAX, aStep, 3 );
141   GroupPntDir->SpinBox_DX->setValue( aTrimSize );
142   initSpinBox( Group3Pnts->SpinBox_DX, 0.001, COORD_MAX, aStep, 3 );
143   Group3Pnts->SpinBox_DX->setValue( aTrimSize );
144   initSpinBox( GroupFace->SpinBox_DX, 0.001, COORD_MAX, aStep, 3 );
145   GroupFace->SpinBox_DX->setValue( aTrimSize );
146
147   /* signals and slots connections */
148   connect( myGeomGUI, SIGNAL( SignalDeactivateActiveDialog() ), this, SLOT( DeactivateActiveDialog() ) );
149   connect( myGeomGUI, SIGNAL( SignalCloseAllDialogs() ),        this, SLOT( ClickOnCancel() ) );
150
151   connect( buttonOk(),     SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
152   connect( buttonApply(),  SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
153
154   connect( this,           SIGNAL( constructorsClicked( int ) ), this, SLOT( ConstructorsClicked( int ) ) );
155
156   connect( GroupPntDir->PushButton1, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
157   connect( GroupPntDir->PushButton2, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
158   connect( Group3Pnts->PushButton1,  SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
159   connect( Group3Pnts->PushButton2,  SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
160   connect( Group3Pnts->PushButton3,  SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
161   connect( GroupFace->PushButton1,   SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
162
163   connect( GroupPntDir->LineEdit1, SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
164   connect( GroupPntDir->LineEdit2, SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
165   connect( Group3Pnts->LineEdit1,  SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
166   connect( Group3Pnts->LineEdit2,  SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
167   connect( Group3Pnts->LineEdit3,  SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
168   connect( GroupFace->LineEdit1,   SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
169
170   connect( GroupPntDir->SpinBox_DX, SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
171   connect( Group3Pnts->SpinBox_DX,  SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
172   connect( GroupFace->SpinBox_DX,   SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
173
174   // VSR: TODO ->>
175   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), GroupPntDir->SpinBox_DX, SLOT( SetStep( double ) ) );
176   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), Group3Pnts->SpinBox_DX,  SLOT( SetStep( double ) ) );
177   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), GroupFace->SpinBox_DX,   SLOT( SetStep( double ) ) );
178   // <<-
179
180   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
181
182   initName( tr( "GEOM_PLANE" ) );
183
184   ConstructorsClicked( 0 );
185 }
186
187
188 //=================================================================================
189 // function : ConstructorsClicked()
190 // purpose  : Radio button management
191 //=================================================================================
192 void BasicGUI_PlaneDlg::ConstructorsClicked( int constructorId )
193 {
194   disconnect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 0, this, 0 );
195   myPoint = myDir = myPoint1 = myPoint2 = myPoint3 = myFace = GEOM::GEOM_Object::_nil();
196
197   switch ( constructorId ) {
198   case 0: /* plane from a point and a direction (vector, edge...) */
199     {
200       Group3Pnts->hide();
201       GroupFace->hide();
202       GroupPntDir->show();
203       
204       myEditCurrentArgument = GroupPntDir->LineEdit1;
205       GroupPntDir->LineEdit1->setText( "" );
206       GroupPntDir->LineEdit2->setText( "" );
207       
208       /* for the first argument */
209       globalSelection( GEOM_POINT );
210       break;
211     }
212   case 1: /* plane from 3 points */
213     {
214       GroupPntDir->hide();
215       GroupFace->hide();
216       Group3Pnts->show();
217       
218       myEditCurrentArgument = Group3Pnts->LineEdit1;
219       Group3Pnts->LineEdit1->setText( "" );
220       Group3Pnts->LineEdit2->setText( "" );
221       Group3Pnts->LineEdit3->setText( "" );
222       
223       /* for the first argument */
224       globalSelection( GEOM_POINT );
225       break;
226     }
227   case 2: /* plane from a planar face selection */
228     {
229       GroupPntDir->hide();
230       Group3Pnts->hide();
231       GroupFace->show();
232       
233       myEditCurrentArgument = GroupFace->LineEdit1;
234       GroupFace->LineEdit1->setText( "" );
235       
236       /* for the first argument */
237       //globalSelection( GEOM_PLANE );
238       TColStd_MapOfInteger aMap;
239       aMap.Add( GEOM_PLANE );
240       aMap.Add( GEOM_MARKER );
241       globalSelection( aMap );
242       break;
243     }
244   }
245   
246   qApp->processEvents();
247   updateGeometry();
248   resize( minimumSize() );
249
250   myEditCurrentArgument->setFocus();
251   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
252            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
253 }
254
255
256 //=================================================================================
257 // function : ClickOnOk()
258 // purpose  :
259 //=================================================================================
260 void BasicGUI_PlaneDlg::ClickOnOk()
261 {
262   if ( ClickOnApply() )
263     ClickOnCancel();
264 }
265
266
267 //=================================================================================
268 // function : ClickOnApply()
269 // purpose  :
270 //=================================================================================
271 bool BasicGUI_PlaneDlg::ClickOnApply()
272 {
273   if ( !onAccept() )
274     return false;
275
276   initName();
277   ConstructorsClicked( getConstructorId() );
278   return true;
279 }
280
281 //=================================================================================
282 // function : SelectionIntoArgument()
283 // purpose  : Called when selection has changed
284 //=================================================================================
285 void BasicGUI_PlaneDlg::SelectionIntoArgument()
286 {
287   myEditCurrentArgument->setText("");
288
289   if ( IObjectCount() != 1 ) {
290     if      ( myEditCurrentArgument == GroupPntDir->LineEdit1 ) myPoint  = GEOM::GEOM_Object::_nil();
291     else if ( myEditCurrentArgument == GroupPntDir->LineEdit2 ) myDir    = GEOM::GEOM_Object::_nil();
292     else if ( myEditCurrentArgument == Group3Pnts->LineEdit1 )  myPoint1 = GEOM::GEOM_Object::_nil();
293     else if ( myEditCurrentArgument == Group3Pnts->LineEdit2 )  myPoint2 = GEOM::GEOM_Object::_nil();
294     else if ( myEditCurrentArgument == Group3Pnts->LineEdit3 )  myPoint3 = GEOM::GEOM_Object::_nil();
295     else if ( myEditCurrentArgument == GroupFace->LineEdit1 )   myFace   = GEOM::GEOM_Object::_nil();
296     return;
297   }
298
299   // nbSel == 1
300   Standard_Boolean aRes = Standard_False;
301   GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject( firstIObject(), aRes );
302   if ( !CORBA::is_nil( aSelectedObject ) && aRes ) {
303     myEditCurrentArgument->setText( GEOMBase::GetName( aSelectedObject ) );
304     if      ( myEditCurrentArgument == GroupPntDir->LineEdit1 ) myPoint  = aSelectedObject;
305     else if ( myEditCurrentArgument == GroupPntDir->LineEdit2 ) myDir    = aSelectedObject;
306     else if ( myEditCurrentArgument == Group3Pnts->LineEdit1 )  myPoint1 = aSelectedObject;
307     else if ( myEditCurrentArgument == Group3Pnts->LineEdit2 )  myPoint2 = aSelectedObject;
308     else if ( myEditCurrentArgument == Group3Pnts->LineEdit3 )  myPoint3 = aSelectedObject;
309     else if ( myEditCurrentArgument == GroupFace->LineEdit1 )   myFace   = aSelectedObject;
310   }
311
312   displayPreview();
313 }
314
315
316 //=================================================================================
317 // function : SetEditCurrentArgument()
318 // purpose  :
319 //=================================================================================
320 void BasicGUI_PlaneDlg::SetEditCurrentArgument()
321 {
322   QPushButton* send = (QPushButton*)sender();
323
324   if      ( send == GroupPntDir->PushButton1 ) myEditCurrentArgument = GroupPntDir->LineEdit1;
325   else if ( send == GroupPntDir->PushButton2 ) myEditCurrentArgument = GroupPntDir->LineEdit2;
326   else if ( send == Group3Pnts->PushButton1 )  myEditCurrentArgument = Group3Pnts->LineEdit1;
327   else if ( send == Group3Pnts->PushButton2 )  myEditCurrentArgument = Group3Pnts->LineEdit2;
328   else if ( send == Group3Pnts->PushButton3 )  myEditCurrentArgument = Group3Pnts->LineEdit3;
329   else if ( send == GroupFace->PushButton1 )   myEditCurrentArgument = GroupFace->LineEdit1;
330
331   myEditCurrentArgument->setFocus();
332
333   if ( myEditCurrentArgument == GroupPntDir->LineEdit2 )
334     globalSelection( GEOM_LINE );
335   else if ( myEditCurrentArgument == GroupFace->LineEdit1 ) {
336     //globalSelection( GEOM_PLANE );
337     TColStd_MapOfInteger aMap;
338     aMap.Add( GEOM_PLANE );
339     aMap.Add( GEOM_MARKER );
340     globalSelection( aMap );
341   }
342   else
343     globalSelection( GEOM_POINT );
344
345   SelectionIntoArgument();
346 }
347
348
349 //=================================================================================
350 // function : LineEditReturnPressed()
351 // purpose  :
352 //=================================================================================
353 void BasicGUI_PlaneDlg::LineEditReturnPressed()
354 {
355   QLineEdit* send = (QLineEdit*)sender();
356   if ( send == GroupPntDir->LineEdit1 ||
357        send == GroupPntDir->LineEdit2 ||
358        send == Group3Pnts->LineEdit1 ||
359        send == Group3Pnts->LineEdit2 ||
360        send == Group3Pnts->LineEdit3 ||
361        send == GroupFace->LineEdit1 ) {
362     myEditCurrentArgument = send;
363     GEOMBase_Skeleton::LineEditReturnPressed();
364   }
365 }
366
367
368 //=================================================================================
369 // function : ActivateThisDialog()
370 // purpose  :
371 //=================================================================================
372 void BasicGUI_PlaneDlg::ActivateThisDialog()
373 {
374   GEOMBase_Skeleton::ActivateThisDialog();
375   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
376            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
377
378   // myGeomGUI->SetState( 0 );
379
380   ConstructorsClicked( getConstructorId() );
381 }
382
383 //=================================================================================
384 // function : DeactivateActiveDialog()
385 // purpose  : public slot to deactivate if active
386 //=================================================================================
387 void BasicGUI_PlaneDlg::DeactivateActiveDialog()
388 {
389   // myGeomGUI->SetState( -1 );
390   GEOMBase_Skeleton::DeactivateActiveDialog();
391 }
392
393 //=================================================================================
394 // function : enterEvent()
395 // purpose  :
396 //=================================================================================
397 void BasicGUI_PlaneDlg::enterEvent( QEvent* )
398 {
399   if ( !mainFrame()->GroupConstructors->isEnabled() )
400     ActivateThisDialog();
401 }
402
403
404 //=================================================================================
405 // function : ValueChangedInSpinBox()
406 // purpose  :
407 //=================================================================================
408 void BasicGUI_PlaneDlg::ValueChangedInSpinBox( double newValue )
409 {
410   displayPreview();
411 }
412
413 //=================================================================================
414 // function : getSize()
415 // purpose  :
416 //=================================================================================
417 double BasicGUI_PlaneDlg::getSize() const
418 {
419   switch ( getConstructorId() ) {
420   case 0 : return GroupPntDir->SpinBox_DX->value();
421   case 1 : return Group3Pnts->SpinBox_DX->value();
422   case 2 : return GroupFace->SpinBox_DX->value();
423   }
424   return 0.;
425 }
426
427 //=================================================================================
428 // function : createOperation
429 // purpose  :
430 //=================================================================================
431 GEOM::GEOM_IOperations_ptr BasicGUI_PlaneDlg::createOperation()
432 {
433   return myGeomGUI->GetGeomGen()->GetIBasicOperations( getStudyId() );
434 }
435
436 //=================================================================================
437 // function : isEqual
438 // purpose  : it may also be needed to check for min distance between gp_Pnt-s...
439 //=================================================================================
440 static bool isEqual( const GEOM::GEOM_Object_var& thePnt1, const GEOM::GEOM_Object_var& thePnt2 )
441 {
442         return thePnt1->_is_equivalent( thePnt2 );
443 }
444
445 //=================================================================================
446 // function : isValid
447 // purpose  :
448 //=================================================================================
449 bool BasicGUI_PlaneDlg::isValid( QString& msg )
450 {
451   const int id = getConstructorId();
452   if ( getSize() <= 0 ) {
453     msg = QString( "Please, enter size greater than 0." );
454     return false;
455   }
456   if ( id == 0 )
457     return !CORBA::is_nil( myPoint ) && !CORBA::is_nil( myDir );
458   else if ( id == 1 )
459     return !CORBA::is_nil( myPoint1  ) && !CORBA::is_nil( myPoint2 ) && !CORBA::is_nil( myPoint3 ) &&
460       !isEqual( myPoint1, myPoint2 ) && !isEqual( myPoint1, myPoint3 ) && !isEqual( myPoint2, myPoint3 );
461   else if ( id == 2 )
462     return !CORBA::is_nil( myFace );
463   return false;
464 }
465
466 //=================================================================================
467 // function : execute
468 // purpose  :
469 //=================================================================================
470 bool BasicGUI_PlaneDlg::execute( ObjectList& objects )
471 {
472   bool res = false;
473
474   GEOM::GEOM_Object_var anObj;
475
476   switch ( getConstructorId() ) {
477   case 0 :
478     anObj = GEOM::GEOM_IBasicOperations::_narrow( getOperation() )->MakePlanePntVec( myPoint, myDir, getSize() );
479     res = true;
480     break;
481   case 1 :
482     anObj = GEOM::GEOM_IBasicOperations::_narrow( getOperation() )->MakePlaneThreePnt( myPoint1, myPoint2, myPoint3, getSize() );
483     res = true;
484     break;
485   case 2 :
486     anObj = GEOM::GEOM_IBasicOperations::_narrow( getOperation() )->MakePlaneFace( myFace, getSize() );
487     res = true;
488     break;
489   }
490
491   if ( !anObj->_is_nil() )
492     objects.push_back( anObj._retn() );
493   
494   return res;
495 }
496
497 //=================================================================================
498 // function : closeEvent
499 // purpose  :
500 //=================================================================================
501 void BasicGUI_PlaneDlg::closeEvent( QCloseEvent* e )
502 {
503   GEOMBase_Skeleton::closeEvent( e );
504 }
505