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_TorusDlg.cxx
25 // Author : Lucien PIGNOLONI
29 #include "PrimitiveGUI_TorusDlg.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"
49 //=================================================================================
50 // class : PrimitiveGUI_TorusDlg()
51 // purpose : Constructs a PrimitiveGUI_TorusDlg which is a child of 'parent', with the
52 // name 'name' and widget flags set to 'f'.
53 // The dialog will by default be modeless, unless you set 'modal' to
54 // TRUE to construct a modal dialog.
55 //=================================================================================
56 PrimitiveGUI_TorusDlg::PrimitiveGUI_TorusDlg(GeometryGUI* theGeometryGUI, QWidget* parent,
57 const char* name, bool modal, WFlags fl)
58 : GEOMBase_Skeleton(theGeometryGUI, parent, name, modal, WStyle_Customize |
59 WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu)
61 SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
62 QPixmap image0(aResMgr->loadPixmap("GEOM", tr("ICON_DLG_TORUS_PV")));
63 QPixmap image1(aResMgr->loadPixmap("GEOM", tr("ICON_DLG_TORUS_DXYZ")));
64 QPixmap image2(aResMgr->loadPixmap("GEOM", tr("ICON_SELECT")));
66 setCaption(tr("GEOM_TORUS_TITLE"));
68 /***************************************************************/
69 GroupConstructors->setTitle(tr("GEOM_TORUS"));
70 RadioButton1->setPixmap(image0);
71 RadioButton2->setPixmap(image1);
72 RadioButton3->close(TRUE);
74 GroupPoints = new DlgRef_2Sel2Spin(this, "GroupPoints");
75 GroupPoints->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
76 GroupPoints->TextLabel1->setText(tr("GEOM_BASE_POINT"));
77 GroupPoints->TextLabel2->setText(tr("GEOM_VECTOR"));
78 GroupPoints->TextLabel3->setText(tr("GEOM_RADIUS_I").arg("1"));
79 GroupPoints->TextLabel4->setText(tr("GEOM_RADIUS_I").arg("2"));
80 GroupPoints->PushButton1->setPixmap(image2);
81 GroupPoints->PushButton2->setPixmap(image2);
83 GroupDimensions = new DlgRef_2Spin(this, "GroupDimensions");
84 GroupDimensions->GroupBox1->setTitle(tr("GEOM_BOX_OBJ"));
85 GroupDimensions->TextLabel1->setText(tr("GEOM_RADIUS_I").arg("1"));
86 GroupDimensions->TextLabel2->setText(tr("GEOM_RADIUS_I").arg("2"));
88 Layout1->addWidget(GroupPoints, 2, 0);
89 Layout1->addWidget(GroupDimensions, 2, 0);
90 /***************************************************************/
92 setHelpFileName("create_torus_page.html");
98 //=================================================================================
99 // function : ~PrimitiveGUI_TorusDlg()
100 // purpose : Destroys the object and frees any allocated resources
101 //=================================================================================
102 PrimitiveGUI_TorusDlg::~PrimitiveGUI_TorusDlg()
104 // no need to delete child widgets, Qt does it all for us
108 //=================================================================================
111 //=================================================================================
112 void PrimitiveGUI_TorusDlg::Init()
115 myEditCurrentArgument = GroupPoints->LineEdit1;
116 GroupPoints->LineEdit1->setReadOnly( true );
117 GroupPoints->LineEdit2->setReadOnly( true );
119 myPoint = myDir = GEOM::GEOM_Object::_nil();
121 /* Get setting of step value from file configuration */
122 SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
123 double step = resMgr->doubleValue( "Geometry", "SettingsGeomStep", 100);
125 /* min, max, step and decimals for spin boxes & initial values */
126 GroupPoints->SpinBox_DX->RangeStepAndValidator(0.001, COORD_MAX, step, DBL_DIGITS_DISPLAY);
127 GroupPoints->SpinBox_DY->RangeStepAndValidator(0.001, COORD_MAX, step, DBL_DIGITS_DISPLAY);
128 GroupDimensions->SpinBox_DX->RangeStepAndValidator(0.001, COORD_MAX, step, DBL_DIGITS_DISPLAY);
129 GroupDimensions->SpinBox_DY->RangeStepAndValidator(0.001, COORD_MAX, step, DBL_DIGITS_DISPLAY);
131 GroupPoints->SpinBox_DX->SetValue(300.0);
132 GroupPoints->SpinBox_DY->SetValue(100.0);
133 GroupDimensions->SpinBox_DX->SetValue(300.0);
134 GroupDimensions->SpinBox_DY->SetValue(100.0);
136 /* signals and slots connections */
137 connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
138 connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
140 connect(GroupConstructors, SIGNAL(clicked(int)), this, SLOT(ConstructorsClicked(int)));
142 connect(GroupPoints->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
143 connect(GroupPoints->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
145 connect(GroupPoints->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
146 connect(GroupPoints->LineEdit2, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
148 connect(GroupPoints->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
149 connect(GroupPoints->SpinBox_DY, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
150 connect(GroupDimensions->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
151 connect(GroupDimensions->SpinBox_DY, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
153 connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)),
154 GroupPoints->SpinBox_DX, SLOT(SetStep(double)));
155 connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)),
156 GroupPoints->SpinBox_DY, SLOT(SetStep(double)));
157 connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)),
158 GroupDimensions->SpinBox_DX, SLOT(SetStep(double)));
159 connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)),
160 GroupDimensions->SpinBox_DY, SLOT(SetStep(double)));
162 connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
163 this, SLOT(SelectionIntoArgument()));
165 initName( tr( "GEOM_TORUS" ) );
166 ConstructorsClicked(0);
169 //=================================================================================
170 // function : ConstructorsClicked()
171 // purpose : Radio button management
172 //=================================================================================
173 void PrimitiveGUI_TorusDlg::ConstructorsClicked (int constructorId)
175 disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
177 switch (constructorId)
181 globalSelection(); // close local contexts, if any
182 localSelection(GEOM::GEOM_Object::_nil(), TopAbs_VERTEX);
184 GroupDimensions->hide();
188 myEditCurrentArgument = GroupPoints->LineEdit1;
189 GroupPoints->LineEdit1->setText(tr(""));
190 GroupPoints->LineEdit2->setText(tr(""));
191 myPoint = myDir = GEOM::GEOM_Object::_nil();
193 connect(myGeomGUI->getApp()->selectionMgr(),
194 SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
195 SelectionIntoArgument();
202 globalSelection(); // close local contexts, if any
204 GroupDimensions->show();
214 //=================================================================================
215 // function : ClickOnOk()
217 //=================================================================================
218 void PrimitiveGUI_TorusDlg::ClickOnOk()
225 //=================================================================================
226 // function : ClickOnApply()
228 //=================================================================================
229 bool PrimitiveGUI_TorusDlg::ClickOnApply()
239 //=================================================================================
240 // function : SelectionIntoArgument()
241 // purpose : Called when selection as changed or other case
242 //=================================================================================
243 void PrimitiveGUI_TorusDlg::SelectionIntoArgument()
245 if (getConstructorId() != 0)
248 myEditCurrentArgument->setText("");
250 if (IObjectCount() != 1)
252 if (myEditCurrentArgument == GroupPoints->LineEdit1)
253 myPoint = GEOM::GEOM_Object::_nil();
254 else if (myEditCurrentArgument == GroupPoints->LineEdit2)
255 myDir = GEOM::GEOM_Object::_nil();
260 Standard_Boolean testResult = Standard_False;
261 GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject(firstIObject(), testResult);
263 if (!testResult || CORBA::is_nil(aSelectedObject))
266 QString aName = GEOMBase::GetName(aSelectedObject);
268 if (GEOMBase::GetShape(aSelectedObject, aShape, TopAbs_SHAPE) && !aShape.IsNull())
270 TopAbs_ShapeEnum aNeedType = TopAbs_VERTEX;
271 if (myEditCurrentArgument == GroupPoints->LineEdit2)
272 aNeedType = TopAbs_EDGE;
274 LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
275 TColStd_IndexedMapOfInteger aMap;
276 aSelMgr->GetIndexes(firstIObject(), aMap);
277 if (aMap.Extent() == 1) // Local Selection
279 int anIndex = aMap(1);
280 if (aNeedType == TopAbs_EDGE)
281 aName.append(":edge_" + QString::number(anIndex));
283 aName.append(":vertex_" + QString::number(anIndex));
285 //Find SubShape Object in Father
286 GEOM::GEOM_Object_var aFindedObject = GEOMBase_Helper::findObjectInFather(aSelectedObject, aName);
288 if ( aFindedObject == GEOM::GEOM_Object::_nil() ) { // Object not found in study
289 GEOM::GEOM_IShapesOperations_var aShapesOp =
290 getGeomEngine()->GetIShapesOperations( getStudyId() );
291 aSelectedObject = aShapesOp->GetSubShape(aSelectedObject, anIndex);
294 aSelectedObject = aFindedObject; // get Object from study
296 else // Global Selection
298 if (aShape.ShapeType() != aNeedType) {
299 aSelectedObject = GEOM::GEOM_Object::_nil();
305 myEditCurrentArgument->setText(aName);
307 if (myEditCurrentArgument == GroupPoints->LineEdit1)
308 myPoint = aSelectedObject;
309 else if (myEditCurrentArgument == GroupPoints->LineEdit2)
310 myDir = aSelectedObject;
315 //=================================================================================
316 // function : LineEditReturnPressed()
318 //=================================================================================
319 void PrimitiveGUI_TorusDlg::LineEditReturnPressed()
321 QLineEdit* send = (QLineEdit*)sender();
322 if (send == GroupPoints->LineEdit1 ||
323 send == GroupPoints->LineEdit2)
325 myEditCurrentArgument = send;
326 GEOMBase_Skeleton::LineEditReturnPressed();
331 //=================================================================================
332 // function : SetEditCurrentArgument()
334 //=================================================================================
335 void PrimitiveGUI_TorusDlg::SetEditCurrentArgument()
337 QPushButton* send = (QPushButton*)sender();
338 globalSelection( GEOM_POINT ); // to break previous local selection
340 if (send == GroupPoints->PushButton1) {
341 myEditCurrentArgument = GroupPoints->LineEdit1;
342 localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
344 else if (send == GroupPoints->PushButton2) {
345 myEditCurrentArgument = GroupPoints->LineEdit2;
346 GEOM::GEOM_Object_var anObj;
347 localSelection( anObj, TopAbs_EDGE );
350 myEditCurrentArgument->setFocus();
351 SelectionIntoArgument();
355 //=================================================================================
356 // function : ActivateThisDialog()
358 //=================================================================================
359 void PrimitiveGUI_TorusDlg::ActivateThisDialog()
361 GEOMBase_Skeleton::ActivateThisDialog();
363 connect(myGeomGUI->getApp()->selectionMgr(),
364 SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
366 ConstructorsClicked( getConstructorId() );
370 //=================================================================================
371 // function : enterEvent()
373 //=================================================================================
374 void PrimitiveGUI_TorusDlg::enterEvent(QEvent* e)
376 if ( !GroupConstructors->isEnabled() )
377 ActivateThisDialog();
381 //=================================================================================
382 // function : ValueChangedInSpinBox
384 //=================================================================================
385 void PrimitiveGUI_TorusDlg::ValueChangedInSpinBox()
391 //=================================================================================
392 // function : createOperation
394 //=================================================================================
395 GEOM::GEOM_IOperations_ptr PrimitiveGUI_TorusDlg::createOperation()
397 return getGeomEngine()->GetI3DPrimOperations( getStudyId() );
400 //=================================================================================
401 // function : isValid
403 //=================================================================================
404 bool PrimitiveGUI_TorusDlg::isValid( QString& msg )
406 return getConstructorId() == 0 ? !(myPoint->_is_nil() || myDir->_is_nil()) : true;
409 //=================================================================================
410 // function : execute
412 //=================================================================================
413 bool PrimitiveGUI_TorusDlg::execute( ObjectList& objects )
417 GEOM::GEOM_Object_var anObj;
419 switch ( getConstructorId() )
423 if (!CORBA::is_nil( myPoint ) && !CORBA::is_nil( myDir ))
425 anObj = GEOM::GEOM_I3DPrimOperations::_narrow( getOperation() )->
426 MakeTorusPntVecRR(myPoint, myDir, getRadius1(), getRadius2());
433 anObj = GEOM::GEOM_I3DPrimOperations::_narrow( getOperation() )->
434 MakeTorusRR(getRadius1(), getRadius2());
440 if ( !anObj->_is_nil() )
441 objects.push_back( anObj._retn() );
446 //=================================================================================
447 // function : getRadius1()
449 //=================================================================================
450 double PrimitiveGUI_TorusDlg::getRadius1() const
452 int aConstructorId = getConstructorId();
453 if (aConstructorId == 0)
454 return GroupPoints->SpinBox_DX->GetValue();
455 else if (aConstructorId == 1)
456 return GroupDimensions->SpinBox_DX->GetValue();
460 //=================================================================================
461 // function : getRadius2()
463 //=================================================================================
464 double PrimitiveGUI_TorusDlg::getRadius2() const
466 int aConstructorId = getConstructorId();
467 if (aConstructorId == 0)
468 return GroupPoints->SpinBox_DY->GetValue();
469 else if (aConstructorId == 1)
470 return GroupDimensions->SpinBox_DY->GetValue();
474 //=================================================================================
475 // function : addSubshapeToStudy
476 // purpose : virtual method to add new SubObjects if local selection
477 //=================================================================================
478 void PrimitiveGUI_TorusDlg::addSubshapesToStudy()
480 QMap<QString, GEOM::GEOM_Object_var> objMap;
482 switch (getConstructorId())
485 objMap[GroupPoints->LineEdit1->text()] = myPoint;
486 objMap[GroupPoints->LineEdit2->text()] = myDir;
491 addSubshapesToFather( objMap );