Salome HOME
*** empty log message ***
[modules/geom.git] / src / BasicGUI / BasicGUI_VectorDlg.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   : BasicGUI_VectorDlg.cxx
23 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
24 //
25
26 #include "BasicGUI_VectorDlg.h"
27
28 #include <GEOM_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 <GEOMImpl_Types.hxx>
38
39 //=================================================================================
40 // class    : BasicGUI_VectorDlg()
41 // purpose  : Constructs a BasicGUI_VectorDlg which is a child of 'parent', with the 
42 //            name 'name' and widget flags set to 'f'.
43 //            The dialog will by default be modeless, unless you set 'modal' to
44 //            TRUE to construct a modal dialog.
45 //=================================================================================
46 BasicGUI_VectorDlg::BasicGUI_VectorDlg( GeometryGUI* theGeometryGUI, QWidget* parent,
47                                         const char* name, bool modal, Qt::WindowFlags fl )
48   : GEOMBase_Skeleton( theGeometryGUI, parent, name, modal, fl )
49 {
50   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_VECTOR_2P" ) ) );
51   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_VECTOR_DXYZ" ) ) );
52   QPixmap image2( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
53
54   setWindowTitle( tr( "GEOM_VECTOR_TITLE" ) );
55
56   /***************************************************************/
57   mainFrame()->GroupConstructors->setTitle(tr("GEOM_VECTOR"));
58   mainFrame()->RadioButton1->setIcon(image0);
59   mainFrame()->RadioButton2->setIcon(image1);
60   mainFrame()->RadioButton3->setAttribute( Qt::WA_DeleteOnClose );
61   mainFrame()->RadioButton3->close();
62
63   GroupPoints = new DlgRef_2Sel( centralWidget() );
64
65   GroupPoints->GroupBox1->setTitle( tr( "GEOM_POINTS" ) );
66   GroupPoints->TextLabel1->setText( tr( "GEOM_POINT_I" ).arg( 1 ) );
67   GroupPoints->TextLabel2->setText( tr( "GEOM_POINT_I" ).arg( 2 ) );
68   GroupPoints->PushButton1->setIcon( image2 );
69   GroupPoints->PushButton2->setIcon( image2 );
70
71   GroupPoints->LineEdit1->setReadOnly( true );
72   GroupPoints->LineEdit2->setReadOnly( true );
73
74   GroupDimensions = new DlgRef_3Spin1Check( centralWidget() );
75   GroupDimensions->GroupBox1->setTitle( tr( "GEOM_COORDINATES" ) );
76   GroupDimensions->TextLabel1->setText( tr( "GEOM_DX" ) );
77   GroupDimensions->TextLabel2->setText( tr( "GEOM_DY" ) );
78   GroupDimensions->TextLabel3->setText( tr( "GEOM_DZ" ) );
79   GroupDimensions->CheckButton1->setText( tr( "GEOM_REVERSE_VECTOR" ) );
80
81   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
82   layout->setMargin( 0 ); layout->setSpacing( 6 );
83   layout->addWidget( GroupPoints );
84   layout->addWidget( GroupDimensions );
85   /***************************************************************/
86
87   setHelpFileName( "vector.htm" );
88   
89   /* Initialisations */
90   Init();
91 }
92
93
94 //=================================================================================
95 // function : ~BasicGUI_VectorDlg()
96 // purpose  : Destroys the object and frees any allocated resources
97 //=================================================================================
98 BasicGUI_VectorDlg::~BasicGUI_VectorDlg()
99 {  
100 }
101
102
103 //=================================================================================
104 // function : Init()
105 // purpose  :
106 //=================================================================================
107 void BasicGUI_VectorDlg::Init()
108 {
109     /* init variables */
110   myEditCurrentArgument = GroupPoints->LineEdit1;
111
112   myPoint1 = GEOM::GEOM_Object::_nil();
113   myPoint2 = GEOM::GEOM_Object::_nil();
114
115   /* Get setting of step value from file configuration */
116   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
117   double step = resMgr->doubleValue( "Geometry", "SettingsGeomStep", 100 );
118  
119   /* min, max, step and decimals for spin boxes */
120   initSpinBox( GroupDimensions->SpinBox_DX, COORD_MIN, COORD_MAX, step, 3 );
121   initSpinBox( GroupDimensions->SpinBox_DY, COORD_MIN, COORD_MAX, step, 3 );
122   initSpinBox( GroupDimensions->SpinBox_DZ, COORD_MIN, COORD_MAX, step, 3 );
123
124   double dx( 0. ), dy( 0. ), dz( 200. );
125   GroupDimensions->SpinBox_DX->setValue( dx );
126   GroupDimensions->SpinBox_DY->setValue( dy );
127   GroupDimensions->SpinBox_DZ->setValue( dz );
128
129   GroupDimensions->CheckButton1->setChecked( false );
130
131   /* signals and slots connections */
132   connect( myGeomGUI, SIGNAL( SignalDeactivateActiveDialog() ), this, SLOT( DeactivateActiveDialog() ) );
133   connect( myGeomGUI, SIGNAL( SignalCloseAllDialogs() ),        this, SLOT( ClickOnCancel() ) );
134   
135   connect( buttonCancel(), SIGNAL( clicked() ), this, SLOT( ClickOnCancel() ) );
136   connect( buttonOk(),     SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
137   connect( buttonApply(),  SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
138
139   connect( this,           SIGNAL( constructorsClicked( int ) ), this, SLOT( ConstructorsClicked( int ) ) );
140
141   connect( GroupPoints->PushButton1, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
142   connect( GroupPoints->PushButton2, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
143
144   connect( GroupPoints->LineEdit1, SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
145   connect( GroupPoints->LineEdit2, SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
146
147   connect( GroupDimensions->SpinBox_DX, SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
148   connect( GroupDimensions->SpinBox_DY, SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
149   connect( GroupDimensions->SpinBox_DZ, SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
150
151   // VSR: TODO ->>
152   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), GroupDimensions->SpinBox_DX, SLOT( SetStep( double ) ) );
153   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), GroupDimensions->SpinBox_DY, SLOT( SetStep( double ) ) );
154   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), GroupDimensions->SpinBox_DZ, SLOT( SetStep( double ) ) );
155   // <<-
156
157   connect( GroupDimensions->CheckButton1, SIGNAL( stateChanged( int ) ), this, SLOT( ReverseVector( int ) ) );
158
159   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 
160            SIGNAL( currentSelectionChanged() ), this, SLOT(SelectionIntoArgument() ) );
161
162   initName( tr("GEOM_VECTOR") );
163
164   ConstructorsClicked( 0 );
165 }
166
167
168 //=================================================================================
169 // function : ConstructorsClicked()
170 // purpose  : Radio button management
171 //=================================================================================
172 void BasicGUI_VectorDlg::ConstructorsClicked( int constructorId )
173 {
174   disconnect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 0, this, 0 );
175   myPoint1 = GEOM::GEOM_Object::_nil();
176   myPoint2 = GEOM::GEOM_Object::_nil();
177
178   switch ( constructorId ) {
179   case 0:
180     {
181       GroupDimensions->hide();
182       GroupPoints->show();
183       
184       myEditCurrentArgument = GroupPoints->LineEdit1;
185       GroupPoints->LineEdit1->setText( "" );
186       GroupPoints->LineEdit2->setText( "" );
187       
188       globalSelection( GEOM_POINT );
189       connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 
190                SIGNAL( currentSelectionChanged() ), this, SLOT(SelectionIntoArgument() ) );
191       break;
192     }
193   case 1:
194     {
195       GroupPoints->hide();
196       GroupDimensions->show();
197       
198       double dx( 0. ), dy( 0. ), dz( 0. ); 
199       GroupDimensions->SpinBox_DX->setValue( dx );
200       GroupDimensions->SpinBox_DY->setValue( dy );
201       GroupDimensions->SpinBox_DZ->setValue( dz );
202       
203       GroupDimensions->CheckButton1->setChecked( false );
204       break;
205     }
206   }
207
208   qApp->processEvents();
209   updateGeometry();
210   resize( minimumSize() );
211
212   displayPreview();
213 }
214
215
216 //=================================================================================
217 // function : ClickOnOk()
218 // purpose  :
219 //=================================================================================
220 void BasicGUI_VectorDlg::ClickOnOk()
221 {
222   if ( ClickOnApply() )
223     ClickOnCancel();
224 }
225
226 //=======================================================================
227 // function : ClickOnCancel()
228 // purpose  :
229 //=======================================================================
230 void BasicGUI_VectorDlg::ClickOnCancel()
231 {
232   GEOMBase_Skeleton::ClickOnCancel();
233 }
234
235 //=================================================================================
236 // function : ClickOnApply()
237 // purpose  :
238 //=================================================================================
239 bool BasicGUI_VectorDlg::ClickOnApply()
240 {
241   buttonApply()->setFocus();
242
243   if ( !onAccept() )
244     return false;
245
246   initName();
247   if ( getConstructorId() != 1 )
248         ConstructorsClicked( getConstructorId() );
249   return true;
250 }
251
252
253 //=================================================================================
254 // function : SelectionIntoArgument()
255 // purpose  : Called when selection as changed or other case
256 //=================================================================================
257 void BasicGUI_VectorDlg::SelectionIntoArgument()
258 {
259   myEditCurrentArgument->setText( "" );
260
261   if ( IObjectCount() != 1 ) {
262     if ( myEditCurrentArgument == GroupPoints->LineEdit1 )
263       myPoint1 = GEOM::GEOM_Object::_nil();
264     else if ( myEditCurrentArgument == GroupPoints->LineEdit2 )
265       myPoint2 = GEOM::GEOM_Object::_nil();
266     return;
267   }
268
269   // nbSel == 1 
270   Standard_Boolean aRes = Standard_False;
271   GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject( firstIObject(), aRes );
272   if ( !CORBA::is_nil( aSelectedObject ) && aRes ) {
273     myEditCurrentArgument->setText( GEOMBase::GetName( aSelectedObject ) );
274     if      ( myEditCurrentArgument == GroupPoints->LineEdit1 ) myPoint1 = aSelectedObject;
275     else if ( myEditCurrentArgument == GroupPoints->LineEdit2 ) myPoint2 = aSelectedObject;
276   }
277
278   displayPreview();
279 }
280
281
282 //=================================================================================
283 // function : SetEditCurrentArgument()
284 // purpose  :
285 //=================================================================================
286 void BasicGUI_VectorDlg::SetEditCurrentArgument()
287 {
288   QPushButton* send = (QPushButton*)sender();
289   if      ( send == GroupPoints->PushButton1 ) myEditCurrentArgument = GroupPoints->LineEdit1;
290   else if ( send == GroupPoints->PushButton2 ) myEditCurrentArgument = GroupPoints->LineEdit2;
291   myEditCurrentArgument->setFocus();
292   SelectionIntoArgument();
293 }
294
295
296 //=================================================================================
297 // function : LineEditReturnPressed()
298 // purpose  :
299 //=================================================================================
300 void BasicGUI_VectorDlg::LineEditReturnPressed()
301
302   QLineEdit* send = (QLineEdit*)sender();
303   if      ( send == GroupPoints->LineEdit1 ) myEditCurrentArgument = GroupPoints->LineEdit1;
304   else if ( send == GroupPoints->LineEdit2 ) myEditCurrentArgument = GroupPoints->LineEdit2;
305   else return;
306   GEOMBase_Skeleton::LineEditReturnPressed();
307 }
308
309
310 //=================================================================================
311 // function : ActivateThisDialog()
312 // purpose  :
313 //=================================================================================
314 void BasicGUI_VectorDlg::ActivateThisDialog()
315 {
316   GEOMBase_Skeleton::ActivateThisDialog();
317   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 
318            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
319         
320   ConstructorsClicked( getConstructorId() );
321 }
322
323 //=================================================================================
324 // function : DeactivateActiveDialog()
325 // purpose  : public slot to deactivate if active
326 //=================================================================================
327 void BasicGUI_VectorDlg::DeactivateActiveDialog()
328 {
329   // myGeomGUI->SetState( -1 );
330   GEOMBase_Skeleton::DeactivateActiveDialog();
331 }
332
333 //=================================================================================
334 // function : enterEvent()
335 // purpose  :
336 //=================================================================================
337 void BasicGUI_VectorDlg::enterEvent( QEvent* )
338 {
339   if ( !mainFrame()->GroupConstructors->isEnabled() )
340     ActivateThisDialog();
341 }
342
343 //=================================================================================
344 // function : ValueChangedInSpinBox()
345 // purpose  :
346 //=================================================================================
347 void BasicGUI_VectorDlg::ValueChangedInSpinBox( double newValue )
348 {
349   displayPreview();
350 }
351
352 //=================================================================================
353 // function : ReverseVector()
354 // purpose  : 'state' not used here
355 //=================================================================================
356 void BasicGUI_VectorDlg::ReverseVector( int state )
357 {
358   double dx = -GroupDimensions->SpinBox_DX->value();
359   double dy = -GroupDimensions->SpinBox_DY->value();
360   double dz = -GroupDimensions->SpinBox_DZ->value();
361
362   GroupDimensions->SpinBox_DX->setValue( dx );
363   GroupDimensions->SpinBox_DY->setValue( dy );
364   GroupDimensions->SpinBox_DZ->setValue( dz );
365   
366   displayPreview();
367 }
368
369 //=================================================================================
370 // function : createOperation
371 // purpose  :
372 //=================================================================================
373 GEOM::GEOM_IOperations_ptr BasicGUI_VectorDlg::createOperation()
374 {
375   return myGeomGUI->GetGeomGen()->GetIBasicOperations( getStudyId() );
376 }
377
378 //=================================================================================
379 // function : isValid
380 // purpose  :
381 //=================================================================================
382 bool BasicGUI_VectorDlg::isValid( QString& msg )
383 {
384   return getConstructorId() == 0 ? !myPoint1->_is_nil() && !myPoint2->_is_nil() : true;
385 }
386
387 //=================================================================================
388 // function : execute
389 // purpose  :
390 //=================================================================================
391 bool BasicGUI_VectorDlg::execute( ObjectList& objects )
392 {
393   bool res = false;
394   
395   GEOM::GEOM_Object_var anObj;
396
397   switch ( getConstructorId() ) {
398   case 0 :
399     {
400       anObj = GEOM::GEOM_IBasicOperations::_narrow( getOperation() )->MakeVectorTwoPnt( myPoint1, myPoint2 );
401       res = true;
402       break;
403     }
404   case 1 :
405     {
406       double dx = GroupDimensions->SpinBox_DX->value();
407       double dy = GroupDimensions->SpinBox_DY->value();
408       double dz = GroupDimensions->SpinBox_DZ->value();
409       anObj = GEOM::GEOM_IBasicOperations::_narrow( getOperation() )->MakeVectorDXDYDZ( dx, dy, dz );
410       res = true;
411       break;
412     }
413   }
414
415   if ( !anObj->_is_nil() )
416     objects.push_back( anObj._retn() );
417
418   return res;
419 }
420