]> SALOME platform Git repositories - modules/geom.git/blob - src/BasicGUI/BasicGUI_EllipseDlg.cxx
Salome HOME
Merge from BR_Dev_For_4_0 branch (from tag mergeto_BR_QT4_Dev_17Jan08)
[modules/geom.git] / src / BasicGUI / BasicGUI_EllipseDlg.cxx
1 // GEOM GEOMGUI : GUI for Geometry component
2 //
3 // Copyright (C) 2003  OPEN CASCADE 
4 // 
5 // This library is free software; you can redistribute it and/or 
6 // modify it under the terms of the GNU Lesser General Public 
7 // License as published by the Free Software Foundation; either 
8 // version 2.1 of the License. 
9 // 
10 // This library is distributed in the hope that it will be useful, 
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 // Lesser General Public License for more details. 
14 // 
15 // You should have received a copy of the GNU Lesser General Public 
16 // License along with this library; if not, write to the Free Software 
17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
18 // 
19 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 //
21 // File   : BasicGUI_EllipseDlg.cxx
22 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
23 //
24
25 #include "BasicGUI_EllipseDlg.h"
26
27 #include <DlgRef.h>
28
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 <TColStd_IndexedMapOfInteger.hxx>
38 #include <TopTools_IndexedMapOfShape.hxx>
39 #include <TopoDS_Shape.hxx>
40 #include <TopoDS_Edge.hxx>
41 #include <TopoDS.hxx>
42 #include <TopExp.hxx>
43
44 #include <GEOMImpl_Types.hxx>
45
46 //=================================================================================
47 // class    : BasicGUI_EllipseDlg()
48 // purpose  : Constructs a BasicGUI_EllipseDlg 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 BasicGUI_EllipseDlg::BasicGUI_EllipseDlg( 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_ELLIPSE_PV" ) ) );
58   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
59
60   setWindowTitle( tr( "GEOM_ELLIPSE_TITLE" ) );
61
62   /***************************************************************/
63   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_ELLIPSE" ) );
64   mainFrame()->RadioButton1->setIcon( image0 );
65   mainFrame()->RadioButton2->setAttribute( Qt::WA_DeleteOnClose );
66   mainFrame()->RadioButton2->close();
67   mainFrame()->RadioButton3->setAttribute( Qt::WA_DeleteOnClose );
68   mainFrame()->RadioButton3->close();
69
70   GroupPoints = new DlgRef_2Sel2Spin( centralWidget() );
71   GroupPoints->GroupBox1->setTitle( tr( "GEOM_ARGUMENTS" ) );
72   GroupPoints->TextLabel1->setText( tr( "GEOM_CENTER" ) );
73   GroupPoints->TextLabel2->setText( tr( "GEOM_VECTOR" ) );
74   GroupPoints->TextLabel3->setText( tr( "GEOM_RADIUS_MAJOR" ) );
75   GroupPoints->TextLabel4->setText( tr( "GEOM_RADIUS_MINOR" ) );
76   GroupPoints->PushButton1->setIcon( image1 );
77   GroupPoints->PushButton2->setIcon( image1 );
78
79   GroupPoints->LineEdit1->setReadOnly( true );
80   GroupPoints->LineEdit2->setReadOnly( true );
81
82   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
83   layout->setMargin( 0 ); layout->setSpacing( 6 );
84   layout->addWidget( GroupPoints );
85   /***************************************************************/
86
87   setHelpFileName( "create_ellipse_page.html" );
88
89   Init();
90 }
91
92
93 //=================================================================================
94 // function : ~BasicGUI_EllipseDlg()
95 // purpose  : Destroys the object and frees any allocated resources
96 //=================================================================================
97 BasicGUI_EllipseDlg::~BasicGUI_EllipseDlg()
98 {
99 }
100
101
102 //=================================================================================
103 // function : Init()
104 // purpose  :
105 //=================================================================================
106 void BasicGUI_EllipseDlg::Init()
107 {
108   /* init variables */
109   myEditCurrentArgument = GroupPoints->LineEdit1;
110   globalSelection(); // close local contexts, if any
111   localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
112
113   myPoint = myDir = 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   double aMajorR( 200. ), aMinorR( 100. );
120
121   /* min, max, step and decimals for spin boxes & initial values */
122   initSpinBox( GroupPoints->SpinBox_DX, 0.001, COORD_MAX, step, 3 ); // VSR: TODO: DBL_DIGITS_DISPLAY
123   initSpinBox( GroupPoints->SpinBox_DY, 0.001, COORD_MAX, step, 3 ); // VSR: TODO: DBL_DIGITS_DISPLAY
124   GroupPoints->SpinBox_DX->setValue( aMajorR );
125   GroupPoints->SpinBox_DY->setValue( aMinorR );
126
127   /* signals and slots connections */
128   connect( myGeomGUI, SIGNAL( SignalDeactivateActiveDialog() ), this, SLOT( DeactivateActiveDialog() ) );
129   connect( myGeomGUI, SIGNAL( SignalCloseAllDialogs() ),        this, SLOT( ClickOnCancel() ) );
130
131   connect( buttonOk(),     SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
132   connect( buttonApply(),  SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
133
134   connect( GroupPoints->PushButton1, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
135   connect( GroupPoints->PushButton2, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
136
137   connect( GroupPoints->LineEdit1, SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
138   connect( GroupPoints->LineEdit2, SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
139
140   connect( GroupPoints->SpinBox_DX, SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
141   connect( GroupPoints->SpinBox_DY, SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox( double ) ) );
142
143   // VSR: TODO ->>
144   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), GroupPoints->SpinBox_DX, SLOT( SetStep( double ) ) );
145   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), GroupPoints->SpinBox_DY, SLOT( SetStep( double ) ) );
146   // <<-
147   
148   connect( myGeomGUI->getApp()->selectionMgr(), 
149           SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
150
151   initName( tr( "GEOM_ELLIPSE" ) );
152 }
153
154
155 //=================================================================================
156 // function : ClickOnOk()
157 // purpose  :
158 //=================================================================================
159 void BasicGUI_EllipseDlg::ClickOnOk()
160 {
161   if ( ClickOnApply() )
162     ClickOnCancel();
163 }
164
165
166 //=================================================================================
167 // function : ClickOnApply()
168 // purpose  :
169 //=================================================================================
170 bool BasicGUI_EllipseDlg::ClickOnApply()
171 {
172   if ( !onAccept() )
173     return false;
174
175   initName();
176
177   // reset
178   myPoint = myDir = GEOM::GEOM_Object::_nil();
179   GroupPoints->LineEdit1->setText( "" );
180   GroupPoints->LineEdit2->setText( "" );
181   myEditCurrentArgument = GroupPoints->LineEdit1;
182   //globalSelection(GEOM_POINT);
183   globalSelection(); // close local contexts, if any
184   localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
185   
186   return true;
187 }
188
189 //=================================================================================
190 // function : SelectionIntoArgument()
191 // purpose  : Called when selection as changed or other case
192 //=================================================================================
193 void BasicGUI_EllipseDlg::SelectionIntoArgument()
194 {
195   myEditCurrentArgument->setText( "" );
196
197   if ( IObjectCount() != 1 ) {
198     if      ( myEditCurrentArgument == GroupPoints->LineEdit1 ) myPoint = GEOM::GEOM_Object::_nil();
199     else if ( myEditCurrentArgument == GroupPoints->LineEdit2 ) myDir   = GEOM::GEOM_Object::_nil();
200     return;
201   }
202
203   Standard_Boolean aRes = Standard_False;
204   Handle(SALOME_InteractiveObject) anIO = firstIObject();
205   GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject( firstIObject(), aRes );
206   if ( !CORBA::is_nil( aSelectedObject ) && aRes ) {
207     QString aName = GEOMBase::GetName( aSelectedObject );
208     
209     // Get Selected object if selected subshape
210     TopoDS_Shape aShape;
211     
212     if ( GEOMBase::GetShape( aSelectedObject, aShape, TopAbs_SHAPE ) && !aShape.IsNull() ) {
213       TopAbs_ShapeEnum aNeedType = TopAbs_VERTEX;
214       if ( myEditCurrentArgument == GroupPoints->LineEdit2 )
215         aNeedType = TopAbs_EDGE;
216
217       LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
218       TColStd_IndexedMapOfInteger aMap;
219       aSelMgr->GetIndexes( anIO, aMap );
220       if ( aMap.Extent() == 1 ) {
221         int anIndex = aMap(1);
222         if ( aNeedType == TopAbs_EDGE )
223           aName += QString( ":edge_%1" ).arg( anIndex );
224         else
225           aName += QString( ":vertex_%1" ).arg( anIndex );
226
227         //Find SubShape Object in Father
228         GEOM::GEOM_Object_var aFindedObject = GEOMBase_Helper::findObjectInFather( aSelectedObject, aName );
229
230         if ( aFindedObject == GEOM::GEOM_Object::_nil() ) { // Object not found in study
231         GEOM::GEOM_IShapesOperations_var aShapesOp = getGeomEngine()->GetIShapesOperations( getStudyId() );
232         aSelectedObject = aShapesOp->GetSubShape( aSelectedObject, anIndex );
233         } 
234         else {
235           aSelectedObject = aFindedObject; // get Object from study
236         }
237       }
238       else { // Global Selection
239         if ( aShape.ShapeType() != aNeedType ) {
240           aSelectedObject = GEOM::GEOM_Object::_nil();
241           aName = "";
242         }
243       }
244     }
245     
246     myEditCurrentArgument->setText( aName );
247
248     if      ( myEditCurrentArgument == GroupPoints->LineEdit1 ) myPoint = aSelectedObject;
249     else if ( myEditCurrentArgument == GroupPoints->LineEdit2 ) myDir   = aSelectedObject;
250   }
251
252   displayPreview();
253 }
254
255
256 //=================================================================================
257 // function : SetEditCurrentArgument()
258 // purpose  :
259 //=================================================================================
260 void BasicGUI_EllipseDlg::SetEditCurrentArgument()
261 {
262   QPushButton* send = (QPushButton*)sender();
263   globalSelection( GEOM_POINT );
264
265   if      ( send == GroupPoints->PushButton1 ) myEditCurrentArgument = GroupPoints->LineEdit1;
266   else if ( send == GroupPoints->PushButton2 ) myEditCurrentArgument = GroupPoints->LineEdit2;
267   
268   myEditCurrentArgument->setFocus();
269   globalSelection(); // close local contexts, if any
270   if ( myEditCurrentArgument == GroupPoints->LineEdit2 )
271     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_EDGE );
272   else
273     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
274   SelectionIntoArgument();
275 }
276
277 //=================================================================================
278 // function : LineEditReturnPressed()
279 // purpose  :
280 //=================================================================================
281 void BasicGUI_EllipseDlg::LineEditReturnPressed()
282 {
283   QLineEdit* send = (QLineEdit*)sender();
284   if ( send == GroupPoints->LineEdit1 ||
285        send == GroupPoints->LineEdit2 ) {
286     myEditCurrentArgument = send;
287     GEOMBase_Skeleton::LineEditReturnPressed();
288   }
289 }
290
291
292 //=================================================================================
293 // function : ActivateThisDialog()
294 // purpose  :
295 //=================================================================================
296 void BasicGUI_EllipseDlg::ActivateThisDialog()
297 {
298   GEOMBase_Skeleton::ActivateThisDialog();
299   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
300            this, SLOT( SelectionIntoArgument() ) );
301   
302   GroupPoints->LineEdit1->setFocus();
303   myEditCurrentArgument = GroupPoints->LineEdit1;
304
305   GroupPoints->LineEdit1->setText( "" );
306   GroupPoints->LineEdit2->setText( "" );
307
308   myPoint = myDir = GEOM::GEOM_Object::_nil();
309   //globalSelection( GEOM_POINT );
310   globalSelection(); // close local contexts, if any
311   localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
312 }
313
314 //=================================================================================
315 // function : DeactivateActiveDialog()
316 // purpose  : public slot to deactivate if active
317 //=================================================================================
318 void BasicGUI_EllipseDlg::DeactivateActiveDialog()
319 {
320   // myGeomGUI->SetState( -1 );
321   GEOMBase_Skeleton::DeactivateActiveDialog();
322 }
323
324 //=================================================================================
325 // function : enterEvent()
326 // purpose  :
327 //=================================================================================
328 void BasicGUI_EllipseDlg::enterEvent( QEvent* )
329 {
330   if ( !mainFrame()->GroupConstructors->isEnabled() )
331     ActivateThisDialog();
332 }
333
334 //=================================================================================
335 // function : ValueChangedInSpinBox()
336 // purpose  :
337 //=================================================================================
338 void BasicGUI_EllipseDlg::ValueChangedInSpinBox( double newValue )
339 {
340   displayPreview();
341 }
342
343 //=================================================================================
344 // function : createOperation
345 // purpose  :
346 //=================================================================================
347 GEOM::GEOM_IOperations_ptr BasicGUI_EllipseDlg::createOperation()
348 {
349   return myGeomGUI->GetGeomGen()->GetICurvesOperations( getStudyId() );
350 }
351
352 //=================================================================================
353 // function : isValid
354 // purpose  :
355 //=================================================================================
356 bool BasicGUI_EllipseDlg::isValid( QString& msg )
357 {
358   double aMajorR = GroupPoints->SpinBox_DX->value();
359   double aMinorR = GroupPoints->SpinBox_DY->value();
360   if ( aMajorR < aMinorR ) {
361     msg = tr( "GEOM_ELLIPSE_ERROR_1" );
362     return false;
363   }
364   return !myPoint->_is_nil() && !myDir->_is_nil();
365 }
366
367 //=================================================================================
368 // function : execute
369 // purpose  :
370 //=================================================================================
371 bool BasicGUI_EllipseDlg::execute( ObjectList& objects )
372 {
373   double aMajorR = GroupPoints->SpinBox_DX->value();
374   double aMinorR = GroupPoints->SpinBox_DY->value();
375   GEOM::GEOM_Object_var anObj = GEOM::GEOM_ICurvesOperations::_narrow( getOperation() )->MakeEllipse( myPoint, myDir, aMajorR, aMinorR );
376
377   if ( !anObj->_is_nil() )
378     objects.push_back( anObj._retn() );
379
380   return true;
381 }
382
383 //=================================================================================
384 // function : addSubshapeToStudy
385 // purpose  : virtual method to add new SubObjects if local selection
386 //=================================================================================
387 void BasicGUI_EllipseDlg::addSubshapesToStudy()
388 {
389   QMap<QString, GEOM::GEOM_Object_var> objMap;
390
391   objMap[GroupPoints->LineEdit1->text()] = myPoint;
392   objMap[GroupPoints->LineEdit2->text()] = myDir;
393
394   addSubshapesToFather( objMap );
395 }