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