Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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 //
23 //
24 //  File   : BasicGUI_PlaneDlg.cxx
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #include "BasicGUI_PlaneDlg.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 <TColStd_MapOfInteger.hxx>
37
38 #include <TopoDS_Shape.hxx>
39 #include <TopoDS_Edge.hxx>
40 #include <TopoDS.hxx>
41 #include <TopExp.hxx>
42 #include <TColStd_IndexedMapOfInteger.hxx>
43 #include <TopTools_IndexedMapOfShape.hxx>
44
45 #include <qlabel.h>
46
47 #include "GEOMImpl_Types.hxx"
48
49 using namespace std;
50
51 //=================================================================================
52 // class    : BasicGUI_PlaneDlg()
53 // purpose  : Constructs a BasicGUI_PlaneDlg which is a child of 'parent', with the
54 //            name 'name' and widget flags set to 'f'.
55 //            The dialog will by default be modeless, unless you set 'modal' to
56 //            TRUE to construct a modal dialog.
57 //=================================================================================
58 BasicGUI_PlaneDlg::BasicGUI_PlaneDlg(GeometryGUI* theGeometryGUI, QWidget* parent,
59                                      const char* name, bool modal, WFlags fl)
60   :GEOMBase_Skeleton(theGeometryGUI, parent, name, modal, WStyle_Customize |
61                      WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu)
62 {
63   QPixmap image0(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_PLANE_PV")));
64   QPixmap image1(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_PLANE_3PNTS")));
65   QPixmap image2(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_PLANE_FACE")));
66   QPixmap image3(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_SELECT")));
67
68   setCaption(tr("GEOM_PLANE_TITLE"));
69
70   /***************************************************************/
71   GroupConstructors->setTitle(tr("GEOM_PLANE"));
72   RadioButton1->setPixmap(image0);
73   RadioButton2->setPixmap(image1);
74   RadioButton3->setPixmap(image2);
75
76   GroupPntDir = new DlgRef_2Sel1Spin(this, "GroupPointDirection");
77   GroupPntDir->GroupBox1->setTitle(tr("GEOM_PLANE_PV"));
78   GroupPntDir->TextLabel1->setText(tr("GEOM_POINT"));
79   GroupPntDir->TextLabel2->setText(tr("GEOM_VECTOR"));
80   GroupPntDir->TextLabel3->setText(tr("GEOM_PLANE_SIZE"));
81   GroupPntDir->PushButton1->setPixmap(image3);
82   GroupPntDir->PushButton2->setPixmap(image3);
83   GroupPntDir->LineEdit1->setReadOnly( true );
84   GroupPntDir->LineEdit2->setReadOnly( true );
85
86   Group3Pnts = new DlgRef_3Sel1Spin(this, "Group3Pnts");
87   Group3Pnts->GroupBox1->setTitle(tr("GEOM_3_POINTS"));
88   Group3Pnts->TextLabel1->setText(tr("GEOM_POINT1"));
89   Group3Pnts->TextLabel2->setText(tr("GEOM_POINT2"));
90   Group3Pnts->TextLabel3->setText(tr("GEOM_POINT3"));
91   Group3Pnts->TextLabel4->setText(tr("GEOM_PLANE_SIZE"));
92   Group3Pnts->PushButton1->setPixmap(image3);
93   Group3Pnts->PushButton2->setPixmap(image3);
94   Group3Pnts->PushButton3->setPixmap(image3);
95
96   Group3Pnts->LineEdit1->setReadOnly( true );
97   Group3Pnts->LineEdit2->setReadOnly( true );
98   Group3Pnts->LineEdit3->setReadOnly( true );
99
100   GroupFace = new DlgRef_1Sel1Spin(this, "GroupFace");
101   GroupFace->GroupBox1->setTitle(tr("GEOM_FACE_OR_LCS"));
102   GroupFace->TextLabel1->setText(tr("GEOM_SELECTION"));
103   GroupFace->TextLabel2->setText(tr("GEOM_PLANE_SIZE"));
104   GroupFace->PushButton1->setPixmap(image3);
105
106   GroupFace->LineEdit1->setReadOnly( true );
107
108   Layout1->addWidget(GroupPntDir, 2, 0);
109   Layout1->addWidget(Group3Pnts, 2, 0);
110   Layout1->addWidget(GroupFace, 2, 0);
111   /***************************************************************/
112
113   setHelpFileName("create_plane_page.html");
114
115   Init();
116 }
117
118
119 //=================================================================================
120 // function : ~BasicGUI_PlaneDlg()
121 // purpose  : Destroys the object and frees any allocated resources
122 //=================================================================================
123 BasicGUI_PlaneDlg::~BasicGUI_PlaneDlg()
124 {
125 }
126
127
128 //=================================================================================
129 // function : Init()
130 // purpose  :
131 //=================================================================================
132 void BasicGUI_PlaneDlg::Init()
133 {
134   /* init variables */
135   myEditCurrentArgument = GroupPntDir->LineEdit1;
136
137   myPoint = myDir = myPoint1 = myPoint2 = myPoint3 = myFace = GEOM::GEOM_Object::_nil();
138
139   // myGeomGUI->SetState( 0 );
140
141   /* Get setting of step value from file configuration */
142   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
143   double aStep = resMgr->doubleValue( "Geometry", "SettingsGeomStep", 100);
144
145   double aTrimSize = 2000.0;
146
147   /* min, max, step and decimals for spin boxes */
148   GroupPntDir->SpinBox_DX->RangeStepAndValidator(0.001, COORD_MAX, aStep, DBL_DIGITS_DISPLAY);
149   GroupPntDir->SpinBox_DX->SetValue( aTrimSize );
150   Group3Pnts->SpinBox_DX->RangeStepAndValidator(0.001, COORD_MAX, aStep, DBL_DIGITS_DISPLAY);
151   Group3Pnts->SpinBox_DX->SetValue( aTrimSize );
152   GroupFace->SpinBox_DX->RangeStepAndValidator(0.001, COORD_MAX, aStep, DBL_DIGITS_DISPLAY);
153   GroupFace->SpinBox_DX->SetValue( aTrimSize );
154
155   /* signals and slots connections */
156   connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
157   connect(myGeomGUI, SIGNAL(SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
158   connect(myGeomGUI, SIGNAL(SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
159
160   connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
161   connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
162   connect(GroupConstructors, SIGNAL(clicked(int)), this, SLOT(ConstructorsClicked(int)));
163
164   connect(GroupPntDir->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
165   connect(GroupPntDir->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
166   connect(Group3Pnts->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
167   connect(Group3Pnts->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
168   connect(Group3Pnts->PushButton3, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
169   connect(GroupFace->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
170
171   connect(GroupPntDir->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
172   connect(GroupPntDir->LineEdit2, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
173   connect(Group3Pnts->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
174   connect(Group3Pnts->LineEdit2, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
175   connect(Group3Pnts->LineEdit3, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
176   connect(GroupFace->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
177
178   connect(GroupPntDir->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
179   connect(Group3Pnts->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
180   connect(GroupFace->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
181
182   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), GroupPntDir->SpinBox_DX, SLOT(SetStep(double)));
183   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), Group3Pnts->SpinBox_DX, SLOT(SetStep(double)));
184   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), GroupFace->SpinBox_DX, SLOT(SetStep(double)));
185
186   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
187
188   initName( tr( "GEOM_PLANE" ) );
189
190   Group3Pnts->hide();
191   GroupFace->hide();
192   ConstructorsClicked( 0 );
193 }
194
195
196 //=================================================================================
197 // function : ConstructorsClicked()
198 // purpose  : Radio button management
199 //=================================================================================
200 void BasicGUI_PlaneDlg::ConstructorsClicked(int constructorId)
201 {
202   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
203   myPoint = myDir = myPoint1 = myPoint2 = myPoint3 = myFace = GEOM::GEOM_Object::_nil();
204
205   switch (constructorId)
206   {
207   case 0: /* plane from a point and a direction (vector, edge...) */
208     {
209       Group3Pnts->hide();
210       GroupFace->hide();
211       resize(0, 0);
212       GroupPntDir->show();
213
214       myEditCurrentArgument = GroupPntDir->LineEdit1;
215       GroupPntDir->LineEdit1->setText(tr(""));
216       GroupPntDir->LineEdit2->setText(tr(""));
217
218       /* for the first argument */
219       globalSelection(); // close local contexts, if any
220       localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
221       break;
222     }
223   case 1: /* plane from 3 points */
224     {
225       GroupPntDir->hide();
226       GroupFace->hide();
227       resize(0, 0);
228       Group3Pnts->show();
229
230       myEditCurrentArgument = Group3Pnts->LineEdit1;
231       Group3Pnts->LineEdit1->setText("");
232       Group3Pnts->LineEdit2->setText("");
233       Group3Pnts->LineEdit3->setText("");
234
235       /* for the first argument */
236       globalSelection(); // close local contexts, if any
237       localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
238       break;
239     }
240   case 2: /* plane from a planar face selection */
241     {
242       GroupPntDir->hide();
243       Group3Pnts->hide();
244       resize(0, 0);
245       GroupFace->show();
246
247       myEditCurrentArgument = GroupFace->LineEdit1;
248       GroupFace->LineEdit1->setText(tr(""));
249
250       /* for the first argument */
251       //globalSelection( GEOM_PLANE );
252       TColStd_MapOfInteger aMap;
253       aMap.Add( GEOM_PLANE );
254       aMap.Add( GEOM_MARKER );
255       globalSelection( aMap );
256       break;
257     }
258   }
259
260   myEditCurrentArgument->setFocus();
261   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
262           this, SLOT(SelectionIntoArgument()));
263 }
264
265 //=================================================================================
266 // function : ClickOnOk()
267 // purpose  :
268 //=================================================================================
269 void BasicGUI_PlaneDlg::ClickOnOk()
270 {
271   if ( ClickOnApply() )
272     ClickOnCancel();
273 }
274
275 //=================================================================================
276 // function : ClickOnApply()
277 // purpose  :
278 //=================================================================================
279 bool BasicGUI_PlaneDlg::ClickOnApply()
280 {
281   if ( !onAccept() )
282     return false;
283
284   initName();
285   ConstructorsClicked( getConstructorId() );
286   return true;
287 }
288
289 //=======================================================================
290 // function : ClickOnCancel()
291 // purpose  :
292 //=======================================================================
293 void BasicGUI_PlaneDlg::ClickOnCancel()
294 {
295   GEOMBase_Skeleton::ClickOnCancel();
296 }
297
298 //=================================================================================
299 // function : SelectionIntoArgument()
300 // purpose  : Called when selection has changed
301 //=================================================================================
302 void BasicGUI_PlaneDlg::SelectionIntoArgument()
303 {
304   myEditCurrentArgument->setText("");
305
306   if (IObjectCount() != 1)
307   {
308     if      ( myEditCurrentArgument == GroupPntDir->LineEdit1 ) myPoint  = GEOM::GEOM_Object::_nil();
309     else if ( myEditCurrentArgument == GroupPntDir->LineEdit2 ) myDir    = GEOM::GEOM_Object::_nil();
310     else if ( myEditCurrentArgument == Group3Pnts->LineEdit1 )  myPoint1 = GEOM::GEOM_Object::_nil();
311     else if ( myEditCurrentArgument == Group3Pnts->LineEdit2 )  myPoint2 = GEOM::GEOM_Object::_nil();
312     else if ( myEditCurrentArgument == Group3Pnts->LineEdit3 )  myPoint3 = GEOM::GEOM_Object::_nil();
313     else if ( myEditCurrentArgument == GroupFace->LineEdit1 )   myFace   = GEOM::GEOM_Object::_nil();
314     return;
315   }
316
317   // nbSel == 1
318   Standard_Boolean aRes = Standard_False;
319   GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject(firstIObject(), aRes);
320   if (!CORBA::is_nil(aSelectedObject) && aRes)
321   {
322     QString aName = GEOMBase::GetName(aSelectedObject);
323
324     TopoDS_Shape aShape;
325     if (GEOMBase::GetShape(aSelectedObject, aShape, TopAbs_SHAPE) && !aShape.IsNull())
326     {
327       TopAbs_ShapeEnum aNeedType = TopAbs_VERTEX;
328       if (myEditCurrentArgument == GroupPntDir->LineEdit2)
329         aNeedType = TopAbs_EDGE;
330       else if (myEditCurrentArgument == GroupFace->LineEdit1)
331         aNeedType = TopAbs_FACE;
332
333       LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
334       TColStd_IndexedMapOfInteger aMap;
335       aSelMgr->GetIndexes(firstIObject(), aMap);
336       if (aMap.Extent() == 1) // Local Selection
337       {
338
339         int anIndex = aMap(1);
340         if (aNeedType == TopAbs_EDGE)
341           aName += QString(":edge_%1").arg(anIndex);
342         else if (aNeedType == TopAbs_FACE)
343           aName += QString(":face_%1").arg(anIndex);
344         else
345           aName += QString(":vertex_%1").arg(anIndex);
346
347         //Find SubShape Object in Father
348         GEOM::GEOM_Object_var aFindedObject = GEOMBase_Helper::findObjectInFather(aSelectedObject, aName);
349
350         if ( aFindedObject == GEOM::GEOM_Object::_nil() ) { // Object not found in study
351         GEOM::GEOM_IShapesOperations_var aShapesOp = getGeomEngine()->GetIShapesOperations(getStudyId());
352         aSelectedObject = aShapesOp->GetSubShape(aSelectedObject, anIndex);
353         } 
354         else
355           aSelectedObject = aFindedObject; // get Object from study
356       }
357       else // Global Selection
358       {
359         if (aShape.ShapeType() != aNeedType) {
360           aSelectedObject = GEOM::GEOM_Object::_nil();
361           aName = "";
362         }
363       }
364     }
365
366     myEditCurrentArgument->setText(aName);
367
368     if      ( myEditCurrentArgument == GroupPntDir->LineEdit1 ) myPoint  = aSelectedObject;
369     else if ( myEditCurrentArgument == GroupPntDir->LineEdit2 ) myDir    = aSelectedObject;
370     else if ( myEditCurrentArgument == Group3Pnts->LineEdit1 )  myPoint1 = aSelectedObject;
371     else if ( myEditCurrentArgument == Group3Pnts->LineEdit2 )  myPoint2 = aSelectedObject;
372     else if ( myEditCurrentArgument == Group3Pnts->LineEdit3 )  myPoint3 = aSelectedObject;
373     else if ( myEditCurrentArgument == GroupFace->LineEdit1 )   myFace   = aSelectedObject;
374   }
375
376   displayPreview();
377 }
378
379
380 //=================================================================================
381 // function : SetEditCurrentArgument()
382 // purpose  :
383 //=================================================================================
384 void BasicGUI_PlaneDlg::SetEditCurrentArgument()
385 {
386   QPushButton* send = (QPushButton*)sender();
387   globalSelection( GEOM_POINT );
388
389   if      ( send == GroupPntDir->PushButton1 ) myEditCurrentArgument = GroupPntDir->LineEdit1;
390   else if ( send == GroupPntDir->PushButton2 ) myEditCurrentArgument = GroupPntDir->LineEdit2;
391   else if ( send == Group3Pnts->PushButton1 )  myEditCurrentArgument = Group3Pnts->LineEdit1;
392   else if ( send == Group3Pnts->PushButton2 )  myEditCurrentArgument = Group3Pnts->LineEdit2;
393   else if ( send == Group3Pnts->PushButton3 )  myEditCurrentArgument = Group3Pnts->LineEdit3;
394   else if ( send == GroupFace->PushButton1 )   myEditCurrentArgument = GroupFace->LineEdit1;
395
396   myEditCurrentArgument->setFocus();
397
398   if (myEditCurrentArgument == GroupPntDir->LineEdit2) {
399     globalSelection(); // close local contexts, if any
400     localSelection(GEOM::GEOM_Object::_nil(), TopAbs_EDGE);
401   }
402   else if (myEditCurrentArgument == GroupFace->LineEdit1) {
403     TColStd_MapOfInteger aMap;
404     aMap.Add( GEOM_PLANE );
405     aMap.Add( GEOM_MARKER );
406     globalSelection( aMap );
407   }
408   else { // 3 Pnts
409     globalSelection(); // close local contexts, if any
410     localSelection(GEOM::GEOM_Object::_nil(), TopAbs_VERTEX);
411   }
412
413   SelectionIntoArgument();
414 }
415
416 //=================================================================================
417 // function : LineEditReturnPressed()
418 // purpose  :
419 //=================================================================================
420 void BasicGUI_PlaneDlg::LineEditReturnPressed()
421 {
422   QLineEdit* send = (QLineEdit*)sender();
423   if ( send == GroupPntDir->LineEdit1 ||
424        send == GroupPntDir->LineEdit2 ||
425        send == Group3Pnts->LineEdit1 ||
426        send == Group3Pnts->LineEdit2 ||
427        send == Group3Pnts->LineEdit3 ||
428        send == GroupFace->LineEdit1 )
429   {
430     myEditCurrentArgument = send;
431     GEOMBase_Skeleton::LineEditReturnPressed();
432   }
433 }
434
435 //=================================================================================
436 // function : ActivateThisDialog()
437 // purpose  :
438 //=================================================================================
439 void BasicGUI_PlaneDlg::ActivateThisDialog()
440 {
441   GEOMBase_Skeleton::ActivateThisDialog();
442   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
443           this, SLOT(SelectionIntoArgument()));
444
445   ConstructorsClicked(getConstructorId());
446 }
447
448 //=================================================================================
449 // function : DeactivateActiveDialog()
450 // purpose  : public slot to deactivate if active
451 //=================================================================================
452 void BasicGUI_PlaneDlg::DeactivateActiveDialog()
453 {
454   GEOMBase_Skeleton::DeactivateActiveDialog();
455 }
456
457 //=================================================================================
458 // function : enterEvent()
459 // purpose  :
460 //=================================================================================
461 void BasicGUI_PlaneDlg::enterEvent(QEvent* e)
462 {
463   if ( !GroupConstructors->isEnabled() )
464     ActivateThisDialog();
465 }
466
467
468 //=================================================================================
469 // function : ValueChangedInSpinBox()
470 // purpose  :
471 //=================================================================================
472 void BasicGUI_PlaneDlg::ValueChangedInSpinBox(double newValue)
473 {
474   displayPreview();
475 }
476
477 //=================================================================================
478 // function : getSize()
479 // purpose  :
480 //=================================================================================
481 double BasicGUI_PlaneDlg::getSize() const
482 {
483   switch ( getConstructorId() )
484   {
485   case 0 : return GroupPntDir->SpinBox_DX->GetValue();
486   case 1 : return Group3Pnts->SpinBox_DX->GetValue();
487   case 2 : return GroupFace->SpinBox_DX->GetValue();
488   }
489   return 0.;
490 }
491
492 //=================================================================================
493 // function : createOperation
494 // purpose  :
495 //=================================================================================
496 GEOM::GEOM_IOperations_ptr BasicGUI_PlaneDlg::createOperation()
497 {
498   return myGeomGUI->GetGeomGen()->GetIBasicOperations( getStudyId() );
499 }
500
501 //=================================================================================
502 // function : isEqual
503 // purpose  : it may also be needed to check for min distance between gp_Pnt-s...
504 //=================================================================================
505 static bool isEqual( const GEOM::GEOM_Object_var& thePnt1, const GEOM::GEOM_Object_var& thePnt2 )
506 {
507         return thePnt1->_is_equivalent( thePnt2 );
508 }
509
510 //=================================================================================
511 // function : isValid
512 // purpose  :
513 //=================================================================================
514 bool BasicGUI_PlaneDlg::isValid( QString& msg )
515 {
516         const int id = getConstructorId();
517         if ( getSize() <= 0 )
518         {
519                 msg = QString( "Please, enter size greater than 0." );
520                 return false;
521         }
522         if ( id == 0 )
523                 return !CORBA::is_nil( myPoint ) && !CORBA::is_nil( myDir );
524         else if ( id == 1 )
525                 return !CORBA::is_nil( myPoint1  ) && !CORBA::is_nil( myPoint2 ) && !CORBA::is_nil( myPoint3 ) &&
526                        !isEqual( myPoint1, myPoint2 ) && !isEqual( myPoint1, myPoint3 ) && !isEqual( myPoint2, myPoint3 );
527         else if ( id == 2 )
528                 return !CORBA::is_nil( myFace );
529         return false;
530 }
531
532 //=================================================================================
533 // function : execute
534 // purpose  :
535 //=================================================================================
536 bool BasicGUI_PlaneDlg::execute( ObjectList& objects )
537 {
538   bool res = false;
539
540   GEOM::GEOM_Object_var anObj;
541
542   switch ( getConstructorId() )
543   {
544   case 0 :
545     anObj = GEOM::GEOM_IBasicOperations::_narrow( getOperation() )->MakePlanePntVec( myPoint, myDir, getSize() );
546     res = true;
547     break;
548   case 1 :
549     anObj = GEOM::GEOM_IBasicOperations::_narrow( getOperation() )->MakePlaneThreePnt( myPoint1, myPoint2, myPoint3, getSize() );
550     res = true;
551     break;
552   case 2 :
553     anObj = GEOM::GEOM_IBasicOperations::_narrow( getOperation() )->MakePlaneFace( myFace, getSize() );
554     res = true;
555     break;
556   }
557
558   if ( !anObj->_is_nil() )
559     objects.push_back( anObj._retn() );
560
561   return res;
562 }
563
564 //=================================================================================
565 // function : closeEvent
566 // purpose  :
567 //=================================================================================
568 void BasicGUI_PlaneDlg::closeEvent( QCloseEvent* e )
569 {
570   GEOMBase_Skeleton::closeEvent( e );
571 }
572
573 //=================================================================================
574 // function : addSubshapeToStudy
575 // purpose  : virtual method to add new SubObjects if local selection
576 //=================================================================================
577 void BasicGUI_PlaneDlg::addSubshapesToStudy()
578 {
579   QMap<QString, GEOM::GEOM_Object_var> objMap;
580
581 switch (getConstructorId())
582   {
583   case 0:
584     objMap[GroupPntDir->LineEdit1->text()] = myPoint;
585     objMap[GroupPntDir->LineEdit2->text()] = myDir;
586     break;
587   case 1:
588     objMap[Group3Pnts->LineEdit1->text()] = myPoint1;
589     objMap[Group3Pnts->LineEdit2->text()] = myPoint2;
590     objMap[Group3Pnts->LineEdit3->text()] = myPoint3;
591     break;
592   case 2:
593     objMap[GroupFace->LineEdit1->text()] = myFace;
594     break;
595   }
596  addSubshapesToFather( objMap );
597 }