1 // Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 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
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File : GenerationGUI_RevolDlg.cxx
25 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
27 #include "GenerationGUI_RevolDlg.h"
30 #include <GeometryGUI.h>
33 #include <SUIT_Session.h>
34 #include <SUIT_ResourceMgr.h>
35 #include <SalomeApp_Application.h>
36 #include <LightApp_SelectionMgr.h>
38 #include <TopoDS_Shape.hxx>
39 #include <TopoDS_Edge.hxx>
42 #include <TColStd_IndexedMapOfInteger.hxx>
43 #include <TopTools_IndexedMapOfShape.hxx>
44 #include <TopExp_Explorer.hxx>
46 #include <GEOMImpl_Types.hxx>
48 //=================================================================================
49 // class : GenerationGUI_RevolDlg()
50 // purpose : Constructs a GenerationGUI_RevolDlg which is a child of 'parent', with the
51 // name 'name' and widget flags set to 'f'.
52 // The dialog will by default be modeless, unless you set 'modal' to
53 // TRUE to construct a modal dialog.
54 //=================================================================================
55 GenerationGUI_RevolDlg::GenerationGUI_RevolDlg (GeometryGUI* theGeometryGUI, QWidget* parent,
56 bool modal, Qt::WindowFlags fl)
57 : GEOMBase_Skeleton(theGeometryGUI, parent, modal, fl)
59 QPixmap image0 (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_DLG_REVOL")));
60 QPixmap image1 (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_SELECT")));
62 setWindowTitle(tr("GEOM_REVOLUTION_TITLE"));
64 /***************************************************************/
65 mainFrame()->GroupConstructors->setTitle(tr("GEOM_REVOLUTION"));
66 mainFrame()->RadioButton1->setIcon(image0);
67 mainFrame()->RadioButton2->setAttribute(Qt::WA_DeleteOnClose);
68 mainFrame()->RadioButton2->close();
69 mainFrame()->RadioButton3->setAttribute(Qt::WA_DeleteOnClose);
70 mainFrame()->RadioButton3->close();
73 GroupPoints = new DlgRef_2Sel1Spin2Check(centralWidget());
74 GroupPoints->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
75 GroupPoints->TextLabel1->setText(tr("GEOM_OBJECTS"));
76 GroupPoints->TextLabel2->setText(tr("GEOM_AXIS"));
77 GroupPoints->TextLabel3->setText(tr("GEOM_ANGLE"));
78 GroupPoints->PushButton1->setIcon(image1);
79 GroupPoints->PushButton2->setIcon(image1);
80 GroupPoints->LineEdit1->setReadOnly(true);
81 GroupPoints->LineEdit2->setReadOnly(true);
82 GroupPoints->CheckButton1->setText(tr("GEOM_BOTHWAY"));
83 GroupPoints->CheckButton2->setText(tr("GEOM_REVERSE"));
85 QVBoxLayout* layout = new QVBoxLayout(centralWidget());
86 layout->setMargin(0); layout->setSpacing(6);
87 layout->addWidget(GroupPoints);
88 /***************************************************************/
90 setHelpFileName("create_revolution_page.html");
96 //=================================================================================
97 // function : ~GenerationGUI_RevolDlg()
98 // purpose : Destroys the object and frees any allocated resources
99 //=================================================================================
100 GenerationGUI_RevolDlg::~GenerationGUI_RevolDlg()
102 // no need to delete child widgets, Qt does it all for us
105 //=================================================================================
108 //=================================================================================
109 void GenerationGUI_RevolDlg::Init()
111 // min, max, step and decimals for spin boxes & initial values
112 double SpecificStep = 5;
113 initSpinBox(GroupPoints->SpinBox_DX, -360.0, 360.0, SpecificStep, "angle_precision" );
114 GroupPoints->SpinBox_DX->setValue(45.0);
117 GroupPoints->LineEdit1->setReadOnly(true);
118 GroupPoints->LineEdit2->setReadOnly(true);
120 GroupPoints->LineEdit1->setText("");
121 GroupPoints->LineEdit2->setText("");
122 myAxis = GEOM::GEOM_Object::_nil();
123 myOkBase = myOkAxis = false;
125 // signals and slots connections
126 connect(buttonOk(), SIGNAL(clicked()), this, SLOT(ClickOnOk()));
127 connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
129 connect(GroupPoints->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
130 connect(GroupPoints->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
132 connect(GroupPoints->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
133 connect(GroupPoints->LineEdit2, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
135 connect(GroupPoints->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
136 connect(GroupPoints->CheckButton1, SIGNAL(toggled(bool)), this, SLOT(onBothway()));
137 connect(GroupPoints->CheckButton2, SIGNAL(toggled(bool)), this, SLOT(onReverse()));
139 // san: We don't need this, as the default step value is not used in this dialog box
140 //connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), this, SLOT(SetDoubleSpinBoxStep(double)));
142 initName(tr("GEOM_REVOLUTION"));
145 GroupPoints->PushButton1->click();
146 SelectionIntoArgument();
149 //=================================================================================
150 // function : SetDoubleSpinBoxStep()
151 // purpose : Double spin box management
152 //=================================================================================
153 void GenerationGUI_RevolDlg::SetDoubleSpinBoxStep (double step)
155 GroupPoints->SpinBox_DX->setSingleStep(step);
158 //=================================================================================
159 // function : ClickOnOk()
161 //=================================================================================
162 void GenerationGUI_RevolDlg::ClickOnOk()
168 //=================================================================================
169 // function : ClickOnApply()
171 //=================================================================================
172 bool GenerationGUI_RevolDlg::ClickOnApply()
178 // activate selection and connect selection manager
179 GroupPoints->PushButton1->click();
183 //=======================================================================
184 //function : isAcceptableBase
185 //purpose : return true if theBase can be used as algo argument
186 //=======================================================================
187 static bool isAcceptableBase (const TopoDS_Shape& theBase)
189 switch (theBase.ShapeType()) {
197 case TopAbs_COMPSOLID:
199 case TopAbs_COMPOUND: {
200 TopExp_Explorer exp(theBase, TopAbs_SOLID);
209 //=================================================================================
210 // function : SelectionIntoArgument()
211 // purpose : Called when selection is changed or on dialog initialization or activation
212 //=================================================================================
213 void GenerationGUI_RevolDlg::SelectionIntoArgument()
216 myEditCurrentArgument->setText("");
217 if (myEditCurrentArgument == GroupPoints->LineEdit1) myOkBase = false;
218 else if (myEditCurrentArgument == GroupPoints->LineEdit2) myOkAxis = false;
220 LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
221 SALOME_ListIO aSelList;
222 aSelMgr->selectedObjects(aSelList);
224 if (aSelList.Extent() < 1)
227 Standard_Boolean testResult = Standard_False;
228 GEOM::GEOM_Object_ptr aSelectedObject = GEOMBase::ConvertIOinGEOMObject(aSelList.First(), testResult);
229 QString aName = GEOMBase::GetName(aSelectedObject);
231 if (!testResult || aSelectedObject->_is_nil())
235 if (!GEOMBase::GetShape(aSelectedObject, S) || S.IsNull())
238 if (myEditCurrentArgument == GroupPoints->LineEdit1) {
240 if (aSelList.Extent() > 1)
241 aName = QString( "%1_objects").arg( aSelList.Extent() );
243 if ( aSelList.Extent() > 0 ) {
244 GEOMBase::ConvertListOfIOInListOfGO(aSelList, myBaseObjects, true);
246 for (int i=0; i < myBaseObjects.length(); i++) {
247 GEOMBase::GetShape(myBaseObjects[i], S);
248 if (!isAcceptableBase(S))
251 myEditCurrentArgument->setText( aName );
255 else if (myEditCurrentArgument == GroupPoints->LineEdit2) {
256 TColStd_IndexedMapOfInteger aMap;
257 aSelMgr->GetIndexes(aSelList.First(), aMap);
258 if (aMap.Extent() == 1) {
259 int anIndex = aMap(1);
260 aName.append(":edge_" + QString::number(anIndex));
262 //Find SubShape Object in Father
263 GEOM::GEOM_Object_var aFindedObject = GEOMBase_Helper::findObjectInFather(aSelectedObject, aName);
265 if (aFindedObject == GEOM::GEOM_Object::_nil()) { // Object not found in study
266 GEOM::GEOM_IShapesOperations_var aShapesOp =
267 getGeomEngine()->GetIShapesOperations(getStudyId());
268 myAxis = aShapesOp->GetSubShape(aSelectedObject, anIndex);
271 myAxis = aFindedObject;
276 if (S.ShapeType() != TopAbs_EDGE) {
277 aSelectedObject = GEOM::GEOM_Object::_nil();
281 myAxis = aSelectedObject;
283 myEditCurrentArgument->setText(aName);
284 if (myOkAxis && !myOkBase)
285 GroupPoints->PushButton1->click();
291 //=================================================================================
292 // function : SetEditCurrentArgument()
294 //=================================================================================
295 void GenerationGUI_RevolDlg::SetEditCurrentArgument()
297 QPushButton* send = (QPushButton*)sender();
299 disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
300 globalSelection(GEOM_ALLSHAPES);
301 if (send == GroupPoints->PushButton1) {
302 myEditCurrentArgument = GroupPoints->LineEdit1;
303 GroupPoints->PushButton2->setDown(false);
304 GroupPoints->LineEdit2->setEnabled(false);
306 else if (send == GroupPoints->PushButton2) {
307 myEditCurrentArgument = GroupPoints->LineEdit2;
308 GroupPoints->PushButton1->setDown(false);
309 GroupPoints->LineEdit1->setEnabled(false);
310 localSelection(GEOM::GEOM_Object::_nil(), TopAbs_EDGE);
312 connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
313 this, SLOT(SelectionIntoArgument()));
316 myEditCurrentArgument->setEnabled(true);
317 myEditCurrentArgument->setFocus();
318 // after setFocus(), because it will be setDown(false) when loses focus
321 // seems we need it only to avoid preview disappearing, caused by selection mode change
325 //=================================================================================
326 // function : LineEditReturnPressed()
328 //=================================================================================
329 void GenerationGUI_RevolDlg::LineEditReturnPressed()
331 QLineEdit* send = (QLineEdit*)sender();
332 if (send == GroupPoints->LineEdit1 ||
333 send == GroupPoints->LineEdit2) {
334 myEditCurrentArgument = send;
335 GEOMBase_Skeleton::LineEditReturnPressed();
339 //=================================================================================
340 // function : ActivateThisDialog()
342 //=================================================================================
343 void GenerationGUI_RevolDlg::ActivateThisDialog()
345 GEOMBase_Skeleton::ActivateThisDialog();
346 connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
347 this, SLOT( SelectionIntoArgument() ) );
352 //=================================================================================
353 // function : enterEvent()
355 //=================================================================================
356 void GenerationGUI_RevolDlg::enterEvent (QEvent*)
358 if (!mainFrame()->GroupConstructors->isEnabled())
359 ActivateThisDialog();
362 //=================================================================================
363 // function : ValueChangedInSpinBox()
365 //=================================================================================
366 void GenerationGUI_RevolDlg::ValueChangedInSpinBox()
371 //=================================================================================
372 // function : getAngle()
374 //=================================================================================
375 double GenerationGUI_RevolDlg::getAngle() const
377 return GroupPoints->SpinBox_DX->value();
380 //=================================================================================
381 // function : createOperation
383 //=================================================================================
384 GEOM::GEOM_IOperations_ptr GenerationGUI_RevolDlg::createOperation()
386 return getGeomEngine()->GetI3DPrimOperations(getStudyId());
389 //=================================================================================
390 // function : isValid
392 //=================================================================================
393 bool GenerationGUI_RevolDlg::isValid (QString& msg)
395 bool ok = GroupPoints->SpinBox_DX->isValid( msg, !IsPreview() );
396 return myOkBase && myOkAxis && ok;
399 //=================================================================================
400 // function : execute
402 //=================================================================================
403 bool GenerationGUI_RevolDlg::execute (ObjectList& objects)
405 GEOM::GEOM_Object_var anObj, aBase;
406 GEOM::GEOM_I3DPrimOperations_var anOper = GEOM::GEOM_I3DPrimOperations::_narrow(getOperation());
408 for (int i=0; i < myBaseObjects.length(); i++) {
409 aBase = myBaseObjects[i];
412 anObj = anOper->MakeRevolutionAxisAngle(aBase, myAxis, getAngle() * PI180);
414 anObj = anOper->MakeRevolutionAxisAngle2Ways(aBase, myAxis, getAngle() * PI180);
416 if (!anObj->_is_nil()) {
418 QStringList aParameters;
419 aParameters << GroupPoints->SpinBox_DX->text();
420 anObj->SetParameters(aParameters.join(":").toLatin1().constData());
422 objects.push_back(anObj._retn());
429 //=================================================================================
430 // function : onReverse()
432 //=================================================================================
433 void GenerationGUI_RevolDlg::onReverse()
435 double anOldValue = GroupPoints->SpinBox_DX->value();
436 GroupPoints->SpinBox_DX->setValue(-anOldValue);
439 //=================================================================================
440 // function : onBothway()
442 //=================================================================================
443 void GenerationGUI_RevolDlg::onBothway()
445 bool anOldValue = myBothway;
446 myBothway = !anOldValue;
447 GroupPoints->CheckButton2->setEnabled(!myBothway);
451 //=================================================================================
452 // function : addSubshapeToStudy
453 // purpose : virtual method to add new SubObjects if local selection
454 //=================================================================================
455 void GenerationGUI_RevolDlg::addSubshapesToStudy()
457 QMap<QString, GEOM::GEOM_Object_var> objMap;
459 objMap[GroupPoints->LineEdit2->text()] = myAxis;
461 addSubshapesToFather(objMap);
464 //=================================================================================
465 // function : extractPrefix
466 // purpose : redefined from GEOMBase_Helper class
467 //=================================================================================
468 bool GenerationGUI_RevolDlg::extractPrefix() const
470 return myBaseObjects.length() > 1;