1 // Copyright (C) 2007-2015 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, or (at your option) any later version.
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();
72 GroupPoints = new DlgRef_2Sel1Spin2Check(centralWidget());
73 GroupPoints->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
74 GroupPoints->TextLabel1->setText(tr("GEOM_OBJECTS"));
75 GroupPoints->TextLabel2->setText(tr("GEOM_AXIS"));
76 GroupPoints->TextLabel3->setText(tr("GEOM_ANGLE"));
77 GroupPoints->PushButton1->setIcon(image1);
78 GroupPoints->PushButton2->setIcon(image1);
79 GroupPoints->LineEdit1->setReadOnly(true);
80 GroupPoints->LineEdit2->setReadOnly(true);
81 GroupPoints->CheckButton1->setText(tr("GEOM_BOTHWAY"));
82 GroupPoints->CheckButton2->setText(tr("GEOM_REVERSE"));
84 QVBoxLayout* layout = new QVBoxLayout(centralWidget());
85 layout->setMargin(0); layout->setSpacing(6);
86 layout->addWidget(GroupPoints);
87 /***************************************************************/
89 setHelpFileName("create_revolution_page.html");
95 //=================================================================================
96 // function : ~GenerationGUI_RevolDlg()
97 // purpose : Destroys the object and frees any allocated resources
98 //=================================================================================
99 GenerationGUI_RevolDlg::~GenerationGUI_RevolDlg()
101 // no need to delete child widgets, Qt does it all for us
104 //=================================================================================
107 //=================================================================================
108 void GenerationGUI_RevolDlg::Init()
110 // min, max, step and decimals for spin boxes & initial values
111 double SpecificStep = 5;
112 initSpinBox(GroupPoints->SpinBox_DX, -360.0, 360.0, SpecificStep, "angle_precision" );
113 GroupPoints->SpinBox_DX->setValue(45.0);
116 GroupPoints->LineEdit1->setReadOnly(true);
117 GroupPoints->LineEdit2->setReadOnly(true);
119 GroupPoints->LineEdit1->setText("");
120 GroupPoints->LineEdit2->setText("");
122 myBaseObjects.clear();
125 showOnlyPreviewControl();
127 // signals and slots connections
128 connect(buttonOk(), SIGNAL(clicked()), this, SLOT(ClickOnOk()));
129 connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
131 connect(GroupPoints->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
132 connect(GroupPoints->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
134 connect(GroupPoints->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
135 connect(GroupPoints->CheckButton1, SIGNAL(toggled(bool)), this, SLOT(onBothway()));
136 connect(GroupPoints->CheckButton2, SIGNAL(toggled(bool)), this, SLOT(onReverse()));
138 // san: We don't need this, as the default step value is not used in this dialog box
139 //connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), this, SLOT(SetDoubleSpinBoxStep(double)));
141 initName(tr("GEOM_REVOLUTION"));
144 GroupPoints->PushButton1->click();
145 SelectionIntoArgument();
148 //=================================================================================
149 // function : SetDoubleSpinBoxStep()
150 // purpose : Double spin box management
151 //=================================================================================
152 void GenerationGUI_RevolDlg::SetDoubleSpinBoxStep (double step)
154 GroupPoints->SpinBox_DX->setSingleStep(step);
157 //=================================================================================
158 // function : ClickOnOk()
160 //=================================================================================
161 void GenerationGUI_RevolDlg::ClickOnOk()
163 setIsApplyAndClose( true );
168 //=================================================================================
169 // function : ClickOnApply()
171 //=================================================================================
172 bool GenerationGUI_RevolDlg::ClickOnApply()
178 // activate selection and connect selection manager
179 GroupPoints->PushButton1->click();
183 //=================================================================================
184 // function : SelectionIntoArgument()
185 // purpose : Called when selection is changed or on dialog initialization or activation
186 //=================================================================================
187 void GenerationGUI_RevolDlg::SelectionIntoArgument()
190 myEditCurrentArgument->setText("");
192 if ( myEditCurrentArgument == GroupPoints->LineEdit1 ) {
193 myBaseObjects.clear();
194 QList<GEOM::GeomObjPtr> objects = getSelected( TopAbs_SHAPE, -1 );
195 for ( int i = 0; i < objects.count(); i++ ) {
196 GEOM::shape_type stype = objects[i]->GetMaxShapeType();
197 if ( stype < GEOM::SHELL || stype > GEOM::VERTEX )
199 myBaseObjects << objects[i];
201 if ( !myBaseObjects.isEmpty() ) {
202 QString aName = myBaseObjects.count() > 1 ? QString( "%1_objects").arg( myBaseObjects.count() ) : GEOMBase::GetName( myBaseObjects[0].get() );
203 myEditCurrentArgument->setText( aName );
206 else if (myEditCurrentArgument == GroupPoints->LineEdit2) {
207 myAxis = getSelected( TopAbs_EDGE );
209 QString aName = GEOMBase::GetName( myAxis.get() );
210 myEditCurrentArgument->setText( aName );
211 if ( myBaseObjects.isEmpty() )
212 GroupPoints->PushButton1->click();
218 //=================================================================================
219 // function : SetEditCurrentArgument()
221 //=================================================================================
222 void GenerationGUI_RevolDlg::SetEditCurrentArgument()
224 QPushButton* send = (QPushButton*)sender();
226 disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
227 globalSelection(GEOM_ALLSHAPES);
228 if (send == GroupPoints->PushButton1) {
229 myEditCurrentArgument = GroupPoints->LineEdit1;
230 GroupPoints->PushButton2->setDown(false);
231 GroupPoints->LineEdit2->setEnabled(false);
233 else if (send == GroupPoints->PushButton2) {
234 myEditCurrentArgument = GroupPoints->LineEdit2;
235 GroupPoints->PushButton1->setDown(false);
236 GroupPoints->LineEdit1->setEnabled(false);
237 localSelection(TopAbs_EDGE);
239 connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
240 this, SLOT(SelectionIntoArgument()));
243 myEditCurrentArgument->setEnabled(true);
244 myEditCurrentArgument->setFocus();
245 // after setFocus(), because it will be setDown(false) when loses focus
248 // seems we need it only to avoid preview disappearing, caused by selection mode change
252 //=================================================================================
253 // function : ActivateThisDialog()
255 //=================================================================================
256 void GenerationGUI_RevolDlg::ActivateThisDialog()
258 GEOMBase_Skeleton::ActivateThisDialog();
259 connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
260 this, SLOT( SelectionIntoArgument() ) );
265 //=================================================================================
266 // function : enterEvent()
268 //=================================================================================
269 void GenerationGUI_RevolDlg::enterEvent (QEvent*)
271 if (!mainFrame()->GroupConstructors->isEnabled())
272 ActivateThisDialog();
275 //=================================================================================
276 // function : ValueChangedInSpinBox()
278 //=================================================================================
279 void GenerationGUI_RevolDlg::ValueChangedInSpinBox()
284 //=================================================================================
285 // function : getAngle()
287 //=================================================================================
288 double GenerationGUI_RevolDlg::getAngle() const
290 return GroupPoints->SpinBox_DX->value();
293 //=================================================================================
294 // function : createOperation
296 //=================================================================================
297 GEOM::GEOM_IOperations_ptr GenerationGUI_RevolDlg::createOperation()
299 return getGeomEngine()->GetI3DPrimOperations(getStudyId());
302 //=================================================================================
303 // function : isValid
305 //=================================================================================
306 bool GenerationGUI_RevolDlg::isValid (QString& msg)
308 return GroupPoints->SpinBox_DX->isValid( msg, !IsPreview() ) && !myBaseObjects.isEmpty() && myAxis;
311 //=================================================================================
312 // function : execute
314 //=================================================================================
315 bool GenerationGUI_RevolDlg::execute (ObjectList& objects)
317 GEOM::GEOM_Object_var anObj;
318 GEOM::GEOM_I3DPrimOperations_var anOper = GEOM::GEOM_I3DPrimOperations::_narrow(getOperation());
320 for (int i = 0; i < myBaseObjects.count(); i++) {
321 if (!GroupPoints->CheckButton1->isChecked())
322 anObj = anOper->MakeRevolutionAxisAngle(myBaseObjects[i].get(), myAxis.get(),
323 getAngle() * M_PI / 180.);
325 anObj = anOper->MakeRevolutionAxisAngle2Ways(myBaseObjects[i].get(), myAxis.get(),
326 getAngle() * M_PI / 180.);
328 if (!anObj->_is_nil()) {
330 QStringList aParameters;
331 aParameters << GroupPoints->SpinBox_DX->text();
332 anObj->SetParameters(aParameters.join(":").toLatin1().constData());
334 objects.push_back(anObj._retn());
341 //=================================================================================
342 // function : onReverse()
344 //=================================================================================
345 void GenerationGUI_RevolDlg::onReverse()
347 double anOldValue = GroupPoints->SpinBox_DX->value();
348 GroupPoints->SpinBox_DX->setValue(-anOldValue);
351 //=================================================================================
352 // function : onBothway()
354 //=================================================================================
355 void GenerationGUI_RevolDlg::onBothway()
357 GroupPoints->CheckButton2->setEnabled(!GroupPoints->CheckButton1->isChecked());
361 //=================================================================================
362 // function : addSubshapeToStudy
363 // purpose : virtual method to add new SubObjects if local selection
364 //=================================================================================
365 void GenerationGUI_RevolDlg::addSubshapesToStudy()
367 GEOMBase::PublishSubObject( myAxis.get() );
370 //=================================================================================
371 // function : extractPrefix
372 // purpose : redefined from GEOMBase_Helper class
373 //=================================================================================
374 bool GenerationGUI_RevolDlg::extractPrefix() const
376 return myBaseObjects.count() > 1;
379 //=================================================================================
380 // function : getSourceObjects
381 // purpose : virtual method to get source objects
382 //=================================================================================
383 QList<GEOM::GeomObjPtr> GenerationGUI_RevolDlg::getSourceObjects()
385 QList<GEOM::GeomObjPtr> res(myBaseObjects);