Salome HOME
Merge from BR_WIN_INDUS_514 04/10/2010
[modules/geom.git] / src / PrimitiveGUI / PrimitiveGUI_SphereDlg.cxx
1 //  Copyright (C) 2007-2010  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   : PrimitiveGUI_SphereDlg.cxx
25 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
26 //
27 #include "PrimitiveGUI_SphereDlg.h"
28
29 #include <DlgRef.h>
30 #include <GeometryGUI.h>
31 #include <GEOMBase.h>
32
33 #include <SUIT_ResourceMgr.h>
34 #include <SUIT_Session.h>
35 #include <SalomeApp_Application.h>
36 #include <LightApp_SelectionMgr.h>
37
38 #include <TopoDS_Shape.hxx>
39 #include <TopoDS.hxx>
40 #include <TopExp.hxx>
41 #include <TColStd_IndexedMapOfInteger.hxx>
42 #include <TopTools_IndexedMapOfShape.hxx>
43
44 #include <GEOMImpl_Types.hxx>
45
46 //=================================================================================
47 // class    : PrimitiveGUI_SphereDlg()
48 // purpose  : Constructs a PrimitiveGUI_SphereDlg which is a child of 'parent', with the 
49 //            name 'name' and widget flags set to 'f'.
50 //            The dialog will by default be modeless, unless you set 'modal' to
51 //            TRUE to construct a modal dialog.
52 //=================================================================================
53 PrimitiveGUI_SphereDlg::PrimitiveGUI_SphereDlg( GeometryGUI* theGeometryGUI, QWidget* parent,
54                                                 bool modal, Qt::WindowFlags fl )
55   :GEOMBase_Skeleton(theGeometryGUI, parent, modal, fl )
56 {
57   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_SPHERE_P" ) ) );
58   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_SPHERE_DXYZ" ) ) );
59   QPixmap image2( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
60
61   setWindowTitle( tr( "GEOM_SPHERE_TITLE" ) );
62
63   /***************************************************************/
64   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_SPHERE" ) );
65   mainFrame()->RadioButton1->setIcon( image0 );
66   mainFrame()->RadioButton2->setIcon( image1 );
67   mainFrame()->RadioButton3->setAttribute( Qt::WA_DeleteOnClose );
68   mainFrame()->RadioButton3->close();
69
70   GroupPoints = new DlgRef_1Sel1Spin( centralWidget() );
71   GroupPoints->GroupBox1->setTitle( tr( "GEOM_SPHERE_CR" ) );
72   GroupPoints->TextLabel1->setText( tr( "GEOM_CENTER" ) );
73   GroupPoints->TextLabel2->setText( tr( "GEOM_RADIUS" ) );
74   GroupPoints->PushButton1->setIcon( image2 );
75
76   GroupDimensions = new DlgRef_1Spin( centralWidget() );
77   GroupDimensions->GroupBox1->setTitle( tr( "GEOM_SPHERE_RO" ) );
78   GroupDimensions->TextLabel1->setText( tr( "GEOM_RADIUS" ) );
79
80   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
81   layout->setMargin( 0 ); layout->setSpacing( 6 );
82   layout->addWidget( GroupPoints );
83   layout->addWidget( GroupDimensions );
84   /***************************************************************/
85
86   setHelpFileName( "create_sphere_page.html" );
87
88   Init();
89 }
90
91
92 //=================================================================================
93 // function : ~PrimitiveGUI_SphereDlg()
94 // purpose  : Destroys the object and frees any allocated resources
95 //=================================================================================
96 PrimitiveGUI_SphereDlg::~PrimitiveGUI_SphereDlg()
97 {  
98   /* no need to delete child widgets, Qt does it all for us */
99 }
100
101
102 //=================================================================================
103 // function : Init()
104 // purpose  :
105 //=================================================================================
106 void PrimitiveGUI_SphereDlg::Init()
107 {
108   /* init variables */
109   myEditCurrentArgument = GroupPoints->LineEdit1;
110   GroupPoints->LineEdit1->setReadOnly( true );
111   
112   myPoint = GEOM::GEOM_Object::_nil();
113   
114   /* Get setting of step value from file configuration */
115   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
116   double step = resMgr->doubleValue( "Geometry", "SettingsGeomStep", 100 );
117
118   /* min, max, step and decimals for spin boxes */
119   initSpinBox( GroupPoints->SpinBox_DX, 0.000001, COORD_MAX, step, "length_precision" );
120   initSpinBox( GroupDimensions->SpinBox_DX, 0.000001, COORD_MAX, step, "length_precision" );
121   GroupPoints->SpinBox_DX->setValue( 100.0 );
122   GroupDimensions->SpinBox_DX->setValue( 100.0 );
123   
124   /* signals and slots connections */
125   connect( buttonOk(),    SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
126   connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
127
128   connect( this,          SIGNAL( constructorsClicked( int ) ), this, SLOT( ConstructorsClicked( int ) ) );
129
130   connect( GroupPoints->PushButton1, SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
131   connect( GroupPoints->LineEdit1,   SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
132
133   connect( GroupDimensions->SpinBox_DX, SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox() ) );
134   connect( GroupPoints->SpinBox_DX,     SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox() ) );
135
136   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), this, SLOT( SetDoubleSpinBoxStep( double ) ) );
137
138   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
139            this, SLOT( SelectionIntoArgument() ) );
140
141   initName( tr( "GEOM_SPHERE" ) );
142
143   setConstructorId( 1 ); // simplest constructor
144   ConstructorsClicked( 1 );
145 }
146
147 //=================================================================================
148 // function : SetDoubleSpinBoxStep()
149 // purpose  : Double spin box management
150 //=================================================================================
151 void PrimitiveGUI_SphereDlg::SetDoubleSpinBoxStep( double step )
152 {
153   GroupPoints->SpinBox_DX->setSingleStep(step);
154   GroupDimensions->SpinBox_DX->setSingleStep(step);
155 }
156
157 //=================================================================================
158 // function : ConstructorsClicked()
159 // purpose  : Radio button management
160 //=================================================================================
161 void PrimitiveGUI_SphereDlg::ConstructorsClicked( int constructorId )
162 {
163   disconnect( myGeomGUI->getApp()->selectionMgr(), 0, this, 0 );
164   
165   switch ( constructorId ) {
166   case 0:
167     {
168       globalSelection(); // close local contexts, if any
169       localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
170
171       GroupDimensions->hide();
172       GroupPoints->show();
173       
174       myEditCurrentArgument = GroupPoints->LineEdit1;
175       GroupPoints->LineEdit1->setText( "" );
176       myPoint = GEOM::GEOM_Object::_nil();
177       
178       connect( myGeomGUI->getApp()->selectionMgr(), 
179                SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
180       break;
181     }
182   case 1:
183     {
184       globalSelection(); // close local contexts, if any
185       
186       GroupPoints->hide();
187       GroupDimensions->show();
188       
189       break;
190     }
191   }
192
193   qApp->processEvents();
194   updateGeometry();
195   resize( minimumSizeHint() );
196   SelectionIntoArgument();
197
198   displayPreview();
199 }
200
201
202 //=================================================================================
203 // function : ClickOnOk()
204 // purpose  :
205 //=================================================================================
206 void PrimitiveGUI_SphereDlg::ClickOnOk()
207 {
208   if ( ClickOnApply() )
209     ClickOnCancel();
210 }
211
212
213 //=================================================================================
214 // function : ClickOnApply()
215 // purpose  :
216 //=================================================================================
217 bool PrimitiveGUI_SphereDlg::ClickOnApply()
218 {
219   if ( !onAccept() )
220     return false;
221   
222   initName();
223   ConstructorsClicked( getConstructorId() );
224   return true;
225 }
226
227
228 //=================================================================================
229 // function : SelectionIntoArgument()
230 // purpose  : Called when selection as changed or other case
231 //=================================================================================
232 void PrimitiveGUI_SphereDlg::SelectionIntoArgument()
233 {
234   if ( getConstructorId() != 0 )
235     return;
236
237   myEditCurrentArgument->setText( "" );
238
239   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
240   SALOME_ListIO aSelList;
241   aSelMgr->selectedObjects(aSelList);
242
243   if (aSelList.Extent() != 1) {
244     myPoint = GEOM::GEOM_Object::_nil();
245     return;
246   }
247
248   /* nbSel == 1 ! */
249   Standard_Boolean testResult = Standard_False;
250   GEOM::GEOM_Object_ptr aSelectedObject = GEOMBase::ConvertIOinGEOMObject(aSelList.First(), testResult);
251
252   if ( !testResult || CORBA::is_nil( aSelectedObject ) )
253     return;
254  
255   QString aName = GEOMBase::GetName( aSelectedObject );
256   TopoDS_Shape aShape;
257   if ( GEOMBase::GetShape( aSelectedObject, aShape, TopAbs_SHAPE) && !aShape.IsNull() ) {
258     TColStd_IndexedMapOfInteger aMap;
259     aSelMgr->GetIndexes(aSelList.First(), aMap);
260     if ( aMap.Extent() == 1 ) { // Local Selection
261       int anIndex = aMap( 1 );
262       aName.append( ":vertex_" + QString::number( anIndex ) );
263
264       //Find SubShape Object in Father
265       GEOM::GEOM_Object_var aFindedObject = findObjectInFather(aSelectedObject, aName );
266
267       if ( aFindedObject->_is_nil() ) { // Object not found in study
268         GEOM::GEOM_IShapesOperations_var aShapesOp =
269           getGeomEngine()->GetIShapesOperations( getStudyId() );
270         aSelectedObject = aShapesOp->GetSubShape( aSelectedObject, anIndex );
271       }
272       else {
273         aSelectedObject = aFindedObject; // get Object from study
274       }
275     }
276     else { // Global Selection
277       if (aShape.ShapeType() != TopAbs_VERTEX) {
278         aSelectedObject = GEOM::GEOM_Object::_nil();
279         aName = "";
280       }
281     }
282   }
283
284   myEditCurrentArgument->setText( aName );
285   myPoint = aSelectedObject;
286
287   displayPreview();
288 }
289
290 //=================================================================================
291 // function : LineEditReturnPressed()
292 // purpose  :
293 //=================================================================================
294 void PrimitiveGUI_SphereDlg::LineEditReturnPressed()
295 {
296   QLineEdit* send = (QLineEdit*)sender();
297   if ( send == GroupPoints->LineEdit1 ) {
298     myEditCurrentArgument = send;
299     GEOMBase_Skeleton::LineEditReturnPressed();
300   }
301 }
302
303
304 //=================================================================================
305 // function : SetEditCurrentArgument()
306 // purpose  :
307 //=================================================================================
308 void PrimitiveGUI_SphereDlg::SetEditCurrentArgument()
309 {
310   QPushButton* send = (QPushButton*)sender();
311   
312   if ( send == GroupPoints->PushButton1 ) {
313     GroupPoints->LineEdit1->setFocus();
314     myEditCurrentArgument = GroupPoints->LineEdit1;
315     globalSelection(); // close local contexts, if any
316     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
317     SelectionIntoArgument();
318   }
319 }
320
321
322 //=================================================================================
323 // function : ActivateThisDialog()
324 // purpose  :
325 //=================================================================================
326 void PrimitiveGUI_SphereDlg::ActivateThisDialog()
327 {
328   GEOMBase_Skeleton::ActivateThisDialog();
329   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
330            this, SLOT( SelectionIntoArgument() ) );
331   
332   ConstructorsClicked( getConstructorId() );
333 }
334
335
336 //=================================================================================
337 // function : DeactivateActiveDialog()
338 // purpose  : public slot to deactivate if active
339 //=================================================================================
340 void PrimitiveGUI_SphereDlg::DeactivateActiveDialog()
341 {
342   GEOMBase_Skeleton::DeactivateActiveDialog();
343 }
344
345
346 //=================================================================================
347 // function : enterEvent()
348 // purpose  :
349 //=================================================================================
350 void PrimitiveGUI_SphereDlg::enterEvent( QEvent* )
351 {
352   if ( !mainFrame()->GroupConstructors->isEnabled() )
353     ActivateThisDialog();
354 }
355
356
357 //=================================================================================
358 // function : ValueChangedInSpinBox()
359 // purpose  :
360 //=================================================================================
361 void PrimitiveGUI_SphereDlg::ValueChangedInSpinBox()
362 {
363   displayPreview();
364 }
365
366
367 //=================================================================================
368 // function : createOperation
369 // purpose  :
370 //=================================================================================
371 GEOM::GEOM_IOperations_ptr PrimitiveGUI_SphereDlg::createOperation()
372 {
373   return getGeomEngine()->GetI3DPrimOperations( getStudyId() );
374 }
375
376
377 //=================================================================================
378 // function : isValid
379 // purpose  :
380 //=================================================================================
381 bool PrimitiveGUI_SphereDlg::isValid( QString& msg  )
382 {
383   bool ok = true;
384   if( getConstructorId() == 0 )
385     ok = GroupPoints->SpinBox_DX->isValid( msg, !IsPreview() ) && ok;
386   else if( getConstructorId() == 1 )
387     ok = GroupDimensions->SpinBox_DX->isValid( msg, !IsPreview() ) && ok;
388   return getConstructorId() == 0 ? !myPoint->_is_nil() && ok : ok;
389 }
390
391 //=================================================================================
392 // function : execute
393 // purpose  :
394 //=================================================================================
395 bool PrimitiveGUI_SphereDlg::execute( ObjectList& objects )
396 {
397   bool res = false;
398   
399   GEOM::GEOM_Object_var anObj;
400
401   GEOM::GEOM_I3DPrimOperations_var anOper = GEOM::GEOM_I3DPrimOperations::_narrow(getOperation());
402
403   switch ( getConstructorId() ) {
404   case 0 :
405     {
406       if ( !CORBA::is_nil( myPoint ) ) {
407         anObj = anOper->MakeSpherePntR( myPoint, getRadius() );
408         if (!anObj->_is_nil() && !IsPreview())
409         {
410           QStringList aParameters;
411           aParameters << GroupPoints->SpinBox_DX->text();
412           anObj->SetParameters(aParameters.join(":").toLatin1().constData());
413         }
414         res = true;
415       }
416       break;
417     }
418   case 1 :
419     {
420       anObj = anOper->MakeSphereR( getRadius() );
421       if (!anObj->_is_nil() && !IsPreview())
422       {
423         QStringList aParameters;
424         aParameters << GroupDimensions->SpinBox_DX->text();
425         anObj->SetParameters(aParameters.join(":").toLatin1().constData());
426       }
427       res = true;
428       break;
429     }
430   }
431   
432   if ( !anObj->_is_nil() )
433     objects.push_back( anObj._retn() );
434   
435   return res;
436 }
437
438
439 //=================================================================================
440 // function : getRadius()
441 // purpose  :
442 //=================================================================================
443 double PrimitiveGUI_SphereDlg::getRadius() const
444 {
445   int aConstructorId = getConstructorId();
446   if ( aConstructorId == 0 )
447     return GroupPoints->SpinBox_DX->value();
448   else if ( aConstructorId == 1 )
449     return GroupDimensions->SpinBox_DX->value();
450   return 0;
451 }
452
453 //=================================================================================
454 // function : addSubshapeToStudy
455 // purpose  : virtual method to add new SubObjects if local selection
456 //=================================================================================
457 void PrimitiveGUI_SphereDlg::addSubshapesToStudy()
458 {
459   QMap<QString, GEOM::GEOM_Object_var> objMap;
460
461   switch ( getConstructorId() ) {
462   case 0:
463     objMap[GroupPoints->LineEdit1->text()] = myPoint;
464     break;
465   case 1:
466     return;
467   }
468   addSubshapesToFather( objMap );
469 }