1 // Copyright (C) 2007-2021 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 #include "AdvancedGUI_DividedCylinderDlg.h"
26 #include <GeometryGUI.h>
29 #include <SUIT_Session.h>
30 #include <SUIT_ResourceMgr.h>
31 #include <SalomeApp_Application.h>
32 #include <LightApp_SelectionMgr.h>
35 #include <TopoDS_Shape.hxx>
38 #include <TopTools_IndexedMapOfShape.hxx>
40 #include <GEOMImpl_Types.hxx>
42 //=================================================================================
44 //=================================================================================
45 AdvancedGUI_DividedCylinderDlg::AdvancedGUI_DividedCylinderDlg (GeometryGUI* theGeometryGUI, QWidget* parent)
46 : GEOMBase_Skeleton(theGeometryGUI, parent, false)
48 QPixmap imageOp (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_DLG_DIVIDEDCYLINDER_R_H")));
49 QPixmap imageSel (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_SELECT")));
51 setWindowTitle(tr("GEOM_DIVIDEDCYLINDER_TITLE"));
53 /***************************************************************/
54 mainFrame()->GroupConstructors->setTitle(tr("GEOM_DIVIDEDCYLINDER"));
55 mainFrame()->RadioButton1->setIcon(imageOp);
56 mainFrame()->RadioButton2->setAttribute(Qt::WA_DeleteOnClose);
57 mainFrame()->RadioButton2->close();
58 mainFrame()->RadioButton3->setAttribute(Qt::WA_DeleteOnClose);
59 mainFrame()->RadioButton3->close();
61 GroupParams = new DlgRef_2Spin(centralWidget());
62 GroupParams->GroupBox1->setTitle(tr("GEOM_BOX_OBJ"));
63 GroupParams->TextLabel1->setText(tr("GEOM_RADIUS"));
64 GroupParams->TextLabel2->setText(tr("GEOM_HEIGHT"));
66 GroupPattern = new DlgRef_3Radio(centralWidget());
67 GroupPattern->GroupBox1->setTitle(tr("GEOM_PATTERN"));
68 GroupPattern->RadioButton1->setText(tr("GEOM_SQUARE"));
69 GroupPattern->RadioButton2->setText(tr("GEOM_HEXAGON"));
70 GroupPattern->RadioButton3->setAttribute(Qt::WA_DeleteOnClose);
71 GroupPattern->RadioButton3->close();
73 QVBoxLayout* layout = new QVBoxLayout(centralWidget());
74 layout->setMargin(0); layout->setSpacing(6);
75 layout->addWidget(GroupParams);
76 layout->addWidget(GroupPattern);
77 /***************************************************************/
79 setHelpFileName("create_dividedcylinder_page.html");
84 //=================================================================================
86 //=================================================================================
87 AdvancedGUI_DividedCylinderDlg::~AdvancedGUI_DividedCylinderDlg()
89 // no need to delete child widgets, Qt does it all for us
92 //=================================================================================
95 //=================================================================================
96 void AdvancedGUI_DividedCylinderDlg::Init()
98 // Get setting of step value from file configuration
99 SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
100 double step = resMgr->doubleValue("Geometry", "SettingsGeomStep", 100);
102 // min, max, step and decimals for spin boxes & initial values
103 initSpinBox(GroupParams->SpinBox_DX, 0.00001, COORD_MAX, step, "length_precision" );
104 initSpinBox(GroupParams->SpinBox_DY, 0.00001, COORD_MAX, step, "length_precision" );
107 double aRadius = 100;
108 double aHeight = 300;
109 GroupParams->SpinBox_DX->setValue(aRadius);
110 GroupParams->SpinBox_DY->setValue(aHeight);
112 GroupPattern->RadioButton1->setChecked(true);
113 myPattern = GEOM::SQUARE;
115 // Signal/slot connections
116 connect(buttonOk(), SIGNAL(clicked()), this, SLOT(ClickOnOk()));
117 connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
118 connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)),
119 this, SLOT(SetDoubleSpinBoxStep(double)));
121 connect(GroupParams->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
122 connect(GroupParams->SpinBox_DY, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
124 connect(GroupPattern->RadioButton1, SIGNAL(clicked()), this, SLOT(RadioButtonClicked()));
125 connect(GroupPattern->RadioButton2, SIGNAL(clicked()), this, SLOT(RadioButtonClicked()));
127 initName(tr("GEOM_DIVIDEDCYLINDER"));
129 resize(minimumSizeHint());
130 displayPreview(true);
133 //=================================================================================
134 // function : SetDoubleSpinBoxStep()
135 // purpose : Double spin box management
136 //=================================================================================
137 void AdvancedGUI_DividedCylinderDlg::SetDoubleSpinBoxStep (double /*step*/)
139 //@@ set double spin box step for all spin boxes here @@//
142 //=================================================================================
143 // function : RadioButtonClicked()
144 // purpose : Radio button management
145 //=================================================================================
146 void AdvancedGUI_DividedCylinderDlg::RadioButtonClicked()
148 QRadioButton* send = (QRadioButton*)sender();
151 if (send == GroupPattern->RadioButton1)
152 myPattern = GEOM::SQUARE;
153 else if (send == GroupPattern->RadioButton2)
154 myPattern = GEOM::HEXAGON;
156 displayPreview(true);
159 //=================================================================================
160 // function : ClickOnOk()
162 //=================================================================================
163 void AdvancedGUI_DividedCylinderDlg::ClickOnOk()
169 //=================================================================================
170 // function : ClickOnApply()
172 //=================================================================================
173 bool AdvancedGUI_DividedCylinderDlg::ClickOnApply()
183 //=================================================================================
184 // function : ActivateThisDialog()
186 //=================================================================================
187 void AdvancedGUI_DividedCylinderDlg::ActivateThisDialog()
189 GEOMBase_Skeleton::ActivateThisDialog();
190 displayPreview(true);
193 //=================================================================================
194 // function : enterEvent [REDEFINED]
196 //=================================================================================
197 void AdvancedGUI_DividedCylinderDlg::enterEvent (QEvent*)
199 if (!mainFrame()->GroupConstructors->isEnabled())
200 ActivateThisDialog();
203 //=================================================================================
204 // function : ValueChangedInSpinBox()
206 //=================================================================================
207 void AdvancedGUI_DividedCylinderDlg::ValueChangedInSpinBox()
209 //@@ connect custom spin boxes or other widget to this slot in the Init() method for automatic preview update @@//
210 displayPreview(true);
213 //=================================================================================
214 // function : createOperation
216 //=================================================================================
217 GEOM::GEOM_IOperations_ptr AdvancedGUI_DividedCylinderDlg::createOperation()
219 return getGeomEngine()->GetPluginOperations("AdvancedEngine");
222 //=================================================================================
223 // function : isValid
225 //=================================================================================
226 bool AdvancedGUI_DividedCylinderDlg::isValid (QString& /*msg*/)
230 //@@ add custom validation actions here @@//
235 //=================================================================================
236 // function : execute
238 //=================================================================================
239 bool AdvancedGUI_DividedCylinderDlg::execute (ObjectList& objects)
243 GEOM::GEOM_Object_var anObj;
245 GEOM::IAdvancedOperations_var anOper = GEOM::IAdvancedOperations::_narrow(getOperation());
247 //@@ retrieve input values from the widgets here @@//
248 CORBA::Double theR = GroupParams->SpinBox_DX->value();
249 CORBA::Double theH = GroupParams->SpinBox_DY->value();
251 // call engine function
252 anObj = anOper->MakeDividedCylinder(theR, theH, myPattern);
253 res = !anObj->_is_nil();
254 if (res && !IsPreview())
256 QStringList aParameters;
257 aParameters << GroupParams->SpinBox_DX->text(); // R parameter
258 aParameters << GroupParams->SpinBox_DY->text(); // H parameter
259 if ( aParameters.count() > 0 ) anObj->SetParameters(aParameters.join(":").toUtf8().constData());
263 objects.push_back(anObj._retn());