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