]> SALOME platform Git repositories - modules/geom.git/blob - src/BasicGUI/BasicGUI_CircleDlg.cxx
Salome HOME
NPAL 16768 (Definition of Vector form Edge)
[modules/geom.git] / src / BasicGUI / BasicGUI_CircleDlg.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_CircleDlg.cxx
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #include "BasicGUI_CircleDlg.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_IndexedMapOfInteger.hxx>
37 #include <TopTools_IndexedMapOfShape.hxx>
38 #include <qlabel.h>
39
40 #include <TopoDS_Shape.hxx>
41 #include <TopoDS_Edge.hxx>
42 #include <TopoDS.hxx>
43 #include <TopExp.hxx>
44
45 #include <GEOMImpl_ILocalOperations.hxx>
46
47 #include "GEOMImpl_Types.hxx"
48 #include "GEOM_Object.hxx"
49 #include "GEOM_Engine.hxx"
50
51 #include "utilities.h"
52
53 //=================================================================================
54 // class    : BasicGUI_CircleDlg()
55 // purpose  : Constructs a BasicGUI_CircleDlg which is a child of 'parent', with the 
56 //            name 'name' and widget flags set to 'f'.
57 //            The dialog will by default be modeless, unless you set 'modal' to
58 //            TRUE to construct a modal dialog.
59 //=================================================================================
60 BasicGUI_CircleDlg::BasicGUI_CircleDlg(GeometryGUI* theGeometryGUI, QWidget* parent,
61                                        const char* name, bool modal, WFlags fl)
62   :GEOMBase_Skeleton(theGeometryGUI, parent, name, modal, WStyle_Customize |
63                      WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu)
64 {
65   QPixmap image0(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_CIRCLE_PV")));
66   QPixmap image2(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_CIRCLE_PNTS")));
67   QPixmap image3(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_CIRCLE_C2P")));
68   QPixmap image1(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_SELECT")));
69
70   setCaption(tr("GEOM_CIRCLE_TITLE"));
71
72   /***************************************************************/
73   GroupConstructors->setTitle(tr("GEOM_CIRCLE"));
74   RadioButton1->setPixmap(image0);
75   RadioButton2->setPixmap(image2);
76   RadioButton3->setPixmap(image3);
77
78   GroupPntVecR = new DlgRef_2Sel1Spin(this, "GroupPntVecR");
79   GroupPntVecR->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
80   
81   GroupPntVecR->TextLabel1->setText(tr("GEOM_CENTER_POINT"));
82   GroupPntVecR->TextLabel2->setText(tr("GEOM_VECTOR"));
83   GroupPntVecR->TextLabel3->setText(tr("GEOM_RADIUS"));
84   GroupPntVecR->PushButton1->setPixmap(image1);
85   GroupPntVecR->PushButton2->setPixmap(image1);
86
87   GroupPntVecR->LineEdit1->setReadOnly( true );
88   GroupPntVecR->LineEdit2->setReadOnly( true );
89
90   Group3Pnts = new DlgRef_3Sel_QTD(this, "Group3Pnts");
91   Group3Pnts->GroupBox1->setTitle(tr("GEOM_3_POINTS"));
92   Group3Pnts->TextLabel1->setText(tr("GEOM_POINT1"));
93   Group3Pnts->TextLabel2->setText(tr("GEOM_POINT2"));
94   Group3Pnts->TextLabel3->setText(tr("GEOM_POINT3"));
95   Group3Pnts->PushButton1->setPixmap(image1);
96   Group3Pnts->PushButton2->setPixmap(image1);
97   Group3Pnts->PushButton3->setPixmap(image1);
98
99   Group3Pnts->LineEdit1->setReadOnly( true );
100   Group3Pnts->LineEdit2->setReadOnly( true );
101   Group3Pnts->LineEdit3->setReadOnly( true );
102
103   GroupCenter2Pnts = new DlgRef_3Sel_QTD(this, "GroupCenter2Pnts");
104   GroupCenter2Pnts->GroupBox1->setTitle(tr("GEOM_CENTER_2POINTS"));
105   GroupCenter2Pnts->TextLabel1->setText(tr("GEOM_CENTER_POINT"));
106   GroupCenter2Pnts->TextLabel2->setText(tr("GEOM_POINT1"));
107   GroupCenter2Pnts->TextLabel3->setText(tr("GEOM_POINT2"));
108   GroupCenter2Pnts->PushButton1->setPixmap(image1);
109   GroupCenter2Pnts->PushButton2->setPixmap(image1);
110   GroupCenter2Pnts->PushButton3->setPixmap(image1);
111
112   GroupCenter2Pnts->LineEdit1->setReadOnly( true );
113   GroupCenter2Pnts->LineEdit2->setReadOnly( true );
114   GroupCenter2Pnts->LineEdit3->setReadOnly( true );
115
116   Layout1->addWidget( GroupPntVecR, 2, 0 );
117   Layout1->addWidget( Group3Pnts, 2, 0 );
118   Layout1->addWidget( GroupCenter2Pnts, 2, 0 );
119   /***************************************************************/
120
121   setHelpFileName("circle.htm");
122
123   Init();
124 }
125
126
127 //=================================================================================
128 // function : ~BasicGUI_CircleDlg()
129 // purpose  : Destroys the object and frees any allocated resources
130 //=================================================================================
131 BasicGUI_CircleDlg::~BasicGUI_CircleDlg()
132 {
133 }
134
135
136 //=================================================================================
137 // function : Init()
138 // purpose  :
139 //=================================================================================
140 void BasicGUI_CircleDlg::Init()
141 {
142   /* init variables */
143   myEditCurrentArgument = GroupPntVecR->LineEdit1;
144
145   myPoint = myDir = myPoint1 = myPoint2 = myPoint3 = GEOM::GEOM_Object::_nil();
146
147   // myGeomGUI->SetState( 0 );
148
149   /* Get setting of step value from file configuration */
150   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
151   double aStep = resMgr->doubleValue( "Geometry", "SettingsGeomStep", 100);
152
153   /* min, max, step and decimals for spin boxes & initial values */
154   GroupPntVecR->SpinBox_DX->RangeStepAndValidator(0.001, COORD_MAX, aStep, DBL_DIGITS_DISPLAY);
155   GroupPntVecR->SpinBox_DX->SetValue( 100 );
156
157   /* signals and slots connections */
158   connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
159   connect(myGeomGUI, SIGNAL(SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
160   connect(myGeomGUI, SIGNAL(SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
161   
162   connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
163   connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
164   connect(GroupConstructors, SIGNAL(clicked(int)), this, SLOT(ConstructorsClicked(int)));
165
166   connect(GroupPntVecR->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
167   connect(GroupPntVecR->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
168   connect(Group3Pnts->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
169   connect(Group3Pnts->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
170   connect(Group3Pnts->PushButton3, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
171
172   connect(GroupCenter2Pnts->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
173   connect(GroupCenter2Pnts->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
174   connect(GroupCenter2Pnts->PushButton3, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
175
176   connect(GroupPntVecR->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
177   connect(GroupPntVecR->LineEdit2, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
178
179   connect(GroupPntVecR->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
180   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), GroupPntVecR->SpinBox_DX, SLOT(SetStep(double)));
181   
182   connect(((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(),
183           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument())) ;
184
185   initName( tr( "GEOM_CIRCLE" ) );
186
187   Group3Pnts->hide();
188   GroupCenter2Pnts->hide();
189   ConstructorsClicked( 0 );
190 }
191
192 //=================================================================================
193 // function : ConstructorsClicked()
194 // purpose  : Radio button management
195 //=================================================================================
196 void BasicGUI_CircleDlg::ConstructorsClicked( int constructorId )
197 {
198   disconnect(((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(), 0, this, 0 );
199   myPoint = myDir = myPoint1 = myPoint2 = myPoint3 = GEOM::GEOM_Object::_nil();
200
201   switch ( constructorId )
202   {
203     case 0:
204       {
205         Group3Pnts->hide();
206         GroupCenter2Pnts->hide();
207         resize(0, 0);
208         GroupPntVecR->show();
209         
210         myEditCurrentArgument = GroupPntVecR->LineEdit1;
211         GroupPntVecR->LineEdit1->setText("");
212         GroupPntVecR->LineEdit2->setText("");
213         break;
214       }
215   case 1:
216     {
217       GroupPntVecR->hide();
218       GroupCenter2Pnts->hide();
219       resize( 0, 0 );
220       Group3Pnts->show();
221       
222       myEditCurrentArgument = Group3Pnts->LineEdit1;
223       Group3Pnts->LineEdit1->setText("");
224       Group3Pnts->LineEdit2->setText("");
225       Group3Pnts->LineEdit3->setText("");
226       break;
227       }
228    case 2:
229       {
230         GroupPntVecR->hide();
231         Group3Pnts->hide();             
232         resize( 0, 0 );
233         GroupCenter2Pnts->show();
234
235         myEditCurrentArgument = GroupCenter2Pnts->LineEdit1;
236         GroupCenter2Pnts->LineEdit1->setText("");
237         GroupCenter2Pnts->LineEdit2->setText("");
238         GroupCenter2Pnts->LineEdit3->setText("");
239         break;
240       }
241   }
242   
243   myEditCurrentArgument->setFocus();
244   globalSelection( GEOM_POINT );
245   connect(((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(), 
246           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
247 }
248
249 //=================================================================================
250 // function : ClickOnOk()
251 // purpose  :
252 //=================================================================================
253 void BasicGUI_CircleDlg::ClickOnOk()
254 {
255   if ( ClickOnApply() )
256     ClickOnCancel();
257 }
258
259 //=================================================================================
260 // function : ClickOnApply()
261 // purpose  :
262 //=================================================================================
263 bool BasicGUI_CircleDlg::ClickOnApply()
264 {
265   if ( !onAccept() )
266     return false;
267
268   initName();
269   ConstructorsClicked( getConstructorId() );
270   return true;
271 }
272
273 //=======================================================================
274 // function : ClickOnCancel()
275 // purpose  :
276 //=======================================================================
277 void BasicGUI_CircleDlg::ClickOnCancel()
278 {
279   GEOMBase_Skeleton::ClickOnCancel();
280 }
281
282 //=================================================================================
283 // function : SelectionIntoArgument()
284 // purpose  : Called when selection as changed or other case
285 //=================================================================================
286 void BasicGUI_CircleDlg::SelectionIntoArgument()
287 {
288   myEditCurrentArgument->setText("");
289   
290   if ( IObjectCount() != 1 )  
291   {
292     if      ( myEditCurrentArgument == GroupPntVecR->LineEdit1 ) myPoint  = GEOM::GEOM_Object::_nil();
293     else if ( myEditCurrentArgument == GroupPntVecR->LineEdit2 ) myDir    = GEOM::GEOM_Object::_nil();
294     else if ( myEditCurrentArgument == Group3Pnts->LineEdit1 )   myPoint1 = GEOM::GEOM_Object::_nil();
295     else if ( myEditCurrentArgument == Group3Pnts->LineEdit2 )   myPoint2 = GEOM::GEOM_Object::_nil();
296     else if ( myEditCurrentArgument == Group3Pnts->LineEdit3 )   myPoint3 = GEOM::GEOM_Object::_nil();
297     else if ( myEditCurrentArgument == GroupCenter2Pnts->LineEdit1 ) myPoint4  = GEOM::GEOM_Object::_nil();
298     else if ( myEditCurrentArgument == GroupCenter2Pnts->LineEdit2 ) myPoint5  = GEOM::GEOM_Object::_nil();
299     else if ( myEditCurrentArgument == GroupCenter2Pnts->LineEdit3 ) myPoint6  = GEOM::GEOM_Object::_nil();
300     return;
301   }
302
303   // nbSel == 1
304   Standard_Boolean aRes = Standard_False;
305   Handle(SALOME_InteractiveObject) anIO = firstIObject();
306   GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject( anIO, aRes );
307   if ( !CORBA::is_nil( aSelectedObject ) && aRes )
308   { 
309     myEditCurrentArgument->setText( GEOMBase::GetName( aSelectedObject ) );
310     if      ( myEditCurrentArgument == GroupPntVecR->LineEdit1 ) myPoint  = aSelectedObject;
311     else if ( myEditCurrentArgument == GroupPntVecR->LineEdit2 )
312       {
313         if ( aRes && !aSelectedObject->_is_nil() )
314           {
315             TopoDS_Shape aShape;
316
317             if ( GEOMBase::GetShape( aSelectedObject, aShape, TopAbs_SHAPE ) && !aShape.IsNull() )
318               {
319                 LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
320                 TColStd_IndexedMapOfInteger aMap;
321                 aSelMgr->GetIndexes( anIO, aMap );
322                 if ( aMap.Extent() == 1 )
323                   {
324                     GEOM::GEOM_IShapesOperations_var aShapesOp =
325                       getGeomEngine()->GetIShapesOperations( getStudyId() );
326                     int anIndex = aMap( 1 );
327                     TopTools_IndexedMapOfShape aShapes;
328                     TopExp::MapShapes( aShape, aShapes );
329                     aShape = aShapes.FindKey( anIndex );
330                     myDir = aShapesOp->GetSubShape(aSelectedObject, anIndex);
331                     aSelMgr->clearSelected();
332                   }
333                 else
334                   myDir = aSelectedObject;
335               }
336           }
337       }
338     else if ( myEditCurrentArgument == Group3Pnts->LineEdit1 )   myPoint1 = aSelectedObject;
339     else if ( myEditCurrentArgument == Group3Pnts->LineEdit2 )   myPoint2 = aSelectedObject;
340     else if ( myEditCurrentArgument == Group3Pnts->LineEdit3 )   myPoint3 = aSelectedObject;
341     else if ( myEditCurrentArgument == GroupCenter2Pnts->LineEdit1 ) myPoint4 = aSelectedObject;
342     else if ( myEditCurrentArgument == GroupCenter2Pnts->LineEdit2 ) myPoint5 = aSelectedObject;
343     else if ( myEditCurrentArgument == GroupCenter2Pnts->LineEdit3 ) myPoint6 = aSelectedObject;
344   }
345   displayPreview();
346 }
347
348
349 //=================================================================================
350 // function : SetEditCurrentArgument()
351 // purpose  :
352 //=================================================================================
353 void BasicGUI_CircleDlg::SetEditCurrentArgument()
354 {
355   QPushButton* send = (QPushButton*)sender();
356
357   if ( send == GroupPntVecR->PushButton1 )      myEditCurrentArgument = GroupPntVecR->LineEdit1;
358   else if ( send == GroupPntVecR->PushButton2 ) myEditCurrentArgument = GroupPntVecR->LineEdit2;
359   else if ( send == Group3Pnts->PushButton1 )   myEditCurrentArgument = Group3Pnts->LineEdit1;
360   else if ( send == Group3Pnts->PushButton2 )   myEditCurrentArgument = Group3Pnts->LineEdit2;
361   else if ( send == Group3Pnts->PushButton3 )   myEditCurrentArgument = Group3Pnts->LineEdit3;
362   else if ( send == GroupCenter2Pnts->PushButton1 )   myEditCurrentArgument = GroupCenter2Pnts->LineEdit1;
363   else if ( send == GroupCenter2Pnts->PushButton2 )   myEditCurrentArgument = GroupCenter2Pnts->LineEdit2;
364   else if ( send == GroupCenter2Pnts->PushButton3 )   myEditCurrentArgument = GroupCenter2Pnts->LineEdit3;
365   
366   myEditCurrentArgument->setFocus();
367   
368   if ( myEditCurrentArgument == GroupPntVecR->LineEdit2 )
369     {
370       //globalSelection( GEOM_LINE );
371       GEOM::GEOM_Object_var anObj;
372       localSelection( anObj, TopAbs_EDGE );
373     }
374   else
375     globalSelection( GEOM_POINT );
376   SelectionIntoArgument();
377 }
378
379 //=================================================================================
380 // function : LineEditReturnPressed()
381 // purpose  :
382 //=================================================================================
383 void BasicGUI_CircleDlg::LineEditReturnPressed()
384 {
385   QLineEdit* send = (QLineEdit*)sender();
386   if ( send == GroupPntVecR->LineEdit1 ||
387        send == GroupPntVecR->LineEdit2 ||
388        send == Group3Pnts->LineEdit1 ||
389        send == Group3Pnts->LineEdit2 ||
390        send == Group3Pnts->LineEdit3 ||
391        send == GroupCenter2Pnts->LineEdit1 ||
392        send == GroupCenter2Pnts->LineEdit2 ||
393        send == GroupCenter2Pnts->LineEdit3 )
394   {
395     myEditCurrentArgument = send;
396     GEOMBase_Skeleton::LineEditReturnPressed();
397   }
398 }
399
400
401 //=================================================================================
402 // function : ActivateThisDialog()
403 // purpose  :
404 //=================================================================================
405 void BasicGUI_CircleDlg::ActivateThisDialog()
406 {
407   GEOMBase_Skeleton::ActivateThisDialog();
408   globalSelection( GEOM_POINT );
409   connect(((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(), 
410           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
411
412   // myGeomGUI->SetState( 0 );
413
414   ConstructorsClicked( getConstructorId() );
415 }
416
417
418 //=================================================================================
419 // function : enterEvent()
420 // purpose  :
421 //=================================================================================
422 void BasicGUI_CircleDlg::enterEvent(QEvent* e)
423 {
424   if ( !GroupConstructors->isEnabled() )
425     ActivateThisDialog();
426 }
427
428 //=================================================================================
429 // function : DeactivateActiveDialog()
430 // purpose  : public slot to deactivate if active
431 //=================================================================================
432 void BasicGUI_CircleDlg::DeactivateActiveDialog()
433 {
434   // myGeomGUI->SetState( -1 );
435   GEOMBase_Skeleton::DeactivateActiveDialog();
436 }
437
438 //=================================================================================
439 // function : ValueChangedInSpinBox()
440 // purpose  :
441 //=================================================================================
442 void BasicGUI_CircleDlg::ValueChangedInSpinBox()
443 {
444   displayPreview();
445 }
446
447 //=================================================================================
448 // function : getRadius()
449 // purpose  :
450 //=================================================================================
451 double BasicGUI_CircleDlg::getRadius() const
452 {
453   switch ( getConstructorId() )
454     {
455     case 0 :
456       return GroupPntVecR->SpinBox_DX->GetValue();
457     }
458 }
459
460 //=================================================================================
461 // function : createOperation
462 // purpose  :
463 //=================================================================================
464 GEOM::GEOM_IOperations_ptr BasicGUI_CircleDlg::createOperation()
465 {
466   return myGeomGUI->GetGeomGen()->GetICurvesOperations( getStudyId() );
467 }
468
469 //=================================================================================
470 // function : isEqual
471 // purpose  : it may also be needed to check for min distance between gp_Pnt-s...
472 //=================================================================================
473 static bool isEqual( const GEOM::GEOM_Object_var& thePnt1, const GEOM::GEOM_Object_var& thePnt2 )
474 {
475   return thePnt1->_is_equivalent( thePnt2 );
476 }
477
478 //=================================================================================
479 // function : isValid
480 // purpose  :
481 //=================================================================================
482 bool BasicGUI_CircleDlg::isValid( QString& msg )
483 {
484   const int id = getConstructorId();
485   if ( id == 0 )
486     return !myPoint->_is_nil() && !myDir->_is_nil() && getRadius() > 0;
487   else if ( id == 1 )
488     return !myPoint1->_is_nil() && !myPoint2->_is_nil() && !myPoint3->_is_nil() &&
489       !isEqual( myPoint1, myPoint2 ) && !isEqual( myPoint1, myPoint3 ) && !isEqual( myPoint2, myPoint3 );
490   else if ( id == 2 )
491       return !myPoint4->_is_nil() && !myPoint5->_is_nil() && !myPoint6->_is_nil() &&
492       !isEqual( myPoint4, myPoint5 ) && !isEqual( myPoint5, myPoint6 ) && !isEqual( myPoint4, myPoint6 );
493   return false;
494 }
495
496 //=================================================================================
497 // function : execute
498 // purpose  :
499 //=================================================================================
500 bool BasicGUI_CircleDlg::execute( ObjectList& objects )
501 {
502   bool res = false;
503   
504   GEOM::GEOM_Object_var anObj;
505   
506   switch ( getConstructorId() )
507   {
508     cout << "constructior ID = " << getConstructorId() << endl;
509   case 0 :
510     anObj = GEOM::GEOM_ICurvesOperations::_narrow( getOperation() )->MakeCirclePntVecR( myPoint, myDir, getRadius() );
511     res = true;
512     break;
513   case 1 :
514     anObj = GEOM::GEOM_ICurvesOperations::_narrow( getOperation() )->MakeCircleThreePnt( myPoint1, myPoint2, myPoint3 );
515     res = true;
516     break;
517   case 2 :
518     anObj = GEOM::GEOM_ICurvesOperations::_narrow( getOperation() )->MakeCircleCenter2Pnt( myPoint4, myPoint5, myPoint6 );
519     res = true;
520     break;
521   }
522   
523   if ( !anObj->_is_nil() )
524     objects.push_back( anObj._retn() );
525   else cout << "Execute Object is NULL!" << endl;
526   
527   return res;
528 }
529
530 //=================================================================================
531 // function : closeEvent
532 // purpose  :
533 //=================================================================================
534 void BasicGUI_CircleDlg::closeEvent( QCloseEvent* e )
535 {
536   GEOMBase_Skeleton::closeEvent( e );
537 }
538