]> SALOME platform Git repositories - modules/geom.git/blob - src/GenerationGUI/GenerationGUI_RevolDlg.cxx
Salome HOME
Merge from BR_Dev_For_4_0 branch (from tag mergeto_BR_QT4_Dev_17Jan08)
[modules/geom.git] / src / GenerationGUI / GenerationGUI_RevolDlg.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   : GenerationGUI_RevolDlg.cxx
23 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
24 //
25
26 #include "GenerationGUI_RevolDlg.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_Edge.hxx>
39 #include <TopoDS.hxx>
40 #include <TopExp.hxx>
41 #include <TColStd_IndexedMapOfInteger.hxx>
42 #include <TopTools_IndexedMapOfShape.hxx>
43 #include <TopExp_Explorer.hxx>
44
45 #include <GEOMImpl_Types.hxx>
46
47 //=================================================================================
48 // class    : GenerationGUI_RevolDlg()
49 // purpose  : Constructs a GenerationGUI_RevolDlg which is a child of 'parent', with the 
50 //            name 'name' and widget flags set to 'f'.
51 //            The dialog will by default be modeless, unless you set 'modal' to
52 //            TRUE to construct a modal dialog.
53 //=================================================================================
54 GenerationGUI_RevolDlg::GenerationGUI_RevolDlg( GeometryGUI* theGeometryGUI, QWidget* parent,
55                                                 bool modal, Qt::WindowFlags fl )
56   : GEOMBase_Skeleton( theGeometryGUI, parent, modal, fl )
57 {
58   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_REVOL" ) ) );
59   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
60
61   setWindowTitle( tr( "GEOM_REVOLUTION_TITLE" ) );
62
63   /***************************************************************/
64   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_REVOLUTION" ) );
65   mainFrame()->RadioButton1->setIcon( image0 );
66   mainFrame()->RadioButton2->setAttribute( Qt::WA_DeleteOnClose );
67   mainFrame()->RadioButton2->close();
68   mainFrame()->RadioButton3->setAttribute( Qt::WA_DeleteOnClose );
69   mainFrame()->RadioButton3->close();
70   myBothway = false;
71
72   GroupPoints = new DlgRef_2Sel1Spin2Check( centralWidget() );
73   GroupPoints->GroupBox1->setTitle( tr( "GEOM_ARGUMENTS" ) );
74   GroupPoints->TextLabel1->setText( tr( "GEOM_OBJECT" ) );
75   GroupPoints->TextLabel2->setText( tr( "GEOM_AXIS" ) );
76   GroupPoints->TextLabel3->setText( tr( "GEOM_ANGLE" ) );
77   GroupPoints->PushButton1->setIcon( image1 );
78   GroupPoints->PushButton2->setIcon( image1 );
79   GroupPoints->LineEdit1->setReadOnly( true );
80   GroupPoints->LineEdit2->setReadOnly( true );
81   GroupPoints->CheckButton1->setText( tr( "GEOM_BOTHWAY" ) );
82   GroupPoints->CheckButton2->setText( tr( "GEOM_REVERSE" ) );
83
84   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
85   layout->setMargin( 0 ); layout->setSpacing( 6 );
86   layout->addWidget( GroupPoints );
87   /***************************************************************/
88
89   setHelpFileName( "create_revolution_page.html" );
90
91   /* Initialisations */
92   Init();
93 }
94
95
96 //=================================================================================
97 // function : ~GenerationGUI_RevolDlg()
98 // purpose  : Destroys the object and frees any allocated resources
99 //=================================================================================
100 GenerationGUI_RevolDlg::~GenerationGUI_RevolDlg()
101 {
102   // no need to delete child widgets, Qt does it all for us
103 }
104
105
106 //=================================================================================
107 // function : Init()
108 // purpose  :
109 //=================================================================================
110 void GenerationGUI_RevolDlg::Init()
111 {
112   /* init variables */
113   myEditCurrentArgument = GroupPoints->LineEdit1;
114   GroupPoints->LineEdit1->setReadOnly( true );
115   GroupPoints->LineEdit2->setReadOnly( true );
116
117   myOkBase = myOkAxis = false;
118
119   double SpecificStep = 5;
120   /* min, max, step and decimals for spin boxes & initial values */
121   initSpinBox( GroupPoints->SpinBox_DX, COORD_MIN, COORD_MAX, SpecificStep, 3 ); // VSR: TODO: DBL_DIGITS_DISPLAY
122   GroupPoints->SpinBox_DX->setValue( 45.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( GroupPoints->PushButton1,  SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
129   connect( GroupPoints->PushButton2,  SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
130
131   connect( GroupPoints->LineEdit1,    SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
132   connect( GroupPoints->LineEdit2,    SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
133
134   connect( GroupPoints->SpinBox_DX,   SIGNAL( valueChanged( double ) ), this, SLOT( ValueChangedInSpinBox() ) );
135   connect( GroupPoints->CheckButton1, SIGNAL( toggled( bool ) ),        this, SLOT( onBothway() ) );
136   connect( GroupPoints->CheckButton2, SIGNAL( toggled( bool ) ),        this, SLOT( onReverse() ) );
137
138   // VSR: TODO ->>
139   connect( myGeomGUI, SIGNAL( SignalDefaultStepValueChanged( double ) ), GroupPoints->SpinBox_DX, SLOT( SetStep( double ) ) );
140   // <<-
141
142   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
143            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
144
145   initName( tr( "GEOM_REVOLUTION" ) );
146
147   globalSelection( GEOM_ALLSHAPES );
148 }
149
150
151 //=================================================================================
152 // function : ClickOnOk()
153 // purpose  :
154 //=================================================================================
155 void GenerationGUI_RevolDlg::ClickOnOk()
156 {
157   if ( ClickOnApply() )
158     ClickOnCancel();
159 }
160
161
162 //=================================================================================
163 // function : ClickOnApply()
164 // purpose  :
165 //=================================================================================
166 bool GenerationGUI_RevolDlg::ClickOnApply()
167 {
168   if ( !onAccept() )
169     return false;
170
171   initName();
172   return true;
173 }
174
175 //=======================================================================
176 //function : isAcceptableBase
177 //purpose  : return true if theBase can be used as algo argument
178 //=======================================================================
179
180 static bool isAcceptableBase( const TopoDS_Shape& theBase )
181 {
182   switch ( theBase.ShapeType() ) {
183   case TopAbs_VERTEX:
184   case TopAbs_EDGE:
185   case TopAbs_WIRE:
186   case TopAbs_FACE:
187   case TopAbs_SHELL:
188     return true;
189   case TopAbs_SOLID:
190   case TopAbs_COMPSOLID:
191     return false;
192   case TopAbs_COMPOUND: {
193     TopExp_Explorer exp( theBase, TopAbs_SOLID );
194     return !exp.More();
195   }
196   default:
197     return false;
198   }
199   return false;
200 }
201
202 //=================================================================================
203 // function : SelectionIntoArgument()
204 // purpose  : Called when selection as changed or other case
205 //=================================================================================
206 void GenerationGUI_RevolDlg::SelectionIntoArgument()
207 {
208   erasePreview();
209   myEditCurrentArgument->setText( "" );
210   
211   if ( IObjectCount() != 1 ) {
212     if ( myEditCurrentArgument == GroupPoints->LineEdit1 )
213       myOkBase = false;        
214     else if ( myEditCurrentArgument == GroupPoints->LineEdit2 )
215       myOkAxis = false;
216     return;
217   }
218   
219   // nbSel == 1
220   Standard_Boolean testResult = Standard_False;
221   GEOM::GEOM_Object_ptr aSelectedObject = GEOMBase::ConvertIOinGEOMObject( firstIObject(), testResult );
222   QString aName = GEOMBase::GetName( aSelectedObject );
223   
224   if ( !testResult )
225     return;
226
227   if ( myEditCurrentArgument == GroupPoints->LineEdit1 ) {
228     TopoDS_Shape S;
229     myOkBase = false;
230     
231     if ( !GEOMBase::GetShape(aSelectedObject, S) || !isAcceptableBase( S ) )
232       return;
233     
234     myBase = aSelectedObject;
235     myOkBase = true;
236   }
237   else if ( myEditCurrentArgument == GroupPoints->LineEdit2 ) {
238     if ( testResult && !aSelectedObject->_is_nil() ) {
239       TopoDS_Shape aShape;
240       
241       if ( GEOMBase::GetShape( aSelectedObject, aShape, TopAbs_SHAPE ) && !aShape.IsNull() ) {
242         LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
243         TColStd_IndexedMapOfInteger aMap;
244         aSelMgr->GetIndexes( firstIObject(), aMap );
245         if ( aMap.Extent() == 1 ) {
246           
247           int anIndex = aMap( 1 );
248           aName.append( ":edge_" + QString::number( anIndex ) );
249           
250           //Find SubShape Object in Father
251           GEOM::GEOM_Object_var aFindedObject = GEOMBase_Helper::findObjectInFather( aSelectedObject, aName );
252           
253           if ( aFindedObject == GEOM::GEOM_Object::_nil() ) { // Object not found in study
254             GEOM::GEOM_IShapesOperations_var aShapesOp =
255               getGeomEngine()->GetIShapesOperations( getStudyId() );
256             myAxis = aShapesOp->GetSubShape( aSelectedObject, anIndex );
257             myOkAxis = true;
258           }
259           else {
260             myAxis = aFindedObject;
261             myOkAxis = true;
262           }
263         }
264         else {
265           myOkAxis = true;
266           if ( aShape.ShapeType() != TopAbs_EDGE ) {
267             aSelectedObject = GEOM::GEOM_Object::_nil();
268             aName = "";
269             myOkAxis = false;
270           }
271           myAxis = aSelectedObject;
272         }
273       }
274     }
275   }
276
277   myEditCurrentArgument->setText( aName );
278
279   displayPreview();
280 }
281
282
283 //=================================================================================
284 // function : SetEditCurrentArgument()
285 // purpose  :
286 //=================================================================================
287 void GenerationGUI_RevolDlg::SetEditCurrentArgument()
288 {
289   QPushButton* send = (QPushButton*)sender();
290   globalSelection( GEOM_ALLSHAPES );
291
292   if ( send == GroupPoints->PushButton1 ) {
293     GroupPoints->LineEdit1->setFocus();
294     myEditCurrentArgument = GroupPoints->LineEdit1;
295   }
296   else if ( send == GroupPoints->PushButton2 ) {
297     GroupPoints->LineEdit2->setFocus();
298     myEditCurrentArgument = GroupPoints->LineEdit2;
299     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_EDGE );
300   }
301   SelectionIntoArgument();
302 }
303
304
305 //=================================================================================
306 // function : LineEditReturnPressed()
307 // purpose  :
308 //=================================================================================
309 void GenerationGUI_RevolDlg::LineEditReturnPressed()
310 {  
311   QLineEdit* send = (QLineEdit*)sender();
312   if ( send == GroupPoints->LineEdit1 ||
313        send == GroupPoints->LineEdit2 ) {
314     myEditCurrentArgument = send;
315     GEOMBase_Skeleton::LineEditReturnPressed();
316   }
317 }
318
319
320 //=================================================================================
321 // function : ActivateThisDialog()
322 // purpose  :
323 //=================================================================================
324 void GenerationGUI_RevolDlg::ActivateThisDialog()
325 {
326   GEOMBase_Skeleton::ActivateThisDialog();
327   globalSelection( GEOM_ALLSHAPES );
328   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), SIGNAL(currentSelectionChanged()), this, SLOT( SelectionIntoArgument() ) );
329   GroupPoints->LineEdit1->setFocus();
330   myEditCurrentArgument = GroupPoints->LineEdit1;
331   displayPreview();
332 }
333
334
335 //=================================================================================
336 // function : enterEvent()
337 // purpose  :
338 //=================================================================================
339 void GenerationGUI_RevolDlg::enterEvent( QEvent* )
340 {
341   if ( !mainFrame()->GroupConstructors->isEnabled() )
342     ActivateThisDialog();
343 }
344
345
346 //=================================================================================
347 // function : ValueChangedInSpinBox()
348 // purpose  :
349 //=================================================================================
350 void GenerationGUI_RevolDlg::ValueChangedInSpinBox()
351 {
352   displayPreview();
353 }
354
355
356 //=================================================================================
357 // function : getAngle()
358 // purpose  :
359 //=================================================================================
360 double GenerationGUI_RevolDlg::getAngle() const
361 {
362   return GroupPoints->SpinBox_DX->value();
363 }
364
365 //=================================================================================
366 // function : createOperation
367 // purpose  :
368 //=================================================================================
369 GEOM::GEOM_IOperations_ptr GenerationGUI_RevolDlg::createOperation()
370 {
371   return getGeomEngine()->GetI3DPrimOperations( getStudyId() );
372 }
373
374 //=================================================================================
375 // function : isValid
376 // purpose  :
377 //=================================================================================
378 bool GenerationGUI_RevolDlg::isValid( QString& )
379 {
380   return myOkBase && myOkAxis;
381 }
382
383 //=================================================================================
384 // function : execute
385 // purpose  :
386 //=================================================================================
387 bool GenerationGUI_RevolDlg::execute( ObjectList& objects )
388 {
389   GEOM::GEOM_Object_var anObj;
390
391   if ( !myBothway ) {
392     anObj = GEOM::GEOM_I3DPrimOperations::_narrow(
393       getOperation() )->MakeRevolutionAxisAngle( myBase, myAxis, getAngle() * PI180 );
394   }
395   else {
396     anObj = GEOM::GEOM_I3DPrimOperations::_narrow(
397       getOperation() )->MakeRevolutionAxisAngle2Ways( myBase, myAxis, getAngle() * PI180 );
398   }
399
400   if ( !anObj->_is_nil() )
401     objects.push_back( anObj._retn() );
402
403   return true;
404 }
405
406
407 //=================================================================================
408 // function :  onReverse()
409 // purpose  :
410 //=================================================================================
411 void GenerationGUI_RevolDlg::onReverse()
412 {
413   double anOldValue = GroupPoints->SpinBox_DX->value();
414   GroupPoints->SpinBox_DX->setValue( -anOldValue );
415 }
416
417
418 //=================================================================================
419 // function :  onBothway()
420 // purpose  :
421 //=================================================================================
422 void GenerationGUI_RevolDlg::onBothway()
423 {
424   bool anOldValue = myBothway;
425   myBothway = !anOldValue;
426   GroupPoints->CheckButton2->setEnabled( !myBothway );  
427   displayPreview();
428 }
429
430 //=================================================================================
431 // function : addSubshapeToStudy
432 // purpose  : virtual method to add new SubObjects if local selection
433 //=================================================================================
434 void GenerationGUI_RevolDlg::addSubshapesToStudy()
435 {
436   QMap<QString, GEOM::GEOM_Object_var> objMap;
437
438   objMap[GroupPoints->LineEdit2->text()] = myAxis;
439
440   addSubshapesToFather( objMap );
441 }