Salome HOME
NPAL18111: Bad shape build by partition.
[modules/geom.git] / src / PrimitiveGUI / PrimitiveGUI_TorusDlg.cxx
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  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 //
24 //  File   : PrimitiveGUI_TorusDlg.cxx
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #include "PrimitiveGUI_TorusDlg.h"
30
31 #include "SUIT_Desktop.h"
32 #include "SUIT_Session.h"
33 #include "SalomeApp_Application.h"
34 #include "LightApp_SelectionMgr.h"
35
36 #include <TopoDS_Shape.hxx>
37 #include <TopoDS_Edge.hxx>
38 #include <TopoDS.hxx>
39 #include <TopExp.hxx>
40 #include <TColStd_IndexedMapOfInteger.hxx>
41 #include <TopTools_IndexedMapOfShape.hxx>
42
43 #include <qlabel.h>
44
45 #include "GEOMImpl_Types.hxx"
46
47 #include "utilities.h"
48
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)
60 {
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")));
65
66   setCaption(tr("GEOM_TORUS_TITLE"));
67
68   /***************************************************************/
69   GroupConstructors->setTitle(tr("GEOM_TORUS"));
70   RadioButton1->setPixmap(image0);
71   RadioButton2->setPixmap(image1);
72   RadioButton3->close(TRUE);
73
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);
82
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"));
87
88   Layout1->addWidget(GroupPoints, 2, 0);
89   Layout1->addWidget(GroupDimensions, 2, 0);
90   /***************************************************************/
91
92   setHelpFileName("turus.htm");
93
94   Init();
95 }
96
97
98 //=================================================================================
99 // function : ~PrimitiveGUI_TorusDlg()
100 // purpose  : Destroys the object and frees any allocated resources
101 //=================================================================================
102 PrimitiveGUI_TorusDlg::~PrimitiveGUI_TorusDlg()
103 {
104     // no need to delete child widgets, Qt does it all for us
105 }
106
107
108 //=================================================================================
109 // function : Init()
110 // purpose  :
111 //=================================================================================
112 void PrimitiveGUI_TorusDlg::Init()
113 {
114   /* init variables */
115   myEditCurrentArgument = GroupPoints->LineEdit1;
116   GroupPoints->LineEdit1->setReadOnly( true );
117   GroupPoints->LineEdit2->setReadOnly( true );
118
119   myPoint = myDir = GEOM::GEOM_Object::_nil();
120
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);
124
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);
130
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);
135
136   /* signals and slots connections */
137   connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
138   connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
139
140   connect(GroupConstructors, SIGNAL(clicked(int)), this, SLOT(ConstructorsClicked(int)));
141
142   connect(GroupPoints->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
143   connect(GroupPoints->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
144
145   connect(GroupPoints->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
146   connect(GroupPoints->LineEdit2, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
147
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()));
152
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)));
161
162   connect(myGeomGUI->getApp()->selectionMgr(),
163           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
164
165   initName( tr( "GEOM_TORUS" ) );
166   ConstructorsClicked(0);
167 }
168
169
170 //=================================================================================
171 // function : ConstructorsClicked()
172 // purpose  : Radio button management
173 //=================================================================================
174 void PrimitiveGUI_TorusDlg::ConstructorsClicked(int constructorId)
175 {
176   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
177
178   switch (constructorId)
179   {
180   case 0:
181     {
182       localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
183
184       GroupDimensions->hide();
185       resize(0, 0);
186       GroupPoints->show();
187
188       myEditCurrentArgument = GroupPoints->LineEdit1;
189       GroupPoints->LineEdit1->setText(tr(""));
190       GroupPoints->LineEdit2->setText(tr(""));
191       myPoint = myDir = GEOM::GEOM_Object::_nil();
192
193       connect(myGeomGUI->getApp()->selectionMgr(),
194               SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
195       SelectionIntoArgument();
196
197       break;
198     }
199   case 1:
200     {
201       GroupPoints->hide();
202       resize(0, 0);
203       GroupDimensions->show();
204
205       break;
206     }
207   }
208
209   displayPreview();
210 }
211
212
213 //=================================================================================
214 // function : ClickOnOk()
215 // purpose  :
216 //=================================================================================
217 void PrimitiveGUI_TorusDlg::ClickOnOk()
218 {
219   if ( ClickOnApply() )
220     ClickOnCancel();
221 }
222
223
224 //=================================================================================
225 // function : ClickOnApply()
226 // purpose  :
227 //=================================================================================
228 bool PrimitiveGUI_TorusDlg::ClickOnApply()
229 {
230   if ( !onAccept() )
231     return false;
232
233   initName();
234   return true;
235 }
236
237
238 //=================================================================================
239 // function : SelectionIntoArgument()
240 // purpose  : Called when selection as changed or other case
241 //=================================================================================
242 void PrimitiveGUI_TorusDlg::SelectionIntoArgument()
243 {
244   if ( getConstructorId() != 0 )
245     return;
246
247   myEditCurrentArgument->setText("");
248
249   if (IObjectCount() != 1)
250   {
251     if (myEditCurrentArgument == GroupPoints->LineEdit1)
252       myPoint = GEOM::GEOM_Object::_nil();
253     else if (myEditCurrentArgument == GroupPoints->LineEdit2)
254       myDir = GEOM::GEOM_Object::_nil();
255     return;
256   }
257
258   /* nbSel == 1 */
259   Standard_Boolean testResult = Standard_False;
260   GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject( firstIObject(), testResult );
261
262   if (!testResult || CORBA::is_nil( aSelectedObject ))
263     return;
264
265   myEditCurrentArgument->setText( GEOMBase::GetName( aSelectedObject ) );
266   TopoDS_Shape aShape;
267   if ( GEOMBase::GetShape( aSelectedObject, aShape, TopAbs_SHAPE ) && !aShape.IsNull() )
268     {
269       LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
270       TColStd_IndexedMapOfInteger aMap;
271       aSelMgr->GetIndexes( firstIObject(), aMap );
272       if ( aMap.Extent() == 1 )
273         {
274           GEOM::GEOM_IShapesOperations_var aShapesOp =
275             getGeomEngine()->GetIShapesOperations( getStudyId() );
276           int anIndex = aMap( 1 );
277           TopTools_IndexedMapOfShape aShapes;
278           TopExp::MapShapes( aShape, aShapes );
279           aShape = aShapes.FindKey( anIndex );
280           aSelectedObject = aShapesOp->GetSubShape(aSelectedObject, anIndex);
281           aSelMgr->clearSelected();
282         }
283     }
284   if (myEditCurrentArgument == GroupPoints->LineEdit1)
285     myPoint = aSelectedObject;
286   else if (myEditCurrentArgument == GroupPoints->LineEdit2)
287     myDir = aSelectedObject;
288
289   displayPreview();
290 }
291
292
293 //=================================================================================
294 // function : LineEditReturnPressed()
295 // purpose  :
296 //=================================================================================
297 void PrimitiveGUI_TorusDlg::LineEditReturnPressed()
298 {
299   QLineEdit* send = (QLineEdit*)sender();
300   if (send == GroupPoints->LineEdit1 ||
301       send == GroupPoints->LineEdit2)
302   {
303     myEditCurrentArgument = send;
304     GEOMBase_Skeleton::LineEditReturnPressed();
305   }
306 }
307
308
309 //=================================================================================
310 // function : SetEditCurrentArgument()
311 // purpose  :
312 //=================================================================================
313 void PrimitiveGUI_TorusDlg::SetEditCurrentArgument()
314 {
315   QPushButton* send = (QPushButton*)sender();
316
317   if (send == GroupPoints->PushButton1) {
318     myEditCurrentArgument = GroupPoints->LineEdit1;
319     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
320   }
321   else if (send == GroupPoints->PushButton2) {
322     myEditCurrentArgument = GroupPoints->LineEdit2;
323     GEOM::GEOM_Object_var anObj;
324     localSelection( anObj, TopAbs_EDGE );
325   }
326
327   myEditCurrentArgument->setFocus();
328   SelectionIntoArgument();
329 }
330
331
332 //=================================================================================
333 // function : ActivateThisDialog()
334 // purpose  :
335 //=================================================================================
336 void PrimitiveGUI_TorusDlg::ActivateThisDialog()
337 {
338   GEOMBase_Skeleton::ActivateThisDialog();
339
340   connect(myGeomGUI->getApp()->selectionMgr(),
341           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
342
343   ConstructorsClicked( getConstructorId() );
344 }
345
346
347 //=================================================================================
348 // function : enterEvent()
349 // purpose  :
350 //=================================================================================
351 void PrimitiveGUI_TorusDlg::enterEvent(QEvent* e)
352 {
353   if ( !GroupConstructors->isEnabled() )
354     ActivateThisDialog();
355 }
356
357
358 //=================================================================================
359 // function : ValueChangedInSpinBox
360 // purpose  :
361 //=================================================================================
362 void PrimitiveGUI_TorusDlg::ValueChangedInSpinBox()
363 {
364   displayPreview();
365 }
366
367
368 //=================================================================================
369 // function : createOperation
370 // purpose  :
371 //=================================================================================
372 GEOM::GEOM_IOperations_ptr PrimitiveGUI_TorusDlg::createOperation()
373 {
374   return getGeomEngine()->GetI3DPrimOperations( getStudyId() );
375 }
376
377
378 //=================================================================================
379 // function : isValid
380 // purpose  :
381 //=================================================================================
382 bool PrimitiveGUI_TorusDlg::isValid( QString& msg )
383 {
384   return getConstructorId() == 0 ? !(myPoint->_is_nil() || myDir->_is_nil()) : true;
385 }
386
387
388 //=================================================================================
389 // function : execute
390 // purpose  :
391 //=================================================================================
392 bool PrimitiveGUI_TorusDlg::execute( ObjectList& objects )
393 {
394   bool res = false;
395
396   GEOM::GEOM_Object_var anObj;
397
398   switch ( getConstructorId() )
399   {
400   case 0:
401     {
402       if (!CORBA::is_nil( myPoint ) && !CORBA::is_nil( myDir ))
403       {
404         anObj = GEOM::GEOM_I3DPrimOperations::_narrow( getOperation() )->
405           MakeTorusPntVecRR(myPoint, myDir, getRadius1(), getRadius2());
406         res = true;
407       }
408       break;
409     }
410   case 1:
411     {
412       anObj = GEOM::GEOM_I3DPrimOperations::_narrow( getOperation() )->
413         MakeTorusRR(getRadius1(), getRadius2());
414       res = true;
415       break;
416     }
417   }
418
419   if ( !anObj->_is_nil() )
420     objects.push_back( anObj._retn() );
421
422   return res;
423 }
424
425
426 //=================================================================================
427 // function : getRadius1()
428 // purpose  :
429 //=================================================================================
430 double PrimitiveGUI_TorusDlg::getRadius1() const
431 {
432   int aConstructorId = getConstructorId();
433   if (aConstructorId == 0)
434     return GroupPoints->SpinBox_DX->GetValue();
435   else if (aConstructorId == 1)
436     return GroupDimensions->SpinBox_DX->GetValue();
437   return 0;
438 }
439
440
441 //=================================================================================
442 // function : getRadius2()
443 // purpose  :
444 //=================================================================================
445 double PrimitiveGUI_TorusDlg::getRadius2() const
446 {
447   int aConstructorId = getConstructorId();
448   if (aConstructorId == 0)
449     return GroupPoints->SpinBox_DY->GetValue();
450   else if (aConstructorId == 1)
451     return GroupDimensions->SpinBox_DY->GetValue();
452   return 0;
453 }