]> SALOME platform Git repositories - modules/geom.git/blob - src/PrimitiveGUI/PrimitiveGUI_CylinderDlg.cxx
Salome HOME
Implement 'make dist' and 'make distcheck' steps support
[modules/geom.git] / src / PrimitiveGUI / PrimitiveGUI_CylinderDlg.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_CylinderDlg.cxx
23 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
24 //
25
26 #include "PrimitiveGUI_CylinderDlg.h"
27
28 #include <DlgRef.h>
29
30 #include <GeometryGUI.h>
31 #include <GEOMBase.h>
32
33 #include <SUIT_ResourceMgr.h>
34 #include <SUIT_Session.h>
35 #include <SalomeApp_Application.h>
36 #include <LightApp_SelectionMgr.h>
37
38 #include <TopoDS_Shape.hxx>
39 #include <TopoDS_Edge.hxx>
40 #include <TopoDS.hxx>
41 #include <TopExp.hxx>
42 #include <TColStd_IndexedMapOfInteger.hxx>
43 #include <TopTools_IndexedMapOfShape.hxx>
44
45 #include <GEOMImpl_Types.hxx>
46
47 //=================================================================================
48 // class    : PrimitiveGUI_CylinderDlg()
49 // purpose  : Constructs a PrimitiveGUI_CylinderDlg which is a child of 'parent', with the 
50 //            name 'name' and widget flags set to 'f'.
51 //            The dialog will by default be modeless, unless you set 'modal' to
52 //            TRUE to construct a modal dialog.
53 //=================================================================================
54 PrimitiveGUI_CylinderDlg::PrimitiveGUI_CylinderDlg( GeometryGUI* theGeometryGUI, QWidget* parent,
55                                                     bool modal, Qt::WindowFlags fl )
56   : GEOMBase_Skeleton( theGeometryGUI, parent, modal, fl )
57 {
58   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_CYLINDER_PV" ) ) );
59   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_CYLINDER_DXYZ" ) ) );
60   QPixmap image2( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
61
62   setWindowTitle( tr( "GEOM_CYLINDER_TITLE" ) );
63
64   /***************************************************************/
65   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_CYLINDER" ) );
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" ) );
76   GroupPoints->TextLabel4->setText( tr( "GEOM_HEIGHT" ) );
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" ) );
83   GroupDimensions->TextLabel2->setText( tr( "GEOM_HEIGHT" ) );
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_cylinder_page.html" );
92
93   Init();
94 }
95
96
97 //=================================================================================
98 // function : ~PrimitiveGUI_CylinderDlg()
99 // purpose  : Destroys the object and frees any allocated resources
100 //=================================================================================
101 PrimitiveGUI_CylinderDlg::~PrimitiveGUI_CylinderDlg()
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_CylinderDlg::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   /* First constructor : radius */
126   initSpinBox( GroupPoints->SpinBox_DX, 0.001, COORD_MAX, step, 3 ); // VSR: TODO: DBL_DIGITS_DISPLAY
127   /* First constructor : algebric height */
128   initSpinBox( GroupPoints->SpinBox_DY, COORD_MIN, COORD_MAX, step, 3 ); // VSR: TODO: DBL_DIGITS_DISPLAY
129   /* Second constructor : radius */
130   initSpinBox( GroupDimensions->SpinBox_DX, 0.001, COORD_MAX, step, 3 ); // VSR: TODO: DBL_DIGITS_DISPLAY
131   /* Second constructor : algebric height */
132   initSpinBox( GroupDimensions->SpinBox_DY, COORD_MIN, COORD_MAX, step, 3 ); // VSR: TODO: DBL_DIGITS_DISPLAY
133
134   GroupPoints->SpinBox_DX->setValue( 100.0 );
135   GroupPoints->SpinBox_DY->setValue( 300.0 );
136   GroupDimensions->SpinBox_DX->setValue( 100.0 );
137   GroupDimensions->SpinBox_DY->setValue( 300.0 );
138
139   /* signals and slots connections */
140   connect( buttonOk(),    SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
141   connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
142
143   connect( this,          SIGNAL( constructorsClicked( int ) ), this, SLOT( ConstructorsClicked( int ) ) );
144
145   connect( GroupPoints->PushButton1, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
146   connect( GroupPoints->PushButton2, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
147
148   connect( GroupPoints->LineEdit1, SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
149   connect( GroupPoints->LineEdit2, SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
150
151   connect( GroupPoints->SpinBox_DX,     SIGNAL(valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox() ) );
152   connect( GroupPoints->SpinBox_DY,     SIGNAL(valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox() ) );
153   connect( GroupDimensions->SpinBox_DX, SIGNAL(valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox() ) );
154   connect( GroupDimensions->SpinBox_DY, SIGNAL(valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox() ) );
155
156   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), this, SLOT( SetDoubleSpinBoxStep( double ) ) );
157   
158   connect( myGeomGUI->getApp()->selectionMgr(), 
159            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
160   
161   initName( tr( "GEOM_CYLINDER" ) );
162
163   setConstructorId( 1 ); // simplest constructor
164   ConstructorsClicked( 1 );
165 }
166
167
168 //=================================================================================
169 // function : SetDoubleSpinBoxStep()
170 // purpose  : Double spin box management
171 //=================================================================================
172 void PrimitiveGUI_CylinderDlg::SetDoubleSpinBoxStep( double step )
173 {
174   GroupPoints->SpinBox_DX->setSingleStep(step);
175   GroupPoints->SpinBox_DY->setSingleStep(step);
176   GroupDimensions->SpinBox_DX->setSingleStep(step);
177   GroupDimensions->SpinBox_DY->setSingleStep(step);
178 }
179
180
181 //=================================================================================
182 // function : ConstructorsClicked()
183 // purpose  : Radio button management
184 //=================================================================================
185 void PrimitiveGUI_CylinderDlg::ConstructorsClicked( int constructorId )
186 {
187   disconnect( myGeomGUI->getApp()->selectionMgr(), 0, this, 0 );
188     
189   switch( constructorId ) { 
190   case 0 :
191     {
192       globalSelection( GEOM_POINT ); // to break previous local selection
193       localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
194       
195       GroupDimensions->hide();
196       GroupPoints->show();
197       
198       myEditCurrentArgument = GroupPoints->LineEdit1;
199       GroupPoints->LineEdit1->setText( "" );
200       GroupPoints->LineEdit2->setText( "" );
201       myPoint = myDir = GEOM::GEOM_Object::_nil();
202       
203       connect( myGeomGUI->getApp()->selectionMgr(), 
204                SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
205       break;
206     }
207   case 1 :
208     { 
209       globalSelection(); // close local contexts, if any
210       
211       GroupPoints->hide();
212       GroupDimensions->show();
213       break;
214     }
215   }
216
217   qApp->processEvents();
218   updateGeometry();
219   resize( minimumSize() );
220
221   displayPreview();
222 }
223
224
225 //=================================================================================
226 // function : ClickOnOk()
227 // purpose  :
228 //=================================================================================
229 void PrimitiveGUI_CylinderDlg::ClickOnOk()
230 {
231   if ( ClickOnApply() )
232     ClickOnCancel();
233 }
234
235
236 //=================================================================================
237 // function : ClickOnApply()
238 // purpose  :
239 //=================================================================================
240 bool PrimitiveGUI_CylinderDlg::ClickOnApply()
241 {
242   if ( !onAccept() )
243     return false;
244
245   initName();
246   ConstructorsClicked( getConstructorId() );
247   return true;
248 }
249
250
251 //=================================================================================
252 // function : SelectionIntoArgument()
253 // purpose  : Called when selection as changed or other case
254 //=================================================================================
255 void PrimitiveGUI_CylinderDlg::SelectionIntoArgument()
256 {
257   if ( getConstructorId() != 0 )
258     return;
259
260   myEditCurrentArgument->setText( "" );
261   
262   if ( IObjectCount() != 1 ) {
263     if ( myEditCurrentArgument == GroupPoints->LineEdit1 )
264       myPoint = GEOM::GEOM_Object::_nil();
265     else if ( myEditCurrentArgument == GroupPoints->LineEdit2 )
266       myDir = GEOM::GEOM_Object::_nil();
267     return;
268   }
269   
270   /* nbSel == 1 */
271   Standard_Boolean testResult = Standard_False;
272   GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject( firstIObject(), testResult );
273     
274   if ( !testResult || CORBA::is_nil( aSelectedObject ) )
275     return;
276   
277
278   QString aName = GEOMBase::GetName(aSelectedObject);
279   TopoDS_Shape aShape;
280   if ( GEOMBase::GetShape( aSelectedObject, aShape, TopAbs_SHAPE ) && !aShape.IsNull() ) {
281     TopAbs_ShapeEnum aNeedType = TopAbs_VERTEX;
282     if ( myEditCurrentArgument == GroupPoints->LineEdit2 )
283       aNeedType = TopAbs_EDGE;
284
285     LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
286     TColStd_IndexedMapOfInteger aMap;
287     aSelMgr->GetIndexes( firstIObject(), aMap );
288     if ( aMap.Extent() == 1 ) { // Local Selection
289       int anIndex = aMap( 1 );
290       if ( aNeedType == TopAbs_EDGE )
291         aName.append( ":edge_" + QString::number( anIndex ) );
292       else
293         aName.append( ":vertex_" + QString::number( anIndex ) );
294
295       //Find SubShape Object in Father
296       GEOM::GEOM_Object_var aFindedObject = GEOMBase_Helper::findObjectInFather( aSelectedObject, aName );
297
298       if ( aFindedObject == GEOM::GEOM_Object::_nil() ) { // Object not found in study
299         GEOM::GEOM_IShapesOperations_var aShapesOp =
300           getGeomEngine()->GetIShapesOperations( getStudyId() );
301         aSelectedObject = aShapesOp->GetSubShape( aSelectedObject, anIndex );
302       }
303       else {
304         aSelectedObject = aFindedObject; // get Object from study
305       }
306     }
307     else { // Global Selection
308       if ( aShape.ShapeType() != aNeedType ) {
309         aSelectedObject = GEOM::GEOM_Object::_nil();
310         aName = "";
311       }
312     }
313   }
314
315   myEditCurrentArgument->setText(aName);
316
317   if ( myEditCurrentArgument == GroupPoints->LineEdit1 )
318     myPoint = aSelectedObject;
319   else if ( myEditCurrentArgument == GroupPoints->LineEdit2 )
320     myDir = aSelectedObject;
321     
322   displayPreview();
323 }
324
325
326 //=================================================================================
327 // function : SetEditCurrentArgument()
328 // purpose  :
329 //=================================================================================
330 void PrimitiveGUI_CylinderDlg::SetEditCurrentArgument()
331 {
332   QPushButton* send = (QPushButton*)sender();
333   
334   if ( send == GroupPoints->PushButton1 ) {
335     myEditCurrentArgument = GroupPoints->LineEdit1;
336     globalSelection( GEOM_POINT ); // to break previous local selection
337     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
338   }
339   else if ( send == GroupPoints->PushButton2 ) {
340     myEditCurrentArgument = GroupPoints->LineEdit2;
341     globalSelection( GEOM_LINE );  // to break previous local selection
342     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_EDGE );
343   }
344   
345   myEditCurrentArgument->setFocus();
346   SelectionIntoArgument();
347 }
348
349
350 //=================================================================================
351 // function : LineEditReturnPressed()
352 // purpose  :
353 //=================================================================================
354 void PrimitiveGUI_CylinderDlg::LineEditReturnPressed()
355 {  
356   QLineEdit* send = (QLineEdit*)sender();
357   if ( send == GroupPoints->LineEdit1 ||
358        send == GroupPoints->LineEdit2 ) {
359     myEditCurrentArgument = send;
360     GEOMBase_Skeleton::LineEditReturnPressed();
361   }
362 }
363
364
365 //=================================================================================
366 // function : ActivateThisDialog()
367 // purpose  :
368 //=================================================================================
369 void PrimitiveGUI_CylinderDlg::ActivateThisDialog()
370 {
371   GEOMBase_Skeleton::ActivateThisDialog();
372   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
373            this, SLOT( SelectionIntoArgument() ) );
374   
375   ConstructorsClicked( getConstructorId() );
376 }
377
378
379 //=================================================================================
380 // function : enterEvent()
381 // purpose  :
382 //=================================================================================
383 void PrimitiveGUI_CylinderDlg::enterEvent( QEvent* )
384 {
385   if ( !mainFrame()->GroupConstructors->isEnabled() )
386     ActivateThisDialog();
387 }
388
389
390 //=================================================================================
391 // function : DeactivateActiveDialog()
392 // purpose  : public slot to deactivate if active
393 //=================================================================================
394 void PrimitiveGUI_CylinderDlg::DeactivateActiveDialog()
395 {
396   GEOMBase_Skeleton::DeactivateActiveDialog();
397 }
398
399
400 //=================================================================================
401 // function : ValueChangedInSpinBox
402 // purpose  :
403 //=================================================================================
404 void PrimitiveGUI_CylinderDlg::ValueChangedInSpinBox( )
405 {  
406   displayPreview();
407 }
408
409
410 //=================================================================================
411 // function : createOperation
412 // purpose  :
413 //=================================================================================
414 GEOM::GEOM_IOperations_ptr PrimitiveGUI_CylinderDlg::createOperation()
415 {
416   return getGeomEngine()->GetI3DPrimOperations( getStudyId() );
417 }
418
419
420 //=================================================================================
421 // function : isValid
422 // purpose  :
423 //=================================================================================
424 bool PrimitiveGUI_CylinderDlg::isValid( QString& msg )
425 {
426   return getConstructorId() == 0 ? !(myPoint->_is_nil() || myDir->_is_nil() ) : true;
427 }
428
429 //=================================================================================
430 // function : execute
431 // purpose  :
432 //=================================================================================
433 bool PrimitiveGUI_CylinderDlg::execute( ObjectList& objects )
434 {
435   bool res = false;
436   
437   GEOM::GEOM_Object_var anObj;
438   
439   switch ( getConstructorId() ) {
440   case 0 :
441     if ( !CORBA::is_nil( myPoint ) && !CORBA::is_nil( myDir ) ) {
442       anObj = GEOM::GEOM_I3DPrimOperations::_narrow( getOperation() )->MakeCylinderPntVecRH( myPoint, myDir, getRadius(), getHeight() );
443       res = true;
444     }
445     break;
446   case 1 :
447     anObj = GEOM::GEOM_I3DPrimOperations::_narrow( getOperation() )->MakeCylinderRH( getRadius(), getHeight() );
448     res = true;
449     
450     break;
451   }
452   
453   if ( !anObj->_is_nil() )
454     objects.push_back( anObj._retn() );
455   
456   return res;
457 }
458
459
460 //=================================================================================
461 // function : getRadius()
462 // purpose  :
463 //=================================================================================
464 double PrimitiveGUI_CylinderDlg::getRadius() const
465 {
466   int aConstructorId = getConstructorId();
467   if ( aConstructorId == 0 )
468     return GroupPoints->SpinBox_DX->value();
469   else if ( aConstructorId == 1 )
470     return GroupDimensions->SpinBox_DX->value();
471   return 0;
472 }
473
474
475 //=================================================================================
476 // function : getHeight()
477 // purpose  :
478 //=================================================================================
479 double PrimitiveGUI_CylinderDlg::getHeight() const
480 {
481   int aConstructorId = getConstructorId();
482   if ( aConstructorId == 0 )
483     return GroupPoints->SpinBox_DY->value();
484   else if ( aConstructorId == 1 )
485     return GroupDimensions->SpinBox_DY->value();
486   return 0;
487 }
488
489 //=================================================================================
490 // function : addSubshapeToStudy
491 // purpose  : virtual method to add new SubObjects if local selection
492 //=================================================================================
493 void PrimitiveGUI_CylinderDlg::addSubshapesToStudy()
494 {
495   QMap<QString, GEOM::GEOM_Object_var> objMap;
496
497   switch ( getConstructorId() ) {
498   case 0:
499     objMap[GroupPoints->LineEdit1->text()] = myPoint;
500     objMap[GroupPoints->LineEdit2->text()] = myDir;
501     break;
502   case 1:
503     return;
504   }
505   addSubshapesToFather( objMap );
506 }