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