Salome HOME
Merge from V6_1_BR 07/09/2010
[modules/geom.git] / src / BasicGUI / BasicGUI_PointDlg.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_PointDlg.cxx
25 //  Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
26 //
27 #include "BasicGUI_PointDlg.h"
28
29 #include <SUIT_ResourceMgr.h>
30 #include <SUIT_Session.h>
31 #include <SalomeApp_Application.h>
32 #include <LightApp_SelectionMgr.h>
33
34 #include <GeometryGUI.h>
35 #include <GEOMBase.h>
36
37 #include <DlgRef.h>
38
39 #include <GEOMImpl_Types.hxx>
40
41 #include <QApplication>
42 #include <QButtonGroup>
43 #include <QHBoxLayout>
44 #include <QLabel>
45 #include <QRadioButton>
46 #include <QMenu>
47 #include <QTimer>
48
49 #include <gp_Pnt.hxx>
50 #include <TopoDS_Shape.hxx>
51 #include <TopAbs_ShapeEnum.hxx>
52 #include <TopoDS.hxx>
53 #include <BRep_Tool.hxx>
54 #include <TopExp.hxx>
55 #include <TColStd_IndexedMapOfInteger.hxx>
56 #include <TopTools_IndexedMapOfShape.hxx>
57
58 #define PARAM_VALUE 0
59 #define COORD_VALUE 1
60
61 #define GEOM_POINT_XYZ    0
62 #define GEOM_POINT_REF    1
63 #define GEOM_POINT_EDGE   2
64 #define GEOM_POINT_INTINT 3
65 #define GEOM_POINT_SURF   4
66
67 #define SPACING 6
68 #define MARGIN  9
69
70 //=================================================================================
71 // class    : BasicGUI_PointDlg()
72 // purpose  : Constructs a BasicGUI_PointDlg which is a child of 'parent', with the
73 //            name 'name' and widget flags set to 'f'.
74 //            The dialog will by default be modeless, unless you set 'modal' to
75 //            TRUE to construct a modal dialog.
76 //=================================================================================
77 BasicGUI_PointDlg::BasicGUI_PointDlg( GeometryGUI* theGeometryGUI, QWidget* parent,
78                                       bool modal, Qt::WindowFlags fl )
79   : GEOMBase_Skeleton( theGeometryGUI, parent, modal, fl ),
80     myBusy ( false )
81 {
82   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_POINT") ) );
83   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_POINT_EDGE" ) ) );
84   QPixmap image2( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
85   QPixmap image3( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_POINT_REF" ) ) );
86   QPixmap image4( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_POINT_LINES") ) );
87   QPixmap image5( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_POINT_FACE" ) ) );
88   QPixmap image6( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICO_LINE" ) ) );
89   QPixmap image7( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICO_WIRE" ) ) );
90
91   setWindowTitle( tr( "GEOM_POINT_TITLE" ) );
92
93   /***************************************************************/
94   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_POINTS" ) );
95   mainFrame()->RadioButton1->setIcon( image0 );
96   mainFrame()->RadioButton2->setIcon( image3 );
97   mainFrame()->RadioButton3->setIcon( image1 );
98   mainFrame()->RadioButton4->show();
99   mainFrame()->RadioButton4->setIcon( image4 );
100   mainFrame()->RadioButton5->show();
101   mainFrame()->RadioButton5->setIcon( image5 );
102
103   myParamGroup = new QGroupBox( centralWidget() );
104   myParamCoord = new QButtonGroup( myParamGroup );
105   QHBoxLayout* boxLayout = new QHBoxLayout( myParamGroup );
106   boxLayout->setMargin( MARGIN ); boxLayout->setSpacing( SPACING );
107   QRadioButton* btn = new QRadioButton( tr( "GEOM_PARAM_VALUE" ), myParamGroup );
108   myParamCoord->addButton( btn, PARAM_VALUE );
109   boxLayout->addWidget( btn );
110   btn = new QRadioButton( tr( "GEOM_COORD_VALUE" ), myParamGroup );
111   myParamCoord->addButton( btn, COORD_VALUE );
112   boxLayout->addWidget( btn );
113   myParamCoord->setExclusive( true );
114   myParamCoord->button( PARAM_VALUE )->setChecked( true );
115
116   GroupXYZ = new DlgRef_3Spin( centralWidget() );
117   GroupXYZ->GroupBox1->setTitle( tr( "GEOM_COORDINATES" ) );
118   GroupXYZ->TextLabel1->setText( tr( "GEOM_X" ) );
119   GroupXYZ->TextLabel2->setText( tr( "GEOM_Y" ) );
120   GroupXYZ->TextLabel3->setText( tr( "GEOM_Z" ) );
121
122   GroupOnCurve = new DlgRef_1Sel1Spin( centralWidget() );
123   GroupOnCurve->GroupBox1->setTitle( tr( "GEOM_POINT_ON_EDGE" ) );
124   GroupOnCurve->TextLabel1->setText( tr( "GEOM_EDGE" ) );
125   GroupOnCurve->TextLabel2->setText( tr( "GEOM_PARAMETER" ) );
126   GroupOnCurve->PushButton1->setIcon( image2 );
127
128   GroupOnSurface = new DlgRef_1Sel2Spin( centralWidget() );
129   GroupOnSurface->GroupBox1->setTitle( tr( "GEOM_POINT_ON_FACE" ) );
130   GroupOnSurface->TextLabel1->setText( tr( "GEOM_FACE" ) );
131   GroupOnSurface->TextLabel2->setText( tr( "GEOM_UPARAMETER" ) );
132   GroupOnSurface->TextLabel3->setText( tr( "GEOM_VPARAMETER" ) );
133   GroupOnSurface->PushButton1->setIcon( image2 );
134
135   GroupRefPoint = new DlgRef_1Sel3Spin( centralWidget() );
136   GroupRefPoint->GroupBox1->setTitle( tr( "GEOM_REF_POINT" ) );
137   GroupRefPoint->TextLabel1->setText( tr( "GEOM_POINT" ) );
138   GroupRefPoint->PushButton1->setIcon( image2 );
139   GroupRefPoint->TextLabel2->setText( tr( "GEOM_DX" ) );
140   GroupRefPoint->TextLabel3->setText( tr( "GEOM_DY" ) );
141   GroupRefPoint->TextLabel4->setText( tr( "GEOM_DZ" ) );
142
143   /* popup menu for line intersect buttons */
144   myBtnPopup = new QMenu(this);
145   QIcon ico_line = QIcon( image6 );
146   QIcon ico_wire = QIcon( image7 );
147   myActions[myBtnPopup->addAction( ico_line, tr( "GEOM_EDGE" ) )] = 0;
148   myActions[myBtnPopup->addAction( ico_wire, tr( "GEOM_WIRE" ) )] = 1;
149
150   GroupLineIntersection = new DlgRef_2Sel( centralWidget() );
151   GroupLineIntersection->GroupBox1->setTitle( tr( "GEOM_LINE_INTERSECTION" ) );
152   GroupLineIntersection->TextLabel1->setText( tr( "GEOM_LINE1" ) );
153   GroupLineIntersection->TextLabel2->setText( tr( "GEOM_LINE2" ) );
154   GroupLineIntersection->PushButton1->setIcon( image2 );
155   GroupLineIntersection->PushButton1->setMenu( myBtnPopup );
156   GroupLineIntersection->PushButton2->setIcon( image2 );
157   GroupLineIntersection->PushButton2->setMenu( myBtnPopup );
158   GroupLineIntersection->LineEdit2->setEnabled(false);
159
160   myCoordGrp = new QGroupBox( tr( "GEOM_COORDINATES_RES" ), centralWidget() );
161   QGridLayout* myCoordGrpLayout = new QGridLayout( myCoordGrp );
162   myCoordGrpLayout->addWidget( new QLabel( tr( "GEOM_X" ), myCoordGrp ), 0, 0 );
163   myX = new QLineEdit( myCoordGrp );
164   myCoordGrpLayout->addWidget( myX, 0, 1 );
165   myCoordGrpLayout->addWidget( new QLabel( tr( "GEOM_Y" ), myCoordGrp ), 1, 0 );
166   myY = new QLineEdit( myCoordGrp );
167   myCoordGrpLayout->addWidget( myY, 1, 1 );
168   myCoordGrpLayout->addWidget( new QLabel( tr( "GEOM_Z" ), myCoordGrp ), 2, 0 );
169   myZ = new QLineEdit( myCoordGrp );
170   myCoordGrpLayout->addWidget( myZ, 2, 1 );
171
172   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
173   layout->setMargin( 0 ); layout->setSpacing( 6 );
174   layout->addWidget( myParamGroup );
175   layout->addWidget( GroupXYZ );
176   layout->addWidget( GroupOnCurve );
177   layout->addWidget( GroupOnSurface );
178   layout->addWidget( GroupRefPoint );
179   layout->addWidget( GroupLineIntersection );
180   layout->addWidget( myCoordGrp );
181
182   myX->setReadOnly( true );
183   myY->setReadOnly( true );
184   myZ->setReadOnly( true );
185
186   myX->setEnabled( false );
187   myY->setEnabled( false );
188   myZ->setEnabled( false );
189
190   QPalette aPal = myX->palette();
191   aPal.setColor( QPalette::Disabled, QPalette::Text, QColor( 0, 0, 0 ) );
192   myX->setPalette( aPal );
193   myY->setPalette( aPal );
194   myZ->setPalette( aPal );
195
196   setHelpFileName( "create_point_page.html" );
197
198   Init();
199 }
200
201
202 //=================================================================================
203 // function : ~BasicGUI_PointDlg()
204 // purpose  : Destructor
205 //=================================================================================
206 BasicGUI_PointDlg::~BasicGUI_PointDlg()
207 {
208 }
209
210
211 //=================================================================================
212 // function : Init()
213 // purpose  :
214 //=================================================================================
215 void BasicGUI_PointDlg::Init()
216 {
217   GroupOnCurve->LineEdit1->setReadOnly( true );
218   GroupOnSurface->LineEdit1->setReadOnly( true );
219   GroupRefPoint->LineEdit1->setReadOnly( true );
220   GroupLineIntersection->LineEdit1->setReadOnly( true );
221   GroupLineIntersection->LineEdit2->setReadOnly( true );
222   GroupLineIntersection->LineEdit1->setEnabled( true );
223   GroupLineIntersection->LineEdit2->setEnabled( false );
224
225   myEdge = GEOM::GEOM_Object::_nil();
226   myRefPoint = GEOM::GEOM_Object::_nil();
227   myNeedType = TopAbs_VERTEX;
228
229   myEditCurrentArgument = 0;
230
231   /* Get setting of step value from file configuration */
232   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
233   double step = resMgr->doubleValue( "Geometry", "SettingsGeomStep", 100 );
234
235   /* min, max, step and decimals for spin boxes */
236   initSpinBox( GroupXYZ->SpinBox_DX, COORD_MIN, COORD_MAX, step, "length_precision" );
237   initSpinBox( GroupXYZ->SpinBox_DY, COORD_MIN, COORD_MAX, step, "length_precision" );
238   initSpinBox( GroupXYZ->SpinBox_DZ, COORD_MIN, COORD_MAX, step, "length_precision" );
239   GroupXYZ->SpinBox_DX->setValue( 0.0 );
240   GroupXYZ->SpinBox_DY->setValue( 0.0 );
241   GroupXYZ->SpinBox_DZ->setValue( 0.0 );
242
243   initSpinBox( GroupRefPoint->SpinBox_DX, COORD_MIN, COORD_MAX, step, "length_precision" );
244   initSpinBox( GroupRefPoint->SpinBox_DY, COORD_MIN, COORD_MAX, step, "length_precision" );
245   initSpinBox( GroupRefPoint->SpinBox_DZ, COORD_MIN, COORD_MAX, step, "length_precision" );
246   GroupRefPoint->SpinBox_DX->setValue( 0.0 );
247   GroupRefPoint->SpinBox_DY->setValue( 0.0 );
248   GroupRefPoint->SpinBox_DZ->setValue( 0.0 );
249
250   step = 0.1;
251
252   initSpinBox( GroupOnCurve->SpinBox_DX, 0., 1., step, "parametric_precision" );
253   GroupOnCurve->SpinBox_DX->setValue( 0.5 );
254
255   initSpinBox( GroupOnSurface->SpinBox_DX, 0., 1., step, "parametric_precision" );
256   GroupOnSurface->SpinBox_DX->setValue( 0.5 );
257   initSpinBox( GroupOnSurface->SpinBox_DY, 0., 1., step, "parametric_precision" );
258   GroupOnSurface->SpinBox_DY->setValue( 0.5 );
259
260   /* signals and slots connections */
261   connect( myGeomGUI,      SIGNAL( SignalDeactivateActiveDialog() ), this, SLOT( DeactivateActiveDialog() ) );
262   connect( myGeomGUI,      SIGNAL( SignalCloseAllDialogs() ),        this, SLOT( ClickOnCancel() ) );
263
264   connect( buttonOk(),     SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
265   connect( buttonApply(),  SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
266
267   connect( this,           SIGNAL( constructorsClicked( int ) ), this, SLOT( ConstructorsClicked( int ) ) );
268
269   connect( myParamCoord,   SIGNAL( buttonClicked( int ) ), this, SLOT( ClickParamCoord( int ) ) );
270   connect( GroupOnCurve->PushButton1, SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
271   connect( GroupOnCurve->LineEdit1,   SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
272
273   connect( GroupOnSurface->PushButton1, SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
274   connect( GroupOnSurface->LineEdit1,   SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
275
276   connect( myBtnPopup, SIGNAL( triggered( QAction* ) ), SLOT( onBtnPopup( QAction* ) ) );
277   connect( GroupLineIntersection->PushButton1, SIGNAL( pressed() ),       this, SLOT( SetEditCurrentArgument() ) );
278   connect( GroupLineIntersection->PushButton2, SIGNAL( pressed() ),       this, SLOT( SetEditCurrentArgument() ) );
279   connect( GroupLineIntersection->LineEdit1,   SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
280   connect( GroupLineIntersection->LineEdit2,   SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
281
282   connect( GroupOnCurve->SpinBox_DX,   SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
283   connect( GroupOnSurface->SpinBox_DX, SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
284   connect( GroupOnSurface->SpinBox_DY, SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
285   connect( GroupXYZ->SpinBox_DX,       SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
286   connect( GroupXYZ->SpinBox_DY,       SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
287   connect( GroupXYZ->SpinBox_DZ,       SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
288   connect( GroupRefPoint->SpinBox_DX,  SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
289   connect( GroupRefPoint->SpinBox_DY,  SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
290   connect( GroupRefPoint->SpinBox_DZ,  SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
291
292   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), this,  SLOT( SetDoubleSpinBoxStep( double ) ) );
293
294   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged() ),
295            this,  SLOT(SelectionIntoArgument() ) );
296
297   initName( tr( "GEOM_VERTEX" ) );
298
299   ConstructorsClicked( 0 );
300 }
301
302 //=================================================================================
303 // function : SetDoubleSpinBoxStep()
304 // purpose  : Double spin box management
305 //=================================================================================
306 void BasicGUI_PointDlg::SetDoubleSpinBoxStep( double step )
307 {
308   GroupOnCurve->SpinBox_DX->setSingleStep(step);
309   GroupXYZ->SpinBox_DX->setSingleStep(step);
310   GroupXYZ->SpinBox_DY->setSingleStep(step);
311   GroupXYZ->SpinBox_DZ->setSingleStep(step);
312   GroupRefPoint->SpinBox_DX->setSingleStep(step);
313   GroupRefPoint->SpinBox_DY->setSingleStep(step);
314   GroupRefPoint->SpinBox_DZ->setSingleStep(step);
315 }
316
317
318 //=================================================================================
319 // function : ConstructorsClicked()
320 // purpose  : Radio button management
321 //=================================================================================
322 void BasicGUI_PointDlg::ConstructorsClicked(int constructorId)
323 {
324   switch ( constructorId ) {
325   case GEOM_POINT_XYZ:
326     {
327       globalSelection(); // close local contexts, if any
328       localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
329
330       GroupRefPoint->hide();
331       GroupOnCurve->hide();
332       GroupLineIntersection->hide();
333       GroupOnSurface->hide();
334       myCoordGrp->hide();
335       myParamGroup->hide();
336       GroupXYZ->show();
337       break;
338     }
339   case GEOM_POINT_REF:
340     {
341       globalSelection(); // close local contexts, if any
342       localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
343
344       myEditCurrentArgument = GroupRefPoint->LineEdit1;
345       myEditCurrentArgument->setText( "" );
346       myRefPoint = GEOM::GEOM_Object::_nil();
347       GroupRefPoint->PushButton1->setDown(true);
348       myParamGroup->hide();
349       GroupXYZ->hide();
350       GroupOnCurve->hide();
351       GroupLineIntersection->hide();
352       GroupOnSurface->hide();
353       GroupRefPoint->show();
354       myCoordGrp->show();
355       break;
356     }
357   case GEOM_POINT_EDGE:
358     {
359       globalSelection(); // close local contexts, if any
360       localSelection( GEOM::GEOM_Object::_nil(), TopAbs_EDGE );
361
362       myEditCurrentArgument = GroupOnCurve->LineEdit1;
363       myEditCurrentArgument->setText( "" );
364       myEdge = GEOM::GEOM_Object::_nil();
365       GroupOnCurve->PushButton1->setDown(true);
366       GroupRefPoint->hide();
367       GroupLineIntersection->hide();
368       GroupOnSurface->hide();
369       myParamGroup->show();
370       GroupOnCurve->show();
371       myCoordGrp->show();
372       updateParamCoord( false );
373       break;
374     }
375   case GEOM_POINT_INTINT:
376     {
377       globalSelection(); // close local contexts, if any
378       localSelection( GEOM::GEOM_Object::_nil(), TopAbs_EDGE );
379       myNeedType = TopAbs_EDGE;
380
381       myEditCurrentArgument = GroupLineIntersection->LineEdit1;
382       GroupLineIntersection->LineEdit1->setText( "" );
383       GroupLineIntersection->LineEdit2->setText( "" );
384       GroupLineIntersection->LineEdit1->setEnabled( true );
385       GroupLineIntersection->LineEdit2->setEnabled( false );
386       myLine1 = GEOM::GEOM_Object::_nil();
387       myLine2 = GEOM::GEOM_Object::_nil();
388       GroupLineIntersection->PushButton1->setDown(true);
389       GroupLineIntersection->PushButton2->setDown(false);
390       myParamGroup->hide();
391       GroupXYZ->hide();
392       GroupRefPoint->hide();
393       GroupOnCurve->hide();
394       GroupOnSurface->hide();
395       myCoordGrp->hide();
396       GroupLineIntersection->show();
397       break;
398     }
399   case GEOM_POINT_SURF:
400     {
401       globalSelection(); // close local contexts, if any
402       localSelection( GEOM::GEOM_Object::_nil(), TopAbs_FACE );
403
404       myEditCurrentArgument = GroupOnSurface->LineEdit1;
405       myEditCurrentArgument->setText( "" );
406       myFace = GEOM::GEOM_Object::_nil();
407       GroupOnSurface->PushButton1->setDown(true);
408       GroupRefPoint->hide();
409       GroupOnCurve->hide();
410       GroupLineIntersection->hide();
411       myParamGroup->show();
412       GroupOnSurface->show();
413       myCoordGrp->show();
414       updateParamCoord( false );
415       break;
416     }
417   }
418
419   myX->setText( "" );
420   myY->setText( "" );
421   myZ->setText( "" );
422
423   QTimer::singleShot(50, this, SLOT(updateSize()));
424
425   SelectionIntoArgument();
426 }
427
428
429 //=================================================================================
430 // function : ClickOnOk()
431 // purpose  :
432 //=================================================================================
433 void BasicGUI_PointDlg::ClickOnOk()
434 {
435   if ( onAccept() )
436     ClickOnCancel();
437 }
438
439
440 //=================================================================================
441 // function : ClickOnApply()
442 // purpose  :
443 //=================================================================================
444 bool BasicGUI_PointDlg::ClickOnApply()
445 {
446   if ( !onAccept() )
447     return false;
448
449   initName();
450   ConstructorsClicked( getConstructorId() );
451   return true;
452 }
453
454
455 //=================================================================================
456 // function : SelectionIntoArgument()
457 // purpose  : Called when selection as changed (for constructors not using local context)
458 //=================================================================================
459 void BasicGUI_PointDlg::SelectionIntoArgument()
460 {
461   erasePreview();
462   const int id = getConstructorId();
463
464   if ( ( id == GEOM_POINT_REF || id == GEOM_POINT_EDGE || id == GEOM_POINT_SURF ) && myEditCurrentArgument != 0 )
465   {
466     myEditCurrentArgument->setText( "" );
467     myX->setText( "" );
468     myY->setText( "" );
469     myZ->setText( "" );
470     myRefPoint = myEdge = myFace = GEOM::GEOM_Object::_nil();
471   } else if ( id == GEOM_POINT_INTINT ) {
472     myEditCurrentArgument->setText( "" );
473     if ( myEditCurrentArgument == GroupLineIntersection->LineEdit1 )
474       myLine1 = GEOM::GEOM_Object::_nil();
475     else if ( myEditCurrentArgument == GroupLineIntersection->LineEdit2 )
476       myLine2 = GEOM::GEOM_Object::_nil();
477   }
478
479   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
480   SALOME_ListIO aSelList;
481   aSelMgr->selectedObjects(aSelList);
482
483   if (aSelList.Extent() == 1) {
484     Standard_Boolean aRes = Standard_False;
485     Handle(SALOME_InteractiveObject) anIO = aSelList.First();
486     GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject( anIO, aRes );
487     if ( !CORBA::is_nil( aSelectedObject ) && aRes ) {
488       QString aName = GEOMBase::GetName(aSelectedObject);
489       TopoDS_Shape aShape;
490       if ( GEOMBase::GetShape( aSelectedObject, aShape, TopAbs_SHAPE ) && !aShape.IsNull() ) {
491         if ( id == GEOM_POINT_XYZ || id == GEOM_POINT_REF)
492           myNeedType = TopAbs_VERTEX;
493         else if ( id == GEOM_POINT_EDGE )
494           myNeedType = TopAbs_EDGE;
495         else if ( id == GEOM_POINT_SURF )
496           myNeedType = TopAbs_FACE;
497
498         TColStd_IndexedMapOfInteger aMap;
499         aSelMgr->GetIndexes(anIO, aMap);
500         if ( aMap.Extent() == 1 ) { // Local Selection
501           int anIndex = aMap( 1 );
502           if ( myNeedType == TopAbs_FACE )
503             aName += QString( ":face_%1" ).arg( anIndex );
504           else if ( myNeedType == TopAbs_WIRE )
505             aName += QString( ":wire_%1" ).arg( anIndex );
506           else if ( myNeedType == TopAbs_EDGE )
507             aName += QString( ":edge_%1" ).arg( anIndex );
508           else  if ( myNeedType == TopAbs_VERTEX )
509             aName += QString( ":vertex_%1" ).arg( anIndex );
510
511           //Find SubShape Object in Father
512           GEOM::GEOM_Object_var aFindedObject = GEOMBase_Helper::findObjectInFather(aSelectedObject, aName);
513
514           if ( aFindedObject == GEOM::GEOM_Object::_nil() ) { // Object not found in study
515             GEOM::GEOM_IShapesOperations_var aShapesOp =
516               getGeomEngine()->GetIShapesOperations(getStudyId());
517             aSelectedObject = aShapesOp->GetSubShape(aSelectedObject, anIndex);
518           }
519           else {
520             aSelectedObject = aFindedObject; // get Object from study
521           }
522           GEOMBase::GetShape( aSelectedObject, aShape, TopAbs_SHAPE );
523         }
524         else { // Global Selection
525           if ( aShape.ShapeType() != myNeedType ) {
526             aSelectedObject = GEOM::GEOM_Object::_nil();
527             aName = "";
528             if ( id == GEOM_POINT_XYZ ) return;
529           }
530         }
531       }
532
533       if ( aShape.IsNull() || aShape.ShapeType() != myNeedType)
534         return;
535
536       myBusy = true;
537
538       if ( id == GEOM_POINT_XYZ ) {
539         gp_Pnt aPnt = BRep_Tool::Pnt( TopoDS::Vertex( aShape ) );
540         GroupXYZ->SpinBox_DX->setValue( aPnt.X() );
541         GroupXYZ->SpinBox_DY->setValue( aPnt.Y() );
542         GroupXYZ->SpinBox_DZ->setValue( aPnt.Z() );
543       }
544       else if ( id == GEOM_POINT_REF ) {
545         myRefPoint = aSelectedObject;
546         GroupRefPoint->LineEdit1->setText( aName );
547       }
548       else if ( id == GEOM_POINT_EDGE ) {
549         myEdge = aSelectedObject;
550         GroupOnCurve->LineEdit1->setText( aName );
551       }
552       else if ( id == GEOM_POINT_INTINT ) {
553         myEditCurrentArgument->setText( aName );
554         if ( myEditCurrentArgument == GroupLineIntersection->LineEdit1 ) {
555           myLine1 = aSelectedObject;
556           if ( !myLine1->_is_nil() && myLine2->_is_nil() ) {
557             GroupLineIntersection->PushButton2->setMenu( 0 );
558             GroupLineIntersection->PushButton2->click();
559             GroupLineIntersection->PushButton2->setDown(true);
560             GroupLineIntersection->PushButton2->setMenu( myBtnPopup );
561           }
562         }
563         else if ( myEditCurrentArgument == GroupLineIntersection->LineEdit2 ) {
564           myLine2 = aSelectedObject;
565           if ( !myLine2->_is_nil() && myLine1->_is_nil() ) {
566             GroupLineIntersection->PushButton1->setMenu( 0 );
567             GroupLineIntersection->PushButton1->click();
568             GroupLineIntersection->PushButton1->setDown(true);
569             GroupLineIntersection->PushButton1->setMenu( myBtnPopup );
570           }
571         }
572       }
573       else if ( id == GEOM_POINT_SURF )
574       {
575         myFace = aSelectedObject;
576         GroupOnSurface->LineEdit1->setText( aName );
577       }
578       myBusy = false;
579     }
580   }
581
582   displayPreview();
583 }
584
585
586 //=================================================================================
587 // function : LineEditReturnPressed()
588 // purpose  :
589 //=================================================================================
590 void BasicGUI_PointDlg::LineEditReturnPressed()
591 {
592   QLineEdit* send = (QLineEdit*)sender();
593   if ( send == GroupRefPoint->LineEdit1         ||
594        send == GroupOnCurve->LineEdit1          ||
595        send == GroupLineIntersection->LineEdit1 ||
596        send == GroupLineIntersection->LineEdit2  ) {
597     myEditCurrentArgument = send;
598     GEOMBase_Skeleton::LineEditReturnPressed();
599   }
600 }
601
602
603 //=================================================================================
604 // function : SetEditCurrentArgument()
605 // purpose  :
606 //=================================================================================
607 void BasicGUI_PointDlg::SetEditCurrentArgument()
608 {
609   QPushButton* send = (QPushButton*)sender();
610
611   if ( send == GroupRefPoint->PushButton1 ) {
612     GroupRefPoint->LineEdit1->setFocus();
613     myEditCurrentArgument = GroupRefPoint->LineEdit1;
614     globalSelection(); // close local contexts, if any
615     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
616   }
617   else if ( send == GroupOnCurve->PushButton1 ) {
618     GroupOnCurve->LineEdit1->setFocus();
619     myEditCurrentArgument = GroupOnCurve->LineEdit1;
620     globalSelection(); // close local contexts, if any
621     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_EDGE );
622   }
623   else if ( send == GroupOnSurface->PushButton1 )
624   {
625     GroupOnSurface->LineEdit1->setFocus();
626     myEditCurrentArgument = GroupOnSurface->LineEdit1;
627     globalSelection(); // close local contexts, if any
628     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_FACE );
629   }
630   else if ( send == GroupLineIntersection->PushButton1 ) {
631     GroupLineIntersection->LineEdit1->setFocus();
632     myEditCurrentArgument = GroupLineIntersection->LineEdit1;
633     GroupLineIntersection->PushButton2->setDown( false );
634     GroupLineIntersection->LineEdit1->setEnabled(true);
635     GroupLineIntersection->LineEdit2->setEnabled(false);
636   }
637   else if ( send == GroupLineIntersection->PushButton2 ) {
638     GroupLineIntersection->LineEdit2->setFocus();
639     myEditCurrentArgument = GroupLineIntersection->LineEdit2;
640     GroupLineIntersection->PushButton1->setDown( false );
641     GroupLineIntersection->LineEdit1->setEnabled(false);
642     GroupLineIntersection->LineEdit2->setEnabled(true);
643   }
644   send->setDown(true);
645
646   if ( ( send == GroupLineIntersection->PushButton1 ||
647          send == GroupLineIntersection->PushButton2 ) && !myBusy )
648     SelectionIntoArgument();
649 }
650
651
652 //=================================================================================
653 // function : enterEvent()
654 // purpose  : to reactivate this dialog box when mouse enter onto the window
655 //=================================================================================
656 void BasicGUI_PointDlg::enterEvent( QEvent* )
657 {
658   if ( !mainFrame()->GroupConstructors->isEnabled() )
659     ActivateThisDialog();
660 }
661
662
663 //=================================================================================
664 // function : ActivateThisDialog()
665 // purpose  :
666 //=================================================================================
667 void BasicGUI_PointDlg::ActivateThisDialog( )
668 {
669   GEOMBase_Skeleton::ActivateThisDialog();
670
671   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
672            this, SLOT( SelectionIntoArgument() ) );
673
674   ConstructorsClicked( getConstructorId() );
675 }
676
677
678 //=================================================================================
679 // function : DeactivateActiveDialog()
680 // purpose  : public slot to deactivate if active
681 //=================================================================================
682 void BasicGUI_PointDlg::DeactivateActiveDialog()
683 {
684   // myGeomGUI->SetState( -1 );
685   GEOMBase_Skeleton::DeactivateActiveDialog();
686 }
687
688
689 //=================================================================================
690 // function : ValueChangedInSpinBox()
691 // purpose  :
692 //=================================================================================
693 void BasicGUI_PointDlg::ValueChangedInSpinBox(double newValue)
694 {
695   displayPreview();
696 }
697
698 //=================================================================================
699 // funcion  : getParameter()
700 // purpose  :
701 //=================================================================================
702 double BasicGUI_PointDlg::getParameter() const
703 {
704   return GroupOnCurve->SpinBox_DX->value();
705 }
706
707
708 //=================================================================================
709 // funcion  : getUParameter()
710 // purpose  :
711 //=================================================================================
712 double BasicGUI_PointDlg::getUParameter() const
713 {
714   return GroupOnSurface->SpinBox_DX->value();
715 }
716
717
718 //=================================================================================
719 // funcion  : getVParameter()
720 // purpose  :
721 //=================================================================================
722 double BasicGUI_PointDlg::getVParameter() const
723 {
724   return GroupOnSurface->SpinBox_DY->value();
725 }
726
727
728 //=================================================================================
729 // function : OnPointSelected
730 // purpose  :
731 //=================================================================================
732 void BasicGUI_PointDlg::OnPointSelected( const gp_Pnt& thePnt )
733 {
734   if ( getConstructorId() == GEOM_POINT_XYZ ) {
735     GroupXYZ->SpinBox_DX->setValue( thePnt.X() );
736     GroupXYZ->SpinBox_DY->setValue( thePnt.Y() );
737     GroupXYZ->SpinBox_DZ->setValue( thePnt.Z() );
738
739     displayPreview();
740   }
741 }
742
743 //=================================================================================
744 // function : createOperation
745 // purpose  :
746 //=================================================================================
747 GEOM::GEOM_IOperations_ptr BasicGUI_PointDlg::createOperation()
748 {
749   return myGeomGUI->GetGeomGen()->GetIBasicOperations( getStudyId() );
750 }
751
752 //=================================================================================
753 // function : isValid
754 // purpose  :
755 //=================================================================================
756 bool BasicGUI_PointDlg::isValid( QString& msg )
757 {
758   const int id = getConstructorId();
759   if ( id == GEOM_POINT_XYZ ) {
760     bool ok = true;
761     ok = GroupXYZ->SpinBox_DX->isValid( msg, !IsPreview() ) && ok;
762     ok = GroupXYZ->SpinBox_DY->isValid( msg, !IsPreview() ) && ok;
763     ok = GroupXYZ->SpinBox_DZ->isValid( msg, !IsPreview() ) && ok;
764     return ok;
765   }
766   else if ( id == GEOM_POINT_REF ) {
767     bool ok = true;
768     ok = GroupRefPoint->SpinBox_DX->isValid( msg, !IsPreview() ) && ok;
769     ok = GroupRefPoint->SpinBox_DY->isValid( msg, !IsPreview() ) && ok;
770     ok = GroupRefPoint->SpinBox_DZ->isValid( msg, !IsPreview() ) && ok;
771
772     return !myRefPoint->_is_nil() && ok;
773   }
774   else if ( id == GEOM_POINT_EDGE ) {
775     bool ok = true;
776     if ( myParamCoord->checkedId() == PARAM_VALUE )
777       ok = GroupOnCurve->SpinBox_DX->isValid( msg, !IsPreview() );
778     else {
779       ok = GroupXYZ->SpinBox_DX->isValid( msg, !IsPreview() ) && ok;
780       ok = GroupXYZ->SpinBox_DY->isValid( msg, !IsPreview() ) && ok;
781       ok = GroupXYZ->SpinBox_DZ->isValid( msg, !IsPreview() ) && ok;
782     }
783     return !myEdge->_is_nil() && ok;
784   }
785   else if ( id == GEOM_POINT_INTINT )
786     return ( !myLine1->_is_nil() && !myLine2->_is_nil() );
787   else if ( id == GEOM_POINT_SURF ) {
788     bool ok = true;
789     if ( myParamCoord->checkedId() == PARAM_VALUE ) {
790       ok = GroupOnSurface->SpinBox_DX->isValid( msg, !IsPreview() ) && ok;
791       ok = GroupOnSurface->SpinBox_DY->isValid( msg, !IsPreview() ) && ok;
792     }
793     else {
794       ok = GroupXYZ->SpinBox_DX->isValid( msg, !IsPreview() ) && ok;
795       ok = GroupXYZ->SpinBox_DY->isValid( msg, !IsPreview() ) && ok;
796       ok = GroupXYZ->SpinBox_DZ->isValid( msg, !IsPreview() ) && ok;
797     }
798     return !myFace->_is_nil() && ok;
799   }
800   return false;
801 }
802
803 //=================================================================================
804 // function : execute
805 // purpose  :
806 //=================================================================================
807 bool BasicGUI_PointDlg::execute( ObjectList& objects )
808 {
809   bool res = false;
810
811   GEOM::GEOM_Object_var anObj;
812   QStringList aParameters;
813
814   GEOM::GEOM_IBasicOperations_var anOper = GEOM::GEOM_IBasicOperations::_narrow( getOperation() );
815
816   switch ( getConstructorId() ) {
817   case GEOM_POINT_XYZ :
818     {
819       double x = GroupXYZ->SpinBox_DX->value();
820       double y = GroupXYZ->SpinBox_DY->value();
821       double z = GroupXYZ->SpinBox_DZ->value();
822
823       aParameters << GroupXYZ->SpinBox_DX->text();
824       aParameters << GroupXYZ->SpinBox_DY->text();
825       aParameters << GroupXYZ->SpinBox_DZ->text();
826
827       anObj = anOper->MakePointXYZ( x, y, z );
828       res = true;
829       break;
830     }
831   case GEOM_POINT_REF :
832     {
833       double dx = GroupRefPoint->SpinBox_DX->value();
834       double dy = GroupRefPoint->SpinBox_DY->value();
835       double dz = GroupRefPoint->SpinBox_DZ->value();
836
837       aParameters << GroupRefPoint->SpinBox_DX->text();
838       aParameters << GroupRefPoint->SpinBox_DY->text();
839       aParameters << GroupRefPoint->SpinBox_DZ->text();
840
841       anObj = anOper->MakePointWithReference( myRefPoint, dx, dy, dz );
842       res = true;
843       break;
844     }
845   case GEOM_POINT_EDGE :
846     {
847       if ( myParamCoord->checkedId() == PARAM_VALUE ) {
848         anObj = anOper->MakePointOnCurve( myEdge, getParameter() );
849         aParameters<<GroupOnCurve->SpinBox_DX->text();
850       } else {
851         double x = GroupXYZ->SpinBox_DX->value();
852         double y = GroupXYZ->SpinBox_DY->value();
853         double z = GroupXYZ->SpinBox_DZ->value();
854
855         aParameters << GroupXYZ->SpinBox_DX->text();
856         aParameters << GroupXYZ->SpinBox_DY->text();
857         aParameters << GroupXYZ->SpinBox_DZ->text();
858
859         anObj = anOper->MakePointOnCurveByCoord( myEdge, x, y, z );
860       }
861       res = true;
862       break;
863     }
864   case GEOM_POINT_INTINT :
865     anObj = anOper->MakePointOnLinesIntersection( myLine1, myLine2 );
866     if ( !anObj->_is_nil() ) {
867       QString aName = getNewObjectName();
868       if ( anObj->GetShapeType() == GEOM::COMPOUND && aName.startsWith("Vertex") )
869         initName( tr( "GEOM_COMPOUND" ) );
870       else if (  anObj->GetShapeType() == GEOM::VERTEX && aName.startsWith("Compound"))
871         initName( tr( "GEOM_VERTEX" ) );
872     }
873     res = true;
874     break;
875   case GEOM_POINT_SURF :
876     {
877       if ( myParamCoord->checkedId() == PARAM_VALUE ) {
878         anObj = anOper->MakePointOnSurface( myFace, getUParameter(), getVParameter() );
879         aParameters<<GroupOnSurface->SpinBox_DX->text();
880         aParameters<<GroupOnSurface->SpinBox_DY->text();
881       } else {
882         double x = GroupXYZ->SpinBox_DX->value();
883         double y = GroupXYZ->SpinBox_DY->value();
884         double z = GroupXYZ->SpinBox_DZ->value();
885
886         aParameters << GroupXYZ->SpinBox_DX->text();
887         aParameters << GroupXYZ->SpinBox_DY->text();
888         aParameters << GroupXYZ->SpinBox_DZ->text();
889
890         anObj = anOper->MakePointOnSurfaceByCoord( myFace, x, y, z );
891       }
892       res = true;
893       break;
894     }
895   }
896
897   const int id = getConstructorId();
898   if(!anObj->_is_nil() && !IsPreview() && (id == GEOM_POINT_XYZ ||
899                                            id == GEOM_POINT_REF ||
900                                            id == GEOM_POINT_EDGE ||
901                                            id == GEOM_POINT_SURF) ) {
902       anObj->SetParameters(aParameters.join(":").toLatin1().constData());
903   }
904
905   if ( id == GEOM_POINT_REF || id == GEOM_POINT_EDGE || id == GEOM_POINT_SURF ) {
906     TopoDS_Shape aShape;
907     if ( GEOMBase::GetShape( anObj, aShape ) && !aShape.IsNull() &&
908          aShape.ShapeType() == TopAbs_VERTEX ) {
909       gp_Pnt aPnt = BRep_Tool::Pnt( TopoDS::Vertex( aShape ) );
910       myX->setText( QString( "%1" ).arg( aPnt.X() ) );
911       myY->setText( QString( "%1" ).arg( aPnt.Y() ) );
912       myZ->setText( QString( "%1" ).arg( aPnt.Z() ) );
913     }
914     else {
915       myX->setText( "" );
916       myY->setText( "" );
917       myZ->setText( "" );
918     }
919   }
920
921   if ( !anObj->_is_nil() ) {
922     objects.push_back( anObj._retn() );
923   }
924
925   return res;
926 }
927
928 //=================================================================================
929 // function : addSubshapeToStudy
930 // purpose  : virtual method to add new SubObjects if local selection
931 //=================================================================================
932 void BasicGUI_PointDlg::addSubshapesToStudy()
933 {
934   QMap<QString, GEOM::GEOM_Object_var> objMap;
935
936   switch ( getConstructorId() ) {
937   case GEOM_POINT_XYZ:
938     break;
939   case GEOM_POINT_REF:
940     objMap[GroupRefPoint->LineEdit1->text()] = myRefPoint;
941     break;
942   case GEOM_POINT_EDGE:
943     objMap[GroupOnCurve->LineEdit1->text()] = myEdge;
944     break;
945   case GEOM_POINT_INTINT:
946     objMap[GroupLineIntersection->LineEdit1->text()] = myLine1;
947     objMap[GroupLineIntersection->LineEdit2->text()] = myLine2;
948     break;
949   case GEOM_POINT_SURF:
950     objMap[GroupOnSurface->LineEdit1->text()] = myFace;
951     break;
952   }
953   addSubshapesToFather( objMap );
954 }
955
956 //=================================================================================
957 // function : ClickParamCoord()
958 // purpose  :
959 //=================================================================================
960 void BasicGUI_PointDlg::ClickParamCoord( int id )
961 {
962   updateParamCoord( true );
963   displayPreview();
964 }
965
966 //=================================================================================
967 // function : updateParamCoord
968 // purpose  :
969 //=================================================================================
970 void BasicGUI_PointDlg::updateParamCoord(bool theIsUpdate)
971 {
972   bool isParam = myParamCoord->checkedId() == PARAM_VALUE;
973
974   const int id = getConstructorId();
975   if ( id == GEOM_POINT_EDGE ) {
976     GroupOnCurve->TextLabel2->setShown( isParam );
977     GroupOnCurve->SpinBox_DX->setShown( isParam );
978   }
979   else if ( id == GEOM_POINT_SURF ) {
980     GroupOnSurface->TextLabel2->setShown( isParam );
981     GroupOnSurface->TextLabel3->setShown( isParam );
982     GroupOnSurface->SpinBox_DX->setShown( isParam );
983     GroupOnSurface->SpinBox_DY->setShown( isParam );
984   }
985
986   GroupXYZ->setShown( !isParam );
987
988   if ( theIsUpdate )
989     QTimer::singleShot(50, this, SLOT(updateSize()));
990 }
991
992 //=================================================================================
993 // function : onBtnPopup()
994 // purpose  :
995 //=================================================================================
996 void BasicGUI_PointDlg::onBtnPopup( QAction* a )
997 {
998   int index = myActions[a];
999   globalSelection(); // close local contexts, if any
1000   QString type;
1001   if ( index == 0 )
1002     myNeedType = TopAbs_EDGE;
1003   else 
1004     myNeedType = TopAbs_WIRE;
1005   
1006   localSelection( GEOM::GEOM_Object::_nil(), myNeedType );
1007 }
1008
1009 //=================================================================================
1010 // function : updateSize
1011 // purpose  : adjust dialog size to minimum
1012 //=================================================================================
1013 void BasicGUI_PointDlg::updateSize() 
1014 {
1015   qApp->processEvents();
1016   updateGeometry();
1017   resize( minimumSizeHint() );
1018 }