Salome HOME
Eliminate useless GetSubShape() lines in the python dump
[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.nullify();
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
132   connect( GroupDimensions->SpinBox_DX, SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox() ) );
133   connect( GroupPoints->SpinBox_DX,     SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox() ) );
134
135   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), this, SLOT( SetDoubleSpinBoxStep( double ) ) );
136
137   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
138            this, SLOT( SelectionIntoArgument() ) );
139
140   initName( tr( "GEOM_SPHERE" ) );
141
142   setConstructorId( 1 ); // simplest constructor
143   ConstructorsClicked( 1 );
144 }
145
146 //=================================================================================
147 // function : SetDoubleSpinBoxStep()
148 // purpose  : Double spin box management
149 //=================================================================================
150 void PrimitiveGUI_SphereDlg::SetDoubleSpinBoxStep( double step )
151 {
152   GroupPoints->SpinBox_DX->setSingleStep(step);
153   GroupDimensions->SpinBox_DX->setSingleStep(step);
154 }
155
156 //=================================================================================
157 // function : ConstructorsClicked()
158 // purpose  : Radio button management
159 //=================================================================================
160 void PrimitiveGUI_SphereDlg::ConstructorsClicked( int constructorId )
161 {
162   disconnect( myGeomGUI->getApp()->selectionMgr(), 0, this, 0 );
163   
164   switch ( constructorId ) {
165   case 0:
166     {
167       globalSelection(); // close local contexts, if any
168       localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
169
170       GroupDimensions->hide();
171       GroupPoints->show();
172       
173       myEditCurrentArgument = GroupPoints->LineEdit1;
174       GroupPoints->LineEdit1->setText( "" );
175       myPoint.nullify();
176       
177       connect( myGeomGUI->getApp()->selectionMgr(), 
178                SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
179       break;
180     }
181   case 1:
182     {
183       globalSelection(); // close local contexts, if any
184       
185       GroupPoints->hide();
186       GroupDimensions->show();
187       
188       break;
189     }
190   }
191
192   qApp->processEvents();
193   updateGeometry();
194   resize( minimumSizeHint() );
195   SelectionIntoArgument();
196
197   displayPreview();
198 }
199
200
201 //=================================================================================
202 // function : ClickOnOk()
203 // purpose  :
204 //=================================================================================
205 void PrimitiveGUI_SphereDlg::ClickOnOk()
206 {
207   if ( ClickOnApply() )
208     ClickOnCancel();
209 }
210
211
212 //=================================================================================
213 // function : ClickOnApply()
214 // purpose  :
215 //=================================================================================
216 bool PrimitiveGUI_SphereDlg::ClickOnApply()
217 {
218   if ( !onAccept() )
219     return false;
220   
221   initName();
222   ConstructorsClicked( getConstructorId() );
223   return true;
224 }
225
226
227 //=================================================================================
228 // function : SelectionIntoArgument()
229 // purpose  : Called when selection as changed or other case
230 //=================================================================================
231 void PrimitiveGUI_SphereDlg::SelectionIntoArgument()
232 {
233   if ( getConstructorId() != 0 )
234     return;
235
236   myEditCurrentArgument->setText( "" );
237
238   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
239   SALOME_ListIO aSelList;
240   aSelMgr->selectedObjects(aSelList);
241
242   if (aSelList.Extent() != 1) {
243     myPoint.nullify();
244     return;
245   }
246
247   GEOM::GeomObjPtr aSelectedObject = getSelected( TopAbs_VERTEX );
248   TopoDS_Shape aShape;
249   if ( aSelectedObject && GEOMBase::GetShape( aSelectedObject.get(), aShape ) && !aShape.IsNull() ) {
250     QString aName = GEOMBase::GetName( aSelectedObject.get() );
251     myEditCurrentArgument->setText( aName );
252     myPoint = aSelectedObject;
253   }
254
255   displayPreview();
256 }
257
258 //=================================================================================
259 // function : SetEditCurrentArgument()
260 // purpose  :
261 //=================================================================================
262 void PrimitiveGUI_SphereDlg::SetEditCurrentArgument()
263 {
264   QPushButton* send = (QPushButton*)sender();
265   
266   if ( send == GroupPoints->PushButton1 ) {
267     GroupPoints->LineEdit1->setFocus();
268     myEditCurrentArgument = GroupPoints->LineEdit1;
269     globalSelection(); // close local contexts, if any
270     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
271     SelectionIntoArgument();
272   }
273 }
274
275
276 //=================================================================================
277 // function : ActivateThisDialog()
278 // purpose  :
279 //=================================================================================
280 void PrimitiveGUI_SphereDlg::ActivateThisDialog()
281 {
282   GEOMBase_Skeleton::ActivateThisDialog();
283   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
284            this, SLOT( SelectionIntoArgument() ) );
285   
286   ConstructorsClicked( getConstructorId() );
287 }
288
289
290 //=================================================================================
291 // function : DeactivateActiveDialog()
292 // purpose  : public slot to deactivate if active
293 //=================================================================================
294 void PrimitiveGUI_SphereDlg::DeactivateActiveDialog()
295 {
296   GEOMBase_Skeleton::DeactivateActiveDialog();
297 }
298
299
300 //=================================================================================
301 // function : enterEvent()
302 // purpose  :
303 //=================================================================================
304 void PrimitiveGUI_SphereDlg::enterEvent( QEvent* )
305 {
306   if ( !mainFrame()->GroupConstructors->isEnabled() )
307     ActivateThisDialog();
308 }
309
310
311 //=================================================================================
312 // function : ValueChangedInSpinBox()
313 // purpose  :
314 //=================================================================================
315 void PrimitiveGUI_SphereDlg::ValueChangedInSpinBox()
316 {
317   displayPreview();
318 }
319
320
321 //=================================================================================
322 // function : createOperation
323 // purpose  :
324 //=================================================================================
325 GEOM::GEOM_IOperations_ptr PrimitiveGUI_SphereDlg::createOperation()
326 {
327   return getGeomEngine()->GetI3DPrimOperations( getStudyId() );
328 }
329
330
331 //=================================================================================
332 // function : isValid
333 // purpose  :
334 //=================================================================================
335 bool PrimitiveGUI_SphereDlg::isValid( QString& msg  )
336 {
337   bool ok = false;
338   if( getConstructorId() == 0 )
339     ok = GroupPoints->SpinBox_DX->isValid( msg, !IsPreview() ) && myPoint;
340   else if( getConstructorId() == 1 )
341     ok = GroupDimensions->SpinBox_DX->isValid( msg, !IsPreview() );
342   return ok;
343 }
344
345 //=================================================================================
346 // function : execute
347 // purpose  :
348 //=================================================================================
349 bool PrimitiveGUI_SphereDlg::execute( ObjectList& objects )
350 {
351   bool res = false;
352   
353   GEOM::GEOM_Object_var anObj;
354
355   GEOM::GEOM_I3DPrimOperations_var anOper = GEOM::GEOM_I3DPrimOperations::_narrow(getOperation());
356
357   switch ( getConstructorId() ) {
358   case 0 :
359     {
360       if ( myPoint ) {
361         anObj = anOper->MakeSpherePntR( myPoint.get(), getRadius() );
362         if (!anObj->_is_nil() && !IsPreview())
363         {
364           QStringList aParameters;
365           aParameters << GroupPoints->SpinBox_DX->text();
366           anObj->SetParameters(aParameters.join(":").toLatin1().constData());
367         }
368         res = true;
369       }
370       break;
371     }
372   case 1 :
373     {
374       anObj = anOper->MakeSphereR( getRadius() );
375       if (!anObj->_is_nil() && !IsPreview())
376       {
377         QStringList aParameters;
378         aParameters << GroupDimensions->SpinBox_DX->text();
379         anObj->SetParameters(aParameters.join(":").toLatin1().constData());
380       }
381       res = true;
382       break;
383     }
384   }
385   
386   if ( !anObj->_is_nil() )
387     objects.push_back( anObj._retn() );
388   
389   return res;
390 }
391
392
393 //=================================================================================
394 // function : getRadius()
395 // purpose  :
396 //=================================================================================
397 double PrimitiveGUI_SphereDlg::getRadius() const
398 {
399   int aConstructorId = getConstructorId();
400   if ( aConstructorId == 0 )
401     return GroupPoints->SpinBox_DX->value();
402   else if ( aConstructorId == 1 )
403     return GroupDimensions->SpinBox_DX->value();
404   return 0;
405 }
406
407 //=================================================================================
408 // function : addSubshapeToStudy
409 // purpose  : virtual method to add new SubObjects if local selection
410 //=================================================================================
411 void PrimitiveGUI_SphereDlg::addSubshapesToStudy()
412 {
413   if ( getConstructorId() == 0 ) {
414     GEOMBase::PublishSubObject( myPoint.get() );
415   }
416 }