]> SALOME platform Git repositories - modules/geom.git/blob - src/PrimitiveGUI/PrimitiveGUI_CylinderDlg.cxx
Salome HOME
NPAL18363: EDF635: We can now select any object in all window.
[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   myEditCurrentArgument->setText( 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           TopTools_IndexedMapOfShape aShapes;
287           TopExp::MapShapes( aShape, aShapes );
288           aShape = aShapes.FindKey( anIndex );
289           aSelectedObject = aShapesOp->GetSubShape(aSelectedObject, anIndex);
290           aSelMgr->clearSelected();
291         }
292     }
293   if (myEditCurrentArgument == GroupPoints->LineEdit1)
294     myPoint = aSelectedObject;
295   else if (myEditCurrentArgument == GroupPoints->LineEdit2)
296     myDir = aSelectedObject;
297   displayPreview();
298 }
299
300
301 //=================================================================================
302 // function : SetEditCurrentArgument()
303 // purpose  :
304 //=================================================================================
305 void PrimitiveGUI_CylinderDlg::SetEditCurrentArgument()
306 {
307   QPushButton* send = (QPushButton*)sender();
308   
309   if(send == GroupPoints->PushButton1) {
310     myEditCurrentArgument = GroupPoints->LineEdit1;
311     //    globalSelection( GEOM_POINT );
312     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
313   }
314   else if(send == GroupPoints->PushButton2) {
315     myEditCurrentArgument = GroupPoints->LineEdit2;
316     //    globalSelection( GEOM_LINE );
317     GEOM::GEOM_Object_var anObj;
318     localSelection( anObj, TopAbs_EDGE );
319   }
320   
321   myEditCurrentArgument->setFocus();
322   SelectionIntoArgument();
323 }
324
325
326 //=================================================================================
327 // function : LineEditReturnPressed()
328 // purpose  :
329 //=================================================================================
330 void PrimitiveGUI_CylinderDlg::LineEditReturnPressed()
331 {  
332   QLineEdit* send = (QLineEdit*)sender();
333   if(send == GroupPoints->LineEdit1 ||
334      send == GroupPoints->LineEdit2)
335     {
336       myEditCurrentArgument = send;
337       GEOMBase_Skeleton::LineEditReturnPressed();
338     }
339 }
340
341
342 //=================================================================================
343 // function : ActivateThisDialog()
344 // purpose  :
345 //=================================================================================
346 void PrimitiveGUI_CylinderDlg::ActivateThisDialog()
347 {
348   GEOMBase_Skeleton::ActivateThisDialog();
349   connect(((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(), 
350           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
351   
352   ConstructorsClicked( getConstructorId() );
353 }
354
355
356 //=================================================================================
357 // function : enterEvent()
358 // purpose  :
359 //=================================================================================
360 void PrimitiveGUI_CylinderDlg::enterEvent(QEvent* e)
361 {
362   if ( !GroupConstructors->isEnabled() )
363     ActivateThisDialog();
364 }
365
366
367 //=================================================================================
368 // function : DeactivateActiveDialog()
369 // purpose  : public slot to deactivate if active
370 //=================================================================================
371 void PrimitiveGUI_CylinderDlg::DeactivateActiveDialog()
372 {
373   GEOMBase_Skeleton::DeactivateActiveDialog();
374 }
375
376
377 //=================================================================================
378 // function : ValueChangedInSpinBox
379 // purpose  :
380 //=================================================================================
381 void PrimitiveGUI_CylinderDlg::ValueChangedInSpinBox( )
382 {  
383   displayPreview();
384 }
385
386
387 //=================================================================================
388 // function : createOperation
389 // purpose  :
390 //=================================================================================
391 GEOM::GEOM_IOperations_ptr PrimitiveGUI_CylinderDlg::createOperation()
392 {
393   return getGeomEngine()->GetI3DPrimOperations( getStudyId() );
394 }
395
396
397 //=================================================================================
398 // function : isValid
399 // purpose  :
400 //=================================================================================
401 bool PrimitiveGUI_CylinderDlg::isValid( QString& msg )
402 {
403   return getConstructorId() == 0 ? !(myPoint->_is_nil() || myDir->_is_nil() ) : true;
404 }
405
406 //=================================================================================
407 // function : execute
408 // purpose  :
409 //=================================================================================
410 bool  PrimitiveGUI_CylinderDlg::execute( ObjectList& objects )
411 {
412   bool res = false;
413   
414   GEOM::GEOM_Object_var anObj;
415   
416   switch ( getConstructorId() ) 
417     {
418     case 0 :
419       {
420         if ( !CORBA::is_nil( myPoint ) && !CORBA::is_nil( myDir )) {
421           anObj = GEOM::GEOM_I3DPrimOperations::_narrow( getOperation() )->MakeCylinderPntVecRH(myPoint, myDir, getRadius(), getHeight());
422           res = true;
423         }
424         break;
425       }
426     case 1 :
427       {
428         anObj = GEOM::GEOM_I3DPrimOperations::_narrow( getOperation() )->MakeCylinderRH(getRadius(), getHeight());
429         res = true;
430
431         break;
432       }
433     }
434   
435   if ( !anObj->_is_nil() )
436     objects.push_back( anObj._retn() );
437   
438   return res;
439 }
440
441 //=================================================================================
442 // function : closeEvent
443 // purpose  :
444 //=================================================================================
445 void  PrimitiveGUI_CylinderDlg::closeEvent( QCloseEvent* e )
446 {
447   GEOMBase_Skeleton::closeEvent( e );
448 }
449
450
451 //=================================================================================
452 // function : getRadius()
453 // purpose  :
454 //=================================================================================
455 double PrimitiveGUI_CylinderDlg::getRadius() const
456 {
457   int aConstructorId = getConstructorId();
458   if (aConstructorId == 0)
459     return GroupPoints->SpinBox_DX->GetValue();
460   else if (aConstructorId == 1)
461     return GroupDimensions->SpinBox_DX->GetValue();
462   return 0;
463 }
464
465
466 //=================================================================================
467 // function : getHeight()
468 // purpose  :
469 //=================================================================================
470 double PrimitiveGUI_CylinderDlg::getHeight() const
471 {
472   int aConstructorId = getConstructorId();
473   if (aConstructorId == 0)
474     return GroupPoints->SpinBox_DY->GetValue();
475   else if (aConstructorId == 1)
476     return GroupDimensions->SpinBox_DY->GetValue();
477   return 0;
478 }