]> SALOME platform Git repositories - modules/geom.git/blob - src/PrimitiveGUI/PrimitiveGUI_TorusDlg.cxx
Salome HOME
c81455344d9e6b4b82b34f9d82b69820505eadb0
[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(), SIGNAL(currentSelectionChanged()),
163           this, SLOT(SelectionIntoArgument()));
164
165   initName( tr( "GEOM_TORUS" ) );
166   ConstructorsClicked(0);
167 }
168
169 //=================================================================================
170 // function : ConstructorsClicked()
171 // purpose  : Radio button management
172 //=================================================================================
173 void PrimitiveGUI_TorusDlg::ConstructorsClicked (int constructorId)
174 {
175   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
176
177   switch (constructorId)
178   {
179   case 0:
180     {
181       globalSelection(); // close local contexts, if any
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   QString aName = GEOMBase::GetName(aSelectedObject);
266   TopoDS_Shape aShape;
267   if (GEOMBase::GetShape(aSelectedObject, aShape, TopAbs_SHAPE) && !aShape.IsNull())
268   {
269     TopAbs_ShapeEnum aNeedType = TopAbs_VERTEX;
270     if (myEditCurrentArgument == GroupPoints->LineEdit2)
271       aNeedType = TopAbs_EDGE;
272
273     LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
274     TColStd_IndexedMapOfInteger aMap;
275     aSelMgr->GetIndexes(firstIObject(), aMap);
276     if (aMap.Extent() == 1) // Local Selection
277     {
278       GEOM::GEOM_IShapesOperations_var aShapesOp =
279         getGeomEngine()->GetIShapesOperations( getStudyId() );
280       int anIndex = aMap(1);
281
282       aSelectedObject = aShapesOp->GetSubShape(aSelectedObject, anIndex);
283       aSelMgr->clearSelected();
284
285       if (aNeedType == TopAbs_EDGE)
286         aName.append(":edge_" + QString::number(anIndex));
287       else
288         aName.append(":vertex_" + QString::number(anIndex));
289     }
290     else // Global Selection
291     {
292       if (aShape.ShapeType() != aNeedType) {
293         aSelectedObject = GEOM::GEOM_Object::_nil();
294         aName = "";
295       }
296     }
297   }
298
299   myEditCurrentArgument->setText(aName);
300
301   if (myEditCurrentArgument == GroupPoints->LineEdit1)
302     myPoint = aSelectedObject;
303   else if (myEditCurrentArgument == GroupPoints->LineEdit2)
304     myDir = aSelectedObject;
305
306   displayPreview();
307 }
308
309 //=================================================================================
310 // function : LineEditReturnPressed()
311 // purpose  :
312 //=================================================================================
313 void PrimitiveGUI_TorusDlg::LineEditReturnPressed()
314 {
315   QLineEdit* send = (QLineEdit*)sender();
316   if (send == GroupPoints->LineEdit1 ||
317       send == GroupPoints->LineEdit2)
318   {
319     myEditCurrentArgument = send;
320     GEOMBase_Skeleton::LineEditReturnPressed();
321   }
322 }
323
324
325 //=================================================================================
326 // function : SetEditCurrentArgument()
327 // purpose  :
328 //=================================================================================
329 void PrimitiveGUI_TorusDlg::SetEditCurrentArgument()
330 {
331   QPushButton* send = (QPushButton*)sender();
332   globalSelection( GEOM_POINT ); // to break previous local selection
333
334   if (send == GroupPoints->PushButton1) {
335     myEditCurrentArgument = GroupPoints->LineEdit1;
336     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
337   }
338   else if (send == GroupPoints->PushButton2) {
339     myEditCurrentArgument = GroupPoints->LineEdit2;
340     GEOM::GEOM_Object_var anObj;
341     localSelection( anObj, TopAbs_EDGE );
342   }
343
344   myEditCurrentArgument->setFocus();
345   SelectionIntoArgument();
346 }
347
348
349 //=================================================================================
350 // function : ActivateThisDialog()
351 // purpose  :
352 //=================================================================================
353 void PrimitiveGUI_TorusDlg::ActivateThisDialog()
354 {
355   GEOMBase_Skeleton::ActivateThisDialog();
356
357   connect(myGeomGUI->getApp()->selectionMgr(),
358           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
359
360   ConstructorsClicked( getConstructorId() );
361 }
362
363
364 //=================================================================================
365 // function : enterEvent()
366 // purpose  :
367 //=================================================================================
368 void PrimitiveGUI_TorusDlg::enterEvent(QEvent* e)
369 {
370   if ( !GroupConstructors->isEnabled() )
371     ActivateThisDialog();
372 }
373
374
375 //=================================================================================
376 // function : ValueChangedInSpinBox
377 // purpose  :
378 //=================================================================================
379 void PrimitiveGUI_TorusDlg::ValueChangedInSpinBox()
380 {
381   displayPreview();
382 }
383
384
385 //=================================================================================
386 // function : createOperation
387 // purpose  :
388 //=================================================================================
389 GEOM::GEOM_IOperations_ptr PrimitiveGUI_TorusDlg::createOperation()
390 {
391   return getGeomEngine()->GetI3DPrimOperations( getStudyId() );
392 }
393
394 //=================================================================================
395 // function : isValid
396 // purpose  :
397 //=================================================================================
398 bool PrimitiveGUI_TorusDlg::isValid( QString& msg )
399 {
400   return getConstructorId() == 0 ? !(myPoint->_is_nil() || myDir->_is_nil()) : true;
401 }
402
403 //=================================================================================
404 // function : execute
405 // purpose  :
406 //=================================================================================
407 bool PrimitiveGUI_TorusDlg::execute( ObjectList& objects )
408 {
409   bool res = false;
410
411   GEOM::GEOM_Object_var anObj;
412
413   switch ( getConstructorId() )
414   {
415   case 0:
416     {
417       if (!CORBA::is_nil( myPoint ) && !CORBA::is_nil( myDir ))
418       {
419         anObj = GEOM::GEOM_I3DPrimOperations::_narrow( getOperation() )->
420           MakeTorusPntVecRR(myPoint, myDir, getRadius1(), getRadius2());
421         res = true;
422       }
423       break;
424     }
425   case 1:
426     {
427       anObj = GEOM::GEOM_I3DPrimOperations::_narrow( getOperation() )->
428         MakeTorusRR(getRadius1(), getRadius2());
429       res = true;
430       break;
431     }
432   }
433
434   if ( !anObj->_is_nil() )
435     objects.push_back( anObj._retn() );
436
437   return res;
438 }
439
440 //=================================================================================
441 // function : getRadius1()
442 // purpose  :
443 //=================================================================================
444 double PrimitiveGUI_TorusDlg::getRadius1() const
445 {
446   int aConstructorId = getConstructorId();
447   if (aConstructorId == 0)
448     return GroupPoints->SpinBox_DX->GetValue();
449   else if (aConstructorId == 1)
450     return GroupDimensions->SpinBox_DX->GetValue();
451   return 0;
452 }
453
454 //=================================================================================
455 // function : getRadius2()
456 // purpose  :
457 //=================================================================================
458 double PrimitiveGUI_TorusDlg::getRadius2() const
459 {
460   int aConstructorId = getConstructorId();
461   if (aConstructorId == 0)
462     return GroupPoints->SpinBox_DY->GetValue();
463   else if (aConstructorId == 1)
464     return GroupDimensions->SpinBox_DY->GetValue();
465   return 0;
466 }