]> SALOME platform Git repositories - modules/geom.git/blob - src/PrimitiveGUI/PrimitiveGUI_CylinderDlg.cxx
Salome HOME
IPAL 18221 correct names and selection engine on NPAL 16768
[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 //
23 //
24 //  File   : PrimitiveGUI_CylinderDlg.cxx
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #include "PrimitiveGUI_CylinderDlg.h"
30
31 #include "SUIT_Desktop.h"
32 #include "SUIT_Session.h"
33 #include "SalomeApp_Application.h"
34 #include "LightApp_SelectionMgr.h"
35
36 #include <TopoDS_Shape.hxx>
37 #include <TopoDS_Edge.hxx>
38 #include <TopoDS.hxx>
39 #include <TopExp.hxx>
40 #include <TColStd_IndexedMapOfInteger.hxx>
41 #include <TopTools_IndexedMapOfShape.hxx>
42
43 #include <qlabel.h>
44
45 #include "GEOMImpl_Types.hxx"
46
47 #include "utilities.h"
48
49 using namespace std;
50
51 //=================================================================================
52 // class    : PrimitiveGUI_CylinderDlg()
53 // purpose  : Constructs a PrimitiveGUI_CylinderDlg which is a child of 'parent', with the 
54 //            name 'name' and widget flags set to 'f'.
55 //            The dialog will by default be modeless, unless you set 'modal' to
56 //            TRUE to construct a modal dialog.
57 //=================================================================================
58 PrimitiveGUI_CylinderDlg::PrimitiveGUI_CylinderDlg(GeometryGUI* theGeometryGUI, QWidget* parent,
59                                                    const char* name, bool modal, WFlags fl)
60   :GEOMBase_Skeleton(theGeometryGUI, parent, name, modal, WStyle_Customize |
61                      WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu)
62 {
63   QPixmap image0(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_CYLINDER_PV")));
64   QPixmap image1(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_CYLINDER_DXYZ")));
65   QPixmap image2(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_SELECT")));
66
67   setCaption(tr("GEOM_CYLINDER_TITLE"));
68
69   /***************************************************************/
70   GroupConstructors->setTitle(tr("GEOM_CYLINDER"));
71   RadioButton1->setPixmap(image0);
72   RadioButton2->setPixmap(image1);
73   RadioButton3->close(TRUE);
74
75   GroupPoints = new DlgRef_2Sel2Spin(this, "GroupPoints");
76   GroupPoints->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
77   GroupPoints->TextLabel1->setText(tr("GEOM_BASE_POINT"));
78   GroupPoints->TextLabel2->setText(tr("GEOM_VECTOR"));
79   GroupPoints->TextLabel3->setText(tr("GEOM_RADIUS"));
80   GroupPoints->TextLabel4->setText(tr("GEOM_HEIGHT"));
81   GroupPoints->PushButton1->setPixmap(image2);
82   GroupPoints->PushButton2->setPixmap(image2);
83
84   GroupDimensions = new DlgRef_2Spin(this, "GroupDimensions");
85   GroupDimensions->GroupBox1->setTitle(tr("GEOM_BOX_OBJ"));
86   GroupDimensions->TextLabel1->setText(tr("GEOM_RADIUS"));
87   GroupDimensions->TextLabel2->setText(tr("GEOM_HEIGHT"));
88
89   Layout1->addWidget(GroupPoints, 2, 0);
90   Layout1->addWidget(GroupDimensions, 2, 0);
91   /***************************************************************/
92
93   setHelpFileName("cylinder.htm");
94
95   Init();
96 }
97
98
99 //=================================================================================
100 // function : ~PrimitiveGUI_CylinderDlg()
101 // purpose  : Destroys the object and frees any allocated resources
102 //=================================================================================
103 PrimitiveGUI_CylinderDlg::~PrimitiveGUI_CylinderDlg()
104 {
105     // no need to delete child widgets, Qt does it all for us
106 }
107
108
109 //=================================================================================
110 // function : Init()
111 // purpose  :
112 //=================================================================================
113 void PrimitiveGUI_CylinderDlg::Init()
114 {
115   /* init variables */
116   myEditCurrentArgument = GroupPoints->LineEdit1;
117   GroupPoints->LineEdit1->setReadOnly( true );
118   GroupPoints->LineEdit2->setReadOnly( true );
119
120   myPoint = myDir = GEOM::GEOM_Object::_nil();
121   
122   /* Get setting of step value from file configuration */
123   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
124   double step = resMgr->doubleValue( "Geometry", "SettingsGeomStep", 100);
125
126   /* min, max, step and decimals for spin boxes & initial values */
127   /* First constructor : radius */
128   GroupPoints->SpinBox_DX->RangeStepAndValidator(0.001, COORD_MAX, step, DBL_DIGITS_DISPLAY);
129   /* First constructor : algebric height */
130   GroupPoints->SpinBox_DY->RangeStepAndValidator(COORD_MIN, COORD_MAX, step, DBL_DIGITS_DISPLAY);
131   /* Second constructor : radius */
132   GroupDimensions->SpinBox_DX->RangeStepAndValidator(0.001, COORD_MAX, step, DBL_DIGITS_DISPLAY);
133   /* Second constructor : algebric height */
134   GroupDimensions->SpinBox_DY->RangeStepAndValidator(COORD_MIN, COORD_MAX, step, DBL_DIGITS_DISPLAY);
135
136   GroupPoints->SpinBox_DX->SetValue(100.0);
137   GroupPoints->SpinBox_DY->SetValue(300.0);
138   GroupDimensions->SpinBox_DX->SetValue(100.0);  
139   GroupDimensions->SpinBox_DY->SetValue(300.0);  
140
141   /* signals and slots connections */
142   connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
143   connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
144   connect(GroupConstructors, SIGNAL(clicked(int)), this, SLOT(ConstructorsClicked(int)));
145
146   connect(GroupPoints->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
147   connect(GroupPoints->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
148
149   connect(GroupPoints->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
150   connect(GroupPoints->LineEdit2, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
151
152   connect(GroupPoints->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
153   connect(GroupPoints->SpinBox_DY, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
154   connect(GroupDimensions->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
155   connect(GroupDimensions->SpinBox_DY, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
156
157   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), GroupPoints->SpinBox_DX, SLOT(SetStep(double)));
158   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), GroupPoints->SpinBox_DY, SLOT(SetStep(double)));
159   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), GroupDimensions->SpinBox_DX, SLOT(SetStep(double)));
160   connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), GroupDimensions->SpinBox_DY, SLOT(SetStep(double)));
161   
162   connect(((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(), 
163           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument())) ;
164   
165   initName( tr( "GEOM_CYLINDER" ) );
166   ConstructorsClicked(0);
167 }
168
169
170 //=================================================================================
171 // function : ConstructorsClicked()
172 // purpose  : Radio button management
173 //=================================================================================
174 void PrimitiveGUI_CylinderDlg::ConstructorsClicked(int constructorId)
175 {
176   disconnect(((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(), 0, this, 0);
177     
178   switch(constructorId)
179     { 
180     case 0 :
181       {
182         //      globalSelection( GEOM_POINT );
183         localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
184
185         GroupDimensions->hide();
186         resize(0, 0);
187         GroupPoints->show();
188         
189         myEditCurrentArgument = GroupPoints->LineEdit1;
190         GroupPoints->LineEdit1->setText(tr(""));
191         GroupPoints->LineEdit2->setText(tr(""));
192         myPoint = myDir = GEOM::GEOM_Object::_nil();
193
194         connect(((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(), 
195                 SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
196         break;
197       }
198     case 1 :
199       { 
200         GroupPoints->hide();
201         resize( 0, 0 );
202         GroupDimensions->show();
203         
204         break;
205       }
206     }
207   displayPreview();
208 }
209
210
211 //=================================================================================
212 // function : ClickOnOk()
213 // purpose  :
214 //=================================================================================
215 void PrimitiveGUI_CylinderDlg::ClickOnOk()
216 {
217   if ( ClickOnApply() )
218     ClickOnCancel();
219 }
220
221
222 //=================================================================================
223 // function : ClickOnApply()
224 // purpose  :
225 //=================================================================================
226 bool PrimitiveGUI_CylinderDlg::ClickOnApply()
227 {
228   if ( !onAccept() )
229     return false;
230
231   initName();
232   ConstructorsClicked( getConstructorId() );
233   return true;
234 }
235
236
237 //=======================================================================
238 // function : ClickOnCancel()
239 // purpose  :
240 //=======================================================================
241 void PrimitiveGUI_CylinderDlg::ClickOnCancel()
242 {
243   GEOMBase_Skeleton::ClickOnCancel();
244 }
245
246
247 //=================================================================================
248 // function : SelectionIntoArgument()
249 // purpose  : Called when selection as changed or other case
250 //=================================================================================
251 void PrimitiveGUI_CylinderDlg::SelectionIntoArgument()
252 {
253   if ( getConstructorId() != 0 )
254     return;
255
256   myEditCurrentArgument->setText("");
257   
258   if(IObjectCount() != 1) 
259     {
260       if(myEditCurrentArgument == GroupPoints->LineEdit1)
261         myPoint = GEOM::GEOM_Object::_nil();
262       else if (myEditCurrentArgument == GroupPoints->LineEdit2)
263         myDir = GEOM::GEOM_Object::_nil();
264       return;
265     }
266   
267   /* nbSel == 1 */
268   Standard_Boolean testResult = Standard_False;
269   GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject( firstIObject(), testResult );
270     
271   if(!testResult || CORBA::is_nil( aSelectedObject ))
272     return;
273
274   QString aName = GEOMBase::GetName( aSelectedObject );
275   TopoDS_Shape aShape;
276   if ( GEOMBase::GetShape( aSelectedObject, aShape, TopAbs_SHAPE ) && !aShape.IsNull() )
277     {
278       LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
279       TColStd_IndexedMapOfInteger aMap;
280       aSelMgr->GetIndexes( firstIObject(), aMap );
281       if ( aMap.Extent() == 1 )
282         {
283           GEOM::GEOM_IShapesOperations_var aShapesOp =
284             getGeomEngine()->GetIShapesOperations( getStudyId() );
285           int anIndex = aMap( 1 );
286           if ( myEditCurrentArgument == GroupPoints->LineEdit2 )
287             aName.append( ":edge_" + QString::number( anIndex ) );
288           else
289             aName.append( ":vertex_" + QString::number( anIndex ) );
290           aSelectedObject = aShapesOp->GetSubShape(aSelectedObject, anIndex);
291           aSelMgr->clearSelected();
292         }
293     }
294   myEditCurrentArgument->setText( aName );
295
296   if (myEditCurrentArgument == GroupPoints->LineEdit1)
297     myPoint = aSelectedObject;
298   else if (myEditCurrentArgument == GroupPoints->LineEdit2)
299     myDir = aSelectedObject;
300   displayPreview();
301 }
302
303
304 //=================================================================================
305 // function : SetEditCurrentArgument()
306 // purpose  :
307 //=================================================================================
308 void PrimitiveGUI_CylinderDlg::SetEditCurrentArgument()
309 {
310   QPushButton* send = (QPushButton*)sender();
311   
312   if(send == GroupPoints->PushButton1) {
313     myEditCurrentArgument = GroupPoints->LineEdit1;
314     globalSelection( GEOM_POINT ); // to break previous local selection
315     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
316   }
317   else if(send == GroupPoints->PushButton2) {
318     myEditCurrentArgument = GroupPoints->LineEdit2;
319     globalSelection( GEOM_LINE );  // to break previous local selection
320     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_EDGE );
321   }
322   
323   myEditCurrentArgument->setFocus();
324   SelectionIntoArgument();
325 }
326
327
328 //=================================================================================
329 // function : LineEditReturnPressed()
330 // purpose  :
331 //=================================================================================
332 void PrimitiveGUI_CylinderDlg::LineEditReturnPressed()
333 {  
334   QLineEdit* send = (QLineEdit*)sender();
335   if(send == GroupPoints->LineEdit1 ||
336      send == GroupPoints->LineEdit2)
337     {
338       myEditCurrentArgument = send;
339       GEOMBase_Skeleton::LineEditReturnPressed();
340     }
341 }
342
343
344 //=================================================================================
345 // function : ActivateThisDialog()
346 // purpose  :
347 //=================================================================================
348 void PrimitiveGUI_CylinderDlg::ActivateThisDialog()
349 {
350   GEOMBase_Skeleton::ActivateThisDialog();
351   connect(((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(), 
352           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
353   
354   ConstructorsClicked( getConstructorId() );
355 }
356
357
358 //=================================================================================
359 // function : enterEvent()
360 // purpose  :
361 //=================================================================================
362 void PrimitiveGUI_CylinderDlg::enterEvent(QEvent* e)
363 {
364   if ( !GroupConstructors->isEnabled() )
365     ActivateThisDialog();
366 }
367
368
369 //=================================================================================
370 // function : DeactivateActiveDialog()
371 // purpose  : public slot to deactivate if active
372 //=================================================================================
373 void PrimitiveGUI_CylinderDlg::DeactivateActiveDialog()
374 {
375   GEOMBase_Skeleton::DeactivateActiveDialog();
376 }
377
378
379 //=================================================================================
380 // function : ValueChangedInSpinBox
381 // purpose  :
382 //=================================================================================
383 void PrimitiveGUI_CylinderDlg::ValueChangedInSpinBox( )
384 {  
385   displayPreview();
386 }
387
388
389 //=================================================================================
390 // function : createOperation
391 // purpose  :
392 //=================================================================================
393 GEOM::GEOM_IOperations_ptr PrimitiveGUI_CylinderDlg::createOperation()
394 {
395   return getGeomEngine()->GetI3DPrimOperations( getStudyId() );
396 }
397
398
399 //=================================================================================
400 // function : isValid
401 // purpose  :
402 //=================================================================================
403 bool PrimitiveGUI_CylinderDlg::isValid( QString& msg )
404 {
405   return getConstructorId() == 0 ? !(myPoint->_is_nil() || myDir->_is_nil() ) : true;
406 }
407
408 //=================================================================================
409 // function : execute
410 // purpose  :
411 //=================================================================================
412 bool  PrimitiveGUI_CylinderDlg::execute( ObjectList& objects )
413 {
414   bool res = false;
415   
416   GEOM::GEOM_Object_var anObj;
417   
418   switch ( getConstructorId() ) 
419     {
420     case 0 :
421       {
422         if ( !CORBA::is_nil( myPoint ) && !CORBA::is_nil( myDir )) {
423           anObj = GEOM::GEOM_I3DPrimOperations::_narrow( getOperation() )->MakeCylinderPntVecRH(myPoint, myDir, getRadius(), getHeight());
424           res = true;
425         }
426         break;
427       }
428     case 1 :
429       {
430         anObj = GEOM::GEOM_I3DPrimOperations::_narrow( getOperation() )->MakeCylinderRH(getRadius(), getHeight());
431         res = true;
432
433         break;
434       }
435     }
436   
437   if ( !anObj->_is_nil() )
438     objects.push_back( anObj._retn() );
439   
440   return res;
441 }
442
443 //=================================================================================
444 // function : closeEvent
445 // purpose  :
446 //=================================================================================
447 void  PrimitiveGUI_CylinderDlg::closeEvent( QCloseEvent* e )
448 {
449   GEOMBase_Skeleton::closeEvent( e );
450 }
451
452
453 //=================================================================================
454 // function : getRadius()
455 // purpose  :
456 //=================================================================================
457 double PrimitiveGUI_CylinderDlg::getRadius() const
458 {
459   int aConstructorId = getConstructorId();
460   if (aConstructorId == 0)
461     return GroupPoints->SpinBox_DX->GetValue();
462   else if (aConstructorId == 1)
463     return GroupDimensions->SpinBox_DX->GetValue();
464   return 0;
465 }
466
467
468 //=================================================================================
469 // function : getHeight()
470 // purpose  :
471 //=================================================================================
472 double PrimitiveGUI_CylinderDlg::getHeight() const
473 {
474   int aConstructorId = getConstructorId();
475   if (aConstructorId == 0)
476     return GroupPoints->SpinBox_DY->GetValue();
477   else if (aConstructorId == 1)
478     return GroupDimensions->SpinBox_DY->GetValue();
479   return 0;
480 }