Salome HOME
Added help page and revert some changes for a better ergonomy
[modules/geom.git] / src / OperationGUI / OperationGUI_ExtrudedFeatureDlg.cxx
1 // Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  GEOM GEOMGUI : GUI for Geometry component
24 //  File   : OperationGUI_ExtrudedFeatureDlg.cxx
25 //  Author : Renaud NEDELEC, Open CASCADE S.A.S.
26
27 #include "OperationGUI.h"
28 #include "OperationGUI_ExtrudedFeatureDlg.h"
29
30 #include <SUIT_Session.h>
31 #include <SUIT_ResourceMgr.h>
32 #include <SalomeApp_Application.h>
33 #include <LightApp_SelectionMgr.h>
34
35 #include <GeometryGUI.h>
36 #include <GEOMBase.h>
37
38 #include <DlgRef.h>
39 #include <GEOM_Object.hxx>
40
41 // OCCT Includes
42 // #include <TopoDS_Shape.hxx>
43 // #include <TopoDS_Edge.hxx>
44 // #include <TopoDS.hxx>
45 // #include <TopExp.hxx>
46 // #include <TColStd_IndexedMapOfInteger.hxx>
47 // #include <TopTools_IndexedMapOfShape.hxx>
48 // #include <Precision.hxx>
49 #include <TColStd_HSequenceOfTransient.hxx>
50
51 #include <GEOMImpl_Types.hxx>
52
53 //=================================================================================
54 // class    : OperationGUI_ExtrudedFeatureDlg()
55 // purpose  : Constructs a OperationGUI_ExtrudedCutDlg which is a child of 'parent',
56 //            with the name 'name' and widget flags set to 'f'.
57 //            The dialog will by default be modeless, unless you set 'modal' to
58 //            TRUE to construct a modal dialog.
59 //=================================================================================
60
61 OperationGUI_ExtrudedFeatureDlg::OperationGUI_ExtrudedFeatureDlg(const int theOperation,
62                                                                  GeometryGUI* theGeometryGUI,
63                                                                  QWidget* parent,bool modal, 
64                                                                  Qt::WindowFlags fl)
65   : GEOMBase_Skeleton(theGeometryGUI, parent, modal, fl),
66     myOperation(theOperation)
67 {
68   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
69   QPixmap image0;
70   QPixmap image1 (aResMgr->loadPixmap("GEOM", tr("ICON_SELECT")));
71   QPixmap image2 (aResMgr->loadPixmap("GEOM", tr("ICO_DRAFT")));
72   QString aTitle;
73   switch (myOperation) 
74   {
75     case OperationGUI::BOSS:
76       image0 = QPixmap(aResMgr->loadPixmap("GEOM", tr("ICO_EXTRUDED_BOSS")));
77       aTitle = tr("GEOM_EXTRUDED_BOSS");
78       setHelpFileName("extruded_boss_operation_page.html");
79       break;
80     case OperationGUI::CUT:
81       image0 = QPixmap( aResMgr->loadPixmap("GEOM", tr("ICO_EXTRUDED_CUT")));
82       aTitle = tr("GEOM_EXTRUDED_CUT");
83       setHelpFileName("extruded_cut_operation_page.html");
84       break;
85   }
86     
87   setWindowTitle(aTitle);
88   mainFrame()->GroupConstructors->setTitle(aTitle);
89   mainFrame()->RadioButton1->setIcon(image0);
90   mainFrame()->RadioButton2->setAttribute(Qt::WA_DeleteOnClose);
91   mainFrame()->RadioButton2->close();
92   mainFrame()->RadioButton3->setAttribute(Qt::WA_DeleteOnClose);
93   mainFrame()->RadioButton3->close();
94   
95   mainFrame()->RadioButton1->setChecked(true);
96   
97   myGroup = new DlgRef_2Sel2Spin1Push(centralWidget());
98   myGroup->PushButton1->setIcon(image1);
99   myGroup->PushButton2->setIcon(image1);
100   myGroup->PushButton3->setIcon(image2);
101   myGroup->LineEdit1->setReadOnly(true);
102   myGroup->LineEdit2->setReadOnly(true);
103   myGroup->TextLabel1->setText(tr("GEOM_INIT_SHAPE"));
104   myGroup->TextLabel2->setText(tr("GEOM_SKETCH"));
105   myGroup->TextLabel3->setText(tr("GEOM_HEIGHT"));
106  
107   
108   QVBoxLayout* layout = new QVBoxLayout(centralWidget());
109   layout->setMargin(0); 
110   layout->setSpacing(6);
111   layout->addWidget(myGroup);
112
113   Init();
114    
115 }
116
117 //=================================================================================
118 // function : ~OperationGUI_ExtrudedFeatureDlg()
119 // purpose  : Destroys the object and frees any allocated resources
120 //=================================================================================
121 OperationGUI_ExtrudedFeatureDlg::~OperationGUI_ExtrudedFeatureDlg()
122 {
123 }
124
125 //=================================================================================
126 // function : Init()
127 // purpose  :
128 //=================================================================================
129 void OperationGUI_ExtrudedFeatureDlg::Init()
130 {
131   // init variables
132   myEditCurrentArgument = myGroup->LineEdit1;
133   
134   // Get setting of step value from file configuration
135   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
136   double step = resMgr->doubleValue("Geometry", "SettingsGeomStep", 100);
137   
138   initSpinBox(myGroup->SpinBox_DX, COORD_MIN, COORD_MAX, step, "length_precision" );
139   initSpinBox(myGroup->SpinBox_DY, COORD_MIN, COORD_MAX, step, "length_precision" );
140
141   myGroup->LineEdit1->setText("");
142   myGroup->LineEdit2->setText("");
143   myGroup->SpinBox_DX->setValue(10.0);
144   myGroup->SpinBox_DY->setValue(10.0);
145   myGroup->SpinBox_DY->setEnabled(false);
146   myObject1.nullify();
147   myObject2.nullify();
148   
149   // signals and slots connections
150   connect(buttonOk(),    SIGNAL(clicked()), this, SLOT(ClickOnOk()));
151   connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
152
153   connect(myGroup->PushButton1, SIGNAL(clicked()),     this, SLOT(SetEditCurrentArgument()));
154   connect(myGroup->PushButton2, SIGNAL(clicked()),     this, SLOT(SetEditCurrentArgument()));
155   connect(myGroup->PushButton3, SIGNAL(clicked(bool)), this, SLOT(ButtonClicked(bool)));
156   connect(myGroup->SpinBox_DX,  SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
157   connect(myGroup->SpinBox_DY,  SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
158   
159
160   connect(((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(),
161            SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
162   
163   initName(mainFrame()->GroupConstructors->title());
164   
165   mainFrame()->RadioButton1->setFocus();
166   
167   globalSelection(GEOM_ALLSHAPES); //TODO à changer
168   
169   myGroup->PushButton1->click();
170   SelectionIntoArgument();
171   
172   resize(minimumSizeHint());
173 }
174
175 //=================================================================================
176 // function : ClickOnOk()
177 // purpose  :
178 //=================================================================================
179 void OperationGUI_ExtrudedFeatureDlg::ClickOnOk()
180 {
181   setIsApplyAndClose( true );
182   if (ClickOnApply())
183     ClickOnCancel();
184 }
185
186 //=================================================================================
187 // function : ClickOnApply()
188 // purpose  :
189 //=================================================================================
190 bool OperationGUI_ExtrudedFeatureDlg::ClickOnApply()
191 {
192   if (!onAccept())
193     return false;
194
195   initName();
196   // activate selection and connect selection manager
197   myGroup->PushButton1->click();
198   return true;
199 }
200
201 //=================================================================================
202 // function : SetEditCurrentArgument()
203 // purpose  :
204 //=================================================================================
205 void OperationGUI_ExtrudedFeatureDlg::SetEditCurrentArgument()
206 {
207   QPushButton* send = (QPushButton*)sender();
208   
209   if (send == myGroup->PushButton1) {
210     myEditCurrentArgument = myGroup->LineEdit1;
211
212     myGroup->PushButton2->setDown(false);
213     myGroup->LineEdit2->setEnabled(false);
214    
215 //     globalSelection();   // close local selection
216   }
217   else if (send == myGroup->PushButton2) {
218     myEditCurrentArgument = myGroup->LineEdit2;
219
220     myGroup->PushButton1->setDown(false);
221     myGroup->LineEdit1->setEnabled(false);
222     
223 //     globalSelection(); // close local selection to clear it
224     
225 // //     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_EDGE );
226 //     if (myObject1)
227 //     {
228 //       localSelection( myObject1.get(), TopAbs_FACE );
229 // //       localSelection( myObject1.get(), TopAbs_EDGE );
230 //     }
231 //    /* localSelection( GEOM::GEOM_Object::_nil(), TopAbs_EDGE ); */ 
232   }
233   
234   // enable line edit
235   myEditCurrentArgument->setEnabled(true);
236   myEditCurrentArgument->setFocus();
237   // after setFocus(), because it will be setDown(false) when loses focus
238   send->setDown(true);
239 }
240
241
242 //=================================================================================
243 // function : SelectionIntoArgument()
244 // purpose  : Called when selection is changed or on dialog initialization or activation
245 //=================================================================================
246 void OperationGUI_ExtrudedFeatureDlg::SelectionIntoArgument()
247 {
248   myEditCurrentArgument->setText("");
249
250   QList<TopAbs_ShapeEnum> types;
251   types<<TopAbs_SHAPE;
252   
253   if (myEditCurrentArgument == myGroup->LineEdit1)
254   {
255     types.clear();
256     types<<TopAbs_COMPOUND<<TopAbs_SOLID;
257   }
258   if (myEditCurrentArgument == myGroup->LineEdit2)
259   {
260     types.clear();
261     types << TopAbs_EDGE << TopAbs_WIRE << TopAbs_FACE;
262   }
263
264   GEOM::GeomObjPtr aSelectedObject = getSelected( types );
265   TopoDS_Shape aShape;
266   if ( aSelectedObject && GEOMBase::GetShape( aSelectedObject.get(), aShape ) && !aShape.IsNull() ) {
267     QString aName = GEOMBase::GetName( aSelectedObject.get() );
268     myEditCurrentArgument->setText( aName );
269
270     // clear selection
271     disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
272     myGeomGUI->getApp()->selectionMgr()->clearSelected();
273     connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
274             this, SLOT(SelectionIntoArgument()));
275
276     if (myEditCurrentArgument == myGroup->LineEdit1) {
277       myObject1 = aSelectedObject;
278       if (!myObject2)
279         myGroup->PushButton2->click();
280     }
281     else if (myEditCurrentArgument == myGroup->LineEdit2) {
282       myObject2 = aSelectedObject;
283       if (!myObject1)
284         myGroup->PushButton1->click();
285     }
286     
287     displayPreview(true);
288   }
289   else {
290     if      (myEditCurrentArgument == myGroup->LineEdit1) myObject1.nullify();
291     else if (myEditCurrentArgument == myGroup->LineEdit2) myObject2.nullify();
292   }
293 }
294
295 //=================================================================================
296 // function : ActivateThisDialog()
297 // purpose  :
298 //=================================================================================
299 void OperationGUI_ExtrudedFeatureDlg::ActivateThisDialog()
300 {
301   GEOMBase_Skeleton::ActivateThisDialog();
302
303   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
304            this, SLOT( SelectionIntoArgument() ) );
305   processPreview();
306 }
307
308
309 //=================================================================================
310 // function : enterEvent()
311 // purpose  : when mouse enter onto the QWidget
312 //=================================================================================
313 void OperationGUI_ExtrudedFeatureDlg::enterEvent (QEvent*)
314 {
315   if (!mainFrame()->GroupConstructors->isEnabled())
316     ActivateThisDialog();
317 }
318
319 //=================================================================================
320 // function : ValueChangedInSpinBox()
321 // purpose  :
322 //=================================================================================
323 void OperationGUI_ExtrudedFeatureDlg::ValueChangedInSpinBox()
324 {
325   displayPreview(true);
326 }
327
328 //=================================================================================
329 // function : ButtonClicked(bool checked)
330 // purpose  :
331 //=================================================================================
332 void OperationGUI_ExtrudedFeatureDlg::ButtonClicked(bool checked)
333 {
334   myGroup->SpinBox_DY->setEnabled(checked);
335   displayPreview(true);
336 }
337
338 //=================================================================================
339 // function : createOperation
340 // purpose  :
341 //=================================================================================
342 GEOM::GEOM_IOperations_ptr OperationGUI_ExtrudedFeatureDlg::createOperation()
343 {
344   return getGeomEngine()->GetI3DPrimOperations(getStudyId());
345 }
346
347 //=================================================================================
348 // function : isValid
349 // purpose  :
350 //=================================================================================
351 bool OperationGUI_ExtrudedFeatureDlg::isValid (QString&)
352 {
353   return myObject1 && myObject2; 
354 }
355
356 //=================================================================================
357 // function : execute
358 // purpose  :
359 //=================================================================================
360 bool OperationGUI_ExtrudedFeatureDlg::execute (ObjectList& objects)
361 {
362   GEOM::GEOM_I3DPrimOperations_var anOper = GEOM::GEOM_I3DPrimOperations::_narrow(getOperation());
363   
364   double angle=0.0;
365   if (myGroup->PushButton3->isChecked())
366     angle=myGroup->SpinBox_DY->value();
367     
368   bool isProtrusion = (myOperation == OperationGUI::BOSS);  
369   
370   // Hide the initial shape in order to see the modifications on the preview
371   erase(myObject1.get(),false);   
372   
373   GEOM::GEOM_Object_var anObj = anOper->MakeDraftPrism(myObject1.get(), myObject2.get(), 
374                                                        myGroup->SpinBox_DX->value(),
375                                                        angle,
376                                                        isProtrusion);
377   if (!anObj->_is_nil())
378     objects.push_back(anObj._retn());
379
380   return true;
381 }
382
383 // //=================================================================================
384 // // function : addSubshapeToStudy
385 // // purpose  : virtual method to add new SubObjects if local selection
386 // //=================================================================================
387 // void OperationGUI_ExtrudedFeatureDlg::addSubshapesToStudy()
388 // {
389 //   GEOMBase::PublishSubObject( myObject2.get() );
390 // }
391
392
393
394
395   
396
397