1 // GEOM GEOMGUI : GUI for Geometry component
3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
24 // File : PrimitiveGUI_CylinderDlg.cxx
25 // Author : Lucien PIGNOLONI
29 #include "PrimitiveGUI_CylinderDlg.h"
31 #include "SUIT_Desktop.h"
32 #include "SUIT_Session.h"
33 #include "SalomeApp_Application.h"
34 #include "LightApp_SelectionMgr.h"
36 #include <TopoDS_Shape.hxx>
37 #include <TopoDS_Edge.hxx>
40 #include <TColStd_IndexedMapOfInteger.hxx>
41 #include <TopTools_IndexedMapOfShape.hxx>
45 #include "GEOMImpl_Types.hxx"
47 #include "utilities.h"
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)
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")));
67 setCaption(tr("GEOM_CYLINDER_TITLE"));
69 /***************************************************************/
70 GroupConstructors->setTitle(tr("GEOM_CYLINDER"));
71 RadioButton1->setPixmap(image0);
72 RadioButton2->setPixmap(image1);
73 RadioButton3->close(TRUE);
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);
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"));
89 Layout1->addWidget(GroupPoints, 2, 0);
90 Layout1->addWidget(GroupDimensions, 2, 0);
91 /***************************************************************/
93 setHelpFileName("create_cylinder_page.html");
99 //=================================================================================
100 // function : ~PrimitiveGUI_CylinderDlg()
101 // purpose : Destroys the object and frees any allocated resources
102 //=================================================================================
103 PrimitiveGUI_CylinderDlg::~PrimitiveGUI_CylinderDlg()
105 // no need to delete child widgets, Qt does it all for us
109 //=================================================================================
112 //=================================================================================
113 void PrimitiveGUI_CylinderDlg::Init()
116 myEditCurrentArgument = GroupPoints->LineEdit1;
117 GroupPoints->LineEdit1->setReadOnly( true );
118 GroupPoints->LineEdit2->setReadOnly( true );
120 myPoint = myDir = GEOM::GEOM_Object::_nil();
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);
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);
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);
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)));
146 connect(GroupPoints->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
147 connect(GroupPoints->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
149 connect(GroupPoints->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
150 connect(GroupPoints->LineEdit2, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
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()));
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)));
162 connect(myGeomGUI->getApp()->selectionMgr(),
163 SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument())) ;
165 initName( tr( "GEOM_CYLINDER" ) );
166 ConstructorsClicked(0);
170 //=================================================================================
171 // function : ConstructorsClicked()
172 // purpose : Radio button management
173 //=================================================================================
174 void PrimitiveGUI_CylinderDlg::ConstructorsClicked(int constructorId)
176 disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
178 switch (constructorId)
182 globalSelection( GEOM_POINT ); // to break previous local selection
183 localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
185 GroupDimensions->hide();
189 myEditCurrentArgument = GroupPoints->LineEdit1;
190 GroupPoints->LineEdit1->setText(tr(""));
191 GroupPoints->LineEdit2->setText(tr(""));
192 myPoint = myDir = GEOM::GEOM_Object::_nil();
194 connect(myGeomGUI->getApp()->selectionMgr(),
195 SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
201 globalSelection(); // close local contexts, if any
203 GroupDimensions->show();
212 //=================================================================================
213 // function : ClickOnOk()
215 //=================================================================================
216 void PrimitiveGUI_CylinderDlg::ClickOnOk()
218 if ( ClickOnApply() )
223 //=================================================================================
224 // function : ClickOnApply()
226 //=================================================================================
227 bool PrimitiveGUI_CylinderDlg::ClickOnApply()
233 ConstructorsClicked( getConstructorId() );
238 //=======================================================================
239 // function : ClickOnCancel()
241 //=======================================================================
242 void PrimitiveGUI_CylinderDlg::ClickOnCancel()
244 GEOMBase_Skeleton::ClickOnCancel();
248 //=================================================================================
249 // function : SelectionIntoArgument()
250 // purpose : Called when selection as changed or other case
251 //=================================================================================
252 void PrimitiveGUI_CylinderDlg::SelectionIntoArgument()
254 if (getConstructorId() != 0)
257 myEditCurrentArgument->setText("");
259 if (IObjectCount() != 1)
261 if (myEditCurrentArgument == GroupPoints->LineEdit1)
262 myPoint = GEOM::GEOM_Object::_nil();
263 else if (myEditCurrentArgument == GroupPoints->LineEdit2)
264 myDir = GEOM::GEOM_Object::_nil();
269 Standard_Boolean testResult = Standard_False;
270 GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject(firstIObject(), testResult);
272 if (!testResult || CORBA::is_nil(aSelectedObject))
275 QString aName = GEOMBase::GetName(aSelectedObject);
277 if (GEOMBase::GetShape(aSelectedObject, aShape, TopAbs_SHAPE) && !aShape.IsNull())
279 TopAbs_ShapeEnum aNeedType = TopAbs_VERTEX;
280 if (myEditCurrentArgument == GroupPoints->LineEdit2)
281 aNeedType = TopAbs_EDGE;
283 LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
284 TColStd_IndexedMapOfInteger aMap;
285 aSelMgr->GetIndexes(firstIObject(), aMap);
286 if (aMap.Extent() == 1) // Local Selection
288 int anIndex = aMap(1);
289 if (aNeedType == TopAbs_EDGE)
290 aName.append(":edge_" + QString::number(anIndex));
292 aName.append(":vertex_" + QString::number(anIndex));
294 //Find SubShape Object in Father
295 GEOM::GEOM_Object_var aFindedObject = GEOMBase_Helper::findObjectInFather(aSelectedObject, aName);
297 if ( aFindedObject == GEOM::GEOM_Object::_nil() ) { // Object not found in study
298 GEOM::GEOM_IShapesOperations_var aShapesOp =
299 getGeomEngine()->GetIShapesOperations(getStudyId());
300 aSelectedObject = aShapesOp->GetSubShape(aSelectedObject, anIndex);
303 aSelectedObject = aFindedObject; // get Object from study
305 else // Global Selection
307 if (aShape.ShapeType() != aNeedType) {
308 aSelectedObject = GEOM::GEOM_Object::_nil();
314 myEditCurrentArgument->setText(aName);
316 if (myEditCurrentArgument == GroupPoints->LineEdit1)
317 myPoint = aSelectedObject;
318 else if (myEditCurrentArgument == GroupPoints->LineEdit2)
319 myDir = aSelectedObject;
323 //=================================================================================
324 // function : SetEditCurrentArgument()
326 //=================================================================================
327 void PrimitiveGUI_CylinderDlg::SetEditCurrentArgument()
329 QPushButton* send = (QPushButton*)sender();
331 if (send == GroupPoints->PushButton1) {
332 myEditCurrentArgument = GroupPoints->LineEdit1;
333 globalSelection( GEOM_POINT ); // to break previous local selection
334 localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
336 else if (send == GroupPoints->PushButton2) {
337 myEditCurrentArgument = GroupPoints->LineEdit2;
338 globalSelection( GEOM_LINE ); // to break previous local selection
339 localSelection( GEOM::GEOM_Object::_nil(), TopAbs_EDGE );
342 myEditCurrentArgument->setFocus();
343 SelectionIntoArgument();
347 //=================================================================================
348 // function : LineEditReturnPressed()
350 //=================================================================================
351 void PrimitiveGUI_CylinderDlg::LineEditReturnPressed()
353 QLineEdit* send = (QLineEdit*)sender();
354 if(send == GroupPoints->LineEdit1 ||
355 send == GroupPoints->LineEdit2)
357 myEditCurrentArgument = send;
358 GEOMBase_Skeleton::LineEditReturnPressed();
362 //=================================================================================
363 // function : ActivateThisDialog()
365 //=================================================================================
366 void PrimitiveGUI_CylinderDlg::ActivateThisDialog()
368 GEOMBase_Skeleton::ActivateThisDialog();
369 connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
370 this, SLOT(SelectionIntoArgument()));
372 ConstructorsClicked(getConstructorId());
375 //=================================================================================
376 // function : enterEvent()
378 //=================================================================================
379 void PrimitiveGUI_CylinderDlg::enterEvent(QEvent* e)
381 if ( !GroupConstructors->isEnabled() )
382 ActivateThisDialog();
386 //=================================================================================
387 // function : DeactivateActiveDialog()
388 // purpose : public slot to deactivate if active
389 //=================================================================================
390 void PrimitiveGUI_CylinderDlg::DeactivateActiveDialog()
392 GEOMBase_Skeleton::DeactivateActiveDialog();
396 //=================================================================================
397 // function : ValueChangedInSpinBox
399 //=================================================================================
400 void PrimitiveGUI_CylinderDlg::ValueChangedInSpinBox( )
406 //=================================================================================
407 // function : createOperation
409 //=================================================================================
410 GEOM::GEOM_IOperations_ptr PrimitiveGUI_CylinderDlg::createOperation()
412 return getGeomEngine()->GetI3DPrimOperations( getStudyId() );
416 //=================================================================================
417 // function : isValid
419 //=================================================================================
420 bool PrimitiveGUI_CylinderDlg::isValid( QString& msg )
422 return getConstructorId() == 0 ? !(myPoint->_is_nil() || myDir->_is_nil() ) : true;
425 //=================================================================================
426 // function : execute
428 //=================================================================================
429 bool PrimitiveGUI_CylinderDlg::execute( ObjectList& objects )
433 GEOM::GEOM_Object_var anObj;
435 switch ( getConstructorId() )
439 if ( !CORBA::is_nil( myPoint ) && !CORBA::is_nil( myDir )) {
440 anObj = GEOM::GEOM_I3DPrimOperations::_narrow( getOperation() )->MakeCylinderPntVecRH(myPoint, myDir, getRadius(), getHeight());
447 anObj = GEOM::GEOM_I3DPrimOperations::_narrow( getOperation() )->MakeCylinderRH(getRadius(), getHeight());
454 if ( !anObj->_is_nil() )
455 objects.push_back( anObj._retn() );
460 //=================================================================================
461 // function : closeEvent
463 //=================================================================================
464 void PrimitiveGUI_CylinderDlg::closeEvent( QCloseEvent* e )
466 GEOMBase_Skeleton::closeEvent( e );
470 //=================================================================================
471 // function : getRadius()
473 //=================================================================================
474 double PrimitiveGUI_CylinderDlg::getRadius() const
476 int aConstructorId = getConstructorId();
477 if (aConstructorId == 0)
478 return GroupPoints->SpinBox_DX->GetValue();
479 else if (aConstructorId == 1)
480 return GroupDimensions->SpinBox_DX->GetValue();
484 //=================================================================================
485 // function : getHeight()
487 //=================================================================================
488 double PrimitiveGUI_CylinderDlg::getHeight() const
490 int aConstructorId = getConstructorId();
491 if (aConstructorId == 0)
492 return GroupPoints->SpinBox_DY->GetValue();
493 else if (aConstructorId == 1)
494 return GroupDimensions->SpinBox_DY->GetValue();
498 //=================================================================================
499 // function : addSubshapeToStudy
500 // purpose : virtual method to add new SubObjects if local selection
501 //=================================================================================
502 void PrimitiveGUI_CylinderDlg::addSubshapesToStudy()
504 QMap<QString, GEOM::GEOM_Object_var> objMap;
506 switch (getConstructorId())
509 objMap[GroupPoints->LineEdit1->text()] = myPoint;
510 objMap[GroupPoints->LineEdit2->text()] = myDir;
515 addSubshapesToFather( objMap );