]> SALOME platform Git repositories - modules/geom.git/blob - src/PrimitiveGUI/PrimitiveGUI_TorusDlg.cxx
Salome HOME
Implement 'make dist' and 'make distcheck' steps support
[modules/geom.git] / src / PrimitiveGUI / PrimitiveGUI_TorusDlg.cxx
1 // GEOM GEOMGUI : GUI for Geometry component
2 //
3 // Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 // This library is free software; you can redistribute it and/or 
7 // modify it under the terms of the GNU Lesser General Public 
8 // License as published by the Free Software Foundation; either 
9 // version 2.1 of the License. 
10 // 
11 // This library is distributed in the hope that it will be useful, 
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 // Lesser General Public License for more details. 
15 // 
16 // You should have received a copy of the GNU Lesser General Public 
17 // License along with this library; if not, write to the Free Software 
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File   : PrimitiveGUI_TorusDlg.cxx
23 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
24 //
25
26 #include "PrimitiveGUI_TorusDlg.h"
27
28 #include <DlgRef.h>
29 #include <GeometryGUI.h>
30 #include <GEOMBase.h>
31
32 #include <SUIT_ResourceMgr.h>
33 #include <SUIT_Session.h>
34 #include <SalomeApp_Application.h>
35 #include <LightApp_SelectionMgr.h>
36
37 #include <TopoDS_Shape.hxx>
38 #include <TopoDS_Edge.hxx>
39 #include <TopoDS.hxx>
40 #include <TopExp.hxx>
41 #include <TColStd_IndexedMapOfInteger.hxx>
42 #include <TopTools_IndexedMapOfShape.hxx>
43
44 #include <GEOMImpl_Types.hxx>
45
46 //=================================================================================
47 // class    : PrimitiveGUI_TorusDlg()
48 // purpose  : Constructs a PrimitiveGUI_TorusDlg which is a child of 'parent', with the 
49 //            name 'name' and widget flags set to 'f'.
50 //            The dialog will by default be modeless, unless you set 'modal' to
51 //            TRUE to construct a modal dialog.
52 //=================================================================================
53 PrimitiveGUI_TorusDlg::PrimitiveGUI_TorusDlg( GeometryGUI* theGeometryGUI, QWidget* parent,
54                                               bool modal, Qt::WindowFlags fl )
55   : GEOMBase_Skeleton( theGeometryGUI, parent, modal, fl )
56 {
57   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
58   QPixmap image0( aResMgr->loadPixmap( "GEOM", tr( "ICON_DLG_TORUS_PV" ) ) );
59   QPixmap image1( aResMgr->loadPixmap( "GEOM", tr( "ICON_DLG_TORUS_DXYZ" ) ) );
60   QPixmap image2( aResMgr->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
61
62   setWindowTitle( tr( "GEOM_TORUS_TITLE" ) );
63
64   /***************************************************************/
65   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_TORUS" ) );
66   mainFrame()->RadioButton1->setIcon( image0 );
67   mainFrame()->RadioButton2->setIcon( image1 );
68   mainFrame()->RadioButton3->setAttribute( Qt::WA_DeleteOnClose );
69   mainFrame()->RadioButton3->close();
70
71   GroupPoints = new DlgRef_2Sel2Spin( centralWidget() );
72   GroupPoints->GroupBox1->setTitle( tr( "GEOM_ARGUMENTS" ) );
73   GroupPoints->TextLabel1->setText( tr( "GEOM_BASE_POINT" ) );
74   GroupPoints->TextLabel2->setText( tr( "GEOM_VECTOR" ) );
75   GroupPoints->TextLabel3->setText( tr( "GEOM_RADIUS_I" ).arg( 1 ) );
76   GroupPoints->TextLabel4->setText( tr( "GEOM_RADIUS_I" ).arg( 2 ) );
77   GroupPoints->PushButton1->setIcon( image2 );
78   GroupPoints->PushButton2->setIcon( image2 );
79
80   GroupDimensions = new DlgRef_2Spin( centralWidget() );
81   GroupDimensions->GroupBox1->setTitle( tr( "GEOM_BOX_OBJ" ) );
82   GroupDimensions->TextLabel1->setText( tr( "GEOM_RADIUS_I" ).arg( 1 ) );
83   GroupDimensions->TextLabel2->setText( tr( "GEOM_RADIUS_I" ).arg( 2 ) );
84
85   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
86   layout->setMargin( 0 ); layout->setSpacing( 6 );
87   layout->addWidget( GroupPoints );
88   layout->addWidget( GroupDimensions );
89   /***************************************************************/
90
91   setHelpFileName( "create_torus_page.html" );
92   
93   Init();
94 }
95
96
97 //=================================================================================
98 // function : ~PrimitiveGUI_TorusDlg()
99 // purpose  : Destroys the object and frees any allocated resources
100 //=================================================================================
101 PrimitiveGUI_TorusDlg::~PrimitiveGUI_TorusDlg()
102 {
103   // no need to delete child widgets, Qt does it all for us
104 }
105
106
107 //=================================================================================
108 // function : Init()
109 // purpose  :
110 //=================================================================================
111 void PrimitiveGUI_TorusDlg::Init()
112 {
113   /* init variables */
114   myEditCurrentArgument = GroupPoints->LineEdit1;
115   GroupPoints->LineEdit1->setReadOnly( true );
116   GroupPoints->LineEdit2->setReadOnly( true );
117  
118   myPoint = myDir = GEOM::GEOM_Object::_nil();
119
120   /* Get setting of step value from file configuration */
121   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
122   double step = resMgr->doubleValue( "Geometry", "SettingsGeomStep", 100 );
123
124   /* min, max, step and decimals for spin boxes & initial values */
125   initSpinBox( GroupPoints->SpinBox_DX, 0.001, COORD_MAX, step, 3 ); // VSR: TODO: DBL_DIGITS_DISPLAY
126   initSpinBox( GroupPoints->SpinBox_DY, 0.001, COORD_MAX, step, 3 ); // VSR: TODO: DBL_DIGITS_DISPLAY
127   initSpinBox( GroupDimensions->SpinBox_DX, 0.001, COORD_MAX, step, 3 ); // VSR: TODO: DBL_DIGITS_DISPLAY
128   initSpinBox( GroupDimensions->SpinBox_DY, 0.001, COORD_MAX, step, 3 ); // VSR: TODO: DBL_DIGITS_DISPLAY
129
130   GroupPoints->SpinBox_DX->setValue( 300.0 );
131   GroupPoints->SpinBox_DY->setValue( 100.0 );
132   GroupDimensions->SpinBox_DX->setValue( 300.0 );
133   GroupDimensions->SpinBox_DY->setValue( 100.0 );
134
135   /* signals and slots connections */
136   connect( buttonOk(),    SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
137   connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
138
139   connect( this,          SIGNAL( constructorsClicked( int ) ), this, SLOT( ConstructorsClicked( int ) ) );
140
141   connect( GroupPoints->PushButton1, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
142   connect( GroupPoints->PushButton2, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
143
144   connect( GroupPoints->LineEdit1, SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
145   connect( GroupPoints->LineEdit2, SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
146
147   connect( GroupPoints->SpinBox_DX,     SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox() ) );
148   connect( GroupPoints->SpinBox_DY,     SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox() ) );
149   connect( GroupDimensions->SpinBox_DX, SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox() ) );
150   connect( GroupDimensions->SpinBox_DY, SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox() ) );
151
152   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), this, SLOT( SetDoubleSpinBoxStep( double ) ) );
153   
154   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
155            this, SLOT( SelectionIntoArgument() ) );
156   
157   initName( tr( "GEOM_TORUS" ) );
158
159   setConstructorId( 1 ); // simplest constructor
160   ConstructorsClicked( 1 );
161 }
162
163 //=================================================================================
164 // function : SetDoubleSpinBoxStep()
165 // purpose  : Double spin box management
166 //=================================================================================
167 void PrimitiveGUI_TorusDlg::SetDoubleSpinBoxStep( double step )
168 {
169   GroupPoints->SpinBox_DX->setSingleStep(step);
170   GroupPoints->SpinBox_DY->setSingleStep(step);
171   GroupDimensions->SpinBox_DX->setSingleStep(step);
172   GroupDimensions->SpinBox_DY->setSingleStep(step);
173 }
174
175
176 //=================================================================================
177 // function : ConstructorsClicked()
178 // purpose  : Radio button management
179 //=================================================================================
180 void PrimitiveGUI_TorusDlg::ConstructorsClicked( int constructorId )
181 {
182   disconnect( myGeomGUI->getApp()->selectionMgr(), 0, this, 0 );
183   
184   switch( constructorId ) {
185   case 0 :
186     {
187       globalSelection(); // close local contexts, if any
188       localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
189       
190       GroupDimensions->hide();
191       GroupPoints->show();
192       
193       myEditCurrentArgument = GroupPoints->LineEdit1;
194       GroupPoints->LineEdit1->setText( "" );
195       GroupPoints->LineEdit2->setText( "" );
196       myPoint = myDir = GEOM::GEOM_Object::_nil();
197       
198       connect( myGeomGUI->getApp()->selectionMgr(),
199                SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
200       SelectionIntoArgument();
201       break;
202     }
203   case 1:
204     {
205       GroupPoints->hide();
206       GroupDimensions->show();
207       globalSelection(); // close local contexts, if any
208       
209       break ;
210     }
211   }
212   
213   qApp->processEvents();
214   updateGeometry();
215   resize( minimumSize() );
216
217   displayPreview();
218 }
219
220
221 //=================================================================================
222 // function : ClickOnOk()
223 // purpose  :
224 //=================================================================================
225 void PrimitiveGUI_TorusDlg::ClickOnOk()
226 {
227   if ( ClickOnApply() )
228     ClickOnCancel();
229 }
230
231
232 //=================================================================================
233 // function : ClickOnApply()
234 // purpose  :
235 //=================================================================================
236 bool PrimitiveGUI_TorusDlg::ClickOnApply()
237 {
238   if ( !onAccept() )
239     return false;
240
241   initName();
242
243   return true;
244 }
245
246
247 //=================================================================================
248 // function : SelectionIntoArgument()
249 // purpose  : Called when selection as changed or other case
250 //=================================================================================
251 void PrimitiveGUI_TorusDlg::SelectionIntoArgument()
252 {
253   if ( getConstructorId() != 0 )
254     return;
255   
256   myEditCurrentArgument->setText( "" );
257   
258   if ( IObjectCount() != 1 ) {
259     if ( myEditCurrentArgument == GroupPoints->LineEdit1 )
260       myPoint = GEOM::GEOM_Object::_nil();
261     else if ( myEditCurrentArgument == GroupPoints->LineEdit2 )
262       myDir = GEOM::GEOM_Object::_nil();
263     return;
264   }
265   
266   /* nbSel == 1 */
267   Standard_Boolean testResult = Standard_False;
268   GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject( firstIObject(), testResult );
269   
270   if ( !testResult || CORBA::is_nil( aSelectedObject ) )
271     return;
272   
273
274   QString aName = GEOMBase::GetName(aSelectedObject);
275   TopoDS_Shape aShape;
276   if ( GEOMBase::GetShape( aSelectedObject, aShape, TopAbs_SHAPE ) && !aShape.IsNull() ) {
277     TopAbs_ShapeEnum aNeedType = TopAbs_VERTEX;
278     if ( myEditCurrentArgument == GroupPoints->LineEdit2 )
279       aNeedType = TopAbs_EDGE;
280
281     LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
282     TColStd_IndexedMapOfInteger aMap;
283     aSelMgr->GetIndexes( firstIObject(), aMap );
284     if ( aMap.Extent() == 1 ) { // Local Selection
285       int anIndex = aMap( 1 );
286       if ( aNeedType == TopAbs_EDGE )
287         aName.append( ":edge_" + QString::number( anIndex ) );
288       else
289         aName.append( ":vertex_" + QString::number( anIndex ) );
290
291       //Find SubShape Object in Father
292       GEOM::GEOM_Object_var aFindedObject = GEOMBase_Helper::findObjectInFather( aSelectedObject, aName );
293
294       if ( aFindedObject == GEOM::GEOM_Object::_nil() ) { // Object not found in study
295         GEOM::GEOM_IShapesOperations_var aShapesOp =
296           getGeomEngine()->GetIShapesOperations( getStudyId() );
297         aSelectedObject = aShapesOp->GetSubShape( aSelectedObject, anIndex );
298       }
299       else
300         aSelectedObject = aFindedObject; // get Object from study
301     }
302     else { // Global Selection
303       if ( aShape.ShapeType() != aNeedType ) {
304         aSelectedObject = GEOM::GEOM_Object::_nil();
305         aName = "";
306       }
307     }
308   }
309
310   myEditCurrentArgument->setText(aName);
311
312   if ( myEditCurrentArgument == GroupPoints->LineEdit1 )
313     myPoint = aSelectedObject;
314   else if ( myEditCurrentArgument == GroupPoints->LineEdit2 )
315     myDir = aSelectedObject;
316     
317   displayPreview();
318 }
319
320
321 //=================================================================================
322 // function : SetEditCurrentArgument()
323 // purpose  :
324 //=================================================================================
325 void PrimitiveGUI_TorusDlg::SetEditCurrentArgument()
326 {
327   QPushButton* send = (QPushButton*)sender();
328   globalSelection( GEOM_POINT ); // to break previous local selection
329   
330   if ( send == GroupPoints->PushButton1 ) {
331     myEditCurrentArgument = GroupPoints->LineEdit1;
332     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
333   }
334   else if ( send == GroupPoints->PushButton2 ) {
335     myEditCurrentArgument = GroupPoints->LineEdit2;
336     GEOM::GEOM_Object_var anObj;
337     localSelection( anObj, TopAbs_EDGE );
338   }
339   
340   myEditCurrentArgument->setFocus();
341   SelectionIntoArgument();
342 }
343
344
345 //=================================================================================
346 // function : LineEditReturnPressed()
347 // purpose  :
348 //=================================================================================
349 void PrimitiveGUI_TorusDlg::LineEditReturnPressed()
350 {  
351   QLineEdit* send = (QLineEdit*)sender();
352   if ( send == GroupPoints->LineEdit1 ||
353        send == GroupPoints->LineEdit2 ) {
354     myEditCurrentArgument = send;
355     GEOMBase_Skeleton::LineEditReturnPressed();
356   }
357 }
358
359
360 //=================================================================================
361 // function : ActivateThisDialog()
362 // purpose  :
363 //=================================================================================
364 void PrimitiveGUI_TorusDlg::ActivateThisDialog()
365 {
366   GEOMBase_Skeleton::ActivateThisDialog();
367   connect( myGeomGUI->getApp()->selectionMgr(),
368            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
369  
370   ConstructorsClicked( getConstructorId() );
371 }
372
373
374 //=================================================================================
375 // function : enterEvent()
376 // purpose  :
377 //=================================================================================
378 void PrimitiveGUI_TorusDlg::enterEvent( QEvent* )
379 {
380   if ( !mainFrame()->GroupConstructors->isEnabled() )
381     ActivateThisDialog();
382 }
383
384
385 //=================================================================================
386 // function : ValueChangedInSpinBox
387 // purpose  :
388 //=================================================================================
389 void PrimitiveGUI_TorusDlg::ValueChangedInSpinBox()
390 {
391   displayPreview();
392 }
393
394
395 //=================================================================================
396 // function : createOperation
397 // purpose  :
398 //=================================================================================
399 GEOM::GEOM_IOperations_ptr PrimitiveGUI_TorusDlg::createOperation()
400 {
401   return getGeomEngine()->GetI3DPrimOperations( getStudyId() );
402 }
403
404
405 //=================================================================================
406 // function : isValid
407 // purpose  :
408 //=================================================================================
409 bool PrimitiveGUI_TorusDlg::isValid( QString& msg )
410 {
411   return getConstructorId() == 0 ? !(myPoint->_is_nil() || myDir->_is_nil()) : true;
412 }
413
414
415 //=================================================================================
416 // function : execute
417 // purpose  :
418 //=================================================================================
419 bool PrimitiveGUI_TorusDlg::execute( ObjectList& objects )
420 {
421   bool res = false;
422   
423   GEOM::GEOM_Object_var anObj;
424
425   switch ( getConstructorId() ) {
426   case 0 :
427     if (!CORBA::is_nil( myPoint ) && !CORBA::is_nil( myDir )){
428       anObj = GEOM::GEOM_I3DPrimOperations::_narrow( getOperation() )->MakeTorusPntVecRR( myPoint, myDir, getRadius1(), getRadius2() );
429       res = true;
430     }
431     break;
432   case 1 :
433     anObj = GEOM::GEOM_I3DPrimOperations::_narrow( getOperation() )->MakeTorusRR( getRadius1(), getRadius2() );
434     res = true;
435     break;
436   }
437
438   if ( !anObj->_is_nil() )
439     objects.push_back( anObj._retn() );
440
441   return res;
442 }
443
444
445 //=================================================================================
446 // function : getRadius1()
447 // purpose  :
448 //=================================================================================
449 double PrimitiveGUI_TorusDlg::getRadius1() const
450 {
451   int aConstructorId = getConstructorId();
452   if ( aConstructorId == 0 )
453     return GroupPoints->SpinBox_DX->value();
454   else if ( aConstructorId == 1 )
455     return GroupDimensions->SpinBox_DX->value();
456   return 0;
457 }
458
459
460 //=================================================================================
461 // function : getRadius2()
462 // purpose  :
463 //=================================================================================
464 double PrimitiveGUI_TorusDlg::getRadius2() const
465 {
466   int aConstructorId = getConstructorId();
467   if ( aConstructorId == 0 )
468     return GroupPoints->SpinBox_DY->value();
469   else if ( aConstructorId == 1 )
470     return GroupDimensions->SpinBox_DY->value();
471   return 0;
472 }
473
474 //=================================================================================
475 // function : addSubshapeToStudy
476 // purpose  : virtual method to add new SubObjects if local selection
477 //=================================================================================
478 void PrimitiveGUI_TorusDlg::addSubshapesToStudy()
479 {
480   QMap<QString, GEOM::GEOM_Object_var> objMap;
481
482   switch ( getConstructorId() ) {
483   case 0:
484     objMap[GroupPoints->LineEdit1->text()] = myPoint;
485     objMap[GroupPoints->LineEdit2->text()] = myDir;
486     break;
487   case 1:
488     return;
489   }
490   addSubshapesToFather( objMap );
491 }