Salome HOME
Mantis issue 0021071: Regression in GetInPlace. A fix by PKV on Partition error.
[modules/geom.git] / src / BasicGUI / BasicGUI_LineDlg.cxx
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : BasicGUI_LineDlg.cxx
25 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
26 //
27 #include "BasicGUI_LineDlg.h"
28
29 #include <DlgRef.h>
30 #include <GeometryGUI.h>
31 #include <GEOMBase.h>
32
33 #include <SUIT_ResourceMgr.h>
34 #include <SUIT_Session.h>
35 #include <SalomeApp_Application.h>
36 #include <LightApp_SelectionMgr.h>
37
38 #include <TopoDS_Shape.hxx>
39 #include <TopoDS.hxx>
40 #include <TopExp.hxx>
41 #include <TColStd_IndexedMapOfInteger.hxx>
42 #include <TopTools_IndexedMapOfShape.hxx>
43
44 #include <GEOMImpl_Types.hxx>
45
46 //=================================================================================
47 // class    : BasicGUI_LineDlg()
48 // purpose  : Constructs a BasicGUI_LineDlg 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_LineDlg::BasicGUI_LineDlg( 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_LINE_2P" ) ) );
58   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
59   QPixmap image2( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_LINE_2F" ) ) );
60
61   setWindowTitle( tr( "GEOM_LINE_TITLE" ) );
62  
63   /***************************************************************/
64   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_LINE" ) );
65   mainFrame()->RadioButton1->setIcon( image0 );
66   mainFrame()->RadioButton2->setIcon( image2 );
67   mainFrame()->RadioButton3->setAttribute( Qt::WA_DeleteOnClose );
68   mainFrame()->RadioButton3->close();
69
70   GroupPoints = new DlgRef_2Sel( centralWidget() );
71
72   GroupPoints->GroupBox1->setTitle( tr( "GEOM_POINTS" ) );
73   GroupPoints->TextLabel1->setText( tr( "GEOM_POINT_I" ).arg( 1 ) );
74   GroupPoints->TextLabel2->setText( tr( "GEOM_POINT_I" ).arg( 2 ) );
75   GroupPoints->PushButton1->setIcon( image1 );
76   GroupPoints->PushButton2->setIcon( image1 );
77   GroupPoints->LineEdit1->setReadOnly( true );
78   GroupPoints->LineEdit2->setReadOnly( true );
79   GroupPoints->LineEdit1->setEnabled( true );
80   GroupPoints->LineEdit2->setEnabled( false );
81
82   GroupFaces = new DlgRef_2Sel( centralWidget() );
83   GroupFaces->GroupBox1->setTitle( tr( "GEOM_FACES" ) );
84   GroupFaces->TextLabel1->setText( tr( "GEOM_FACE_I" ).arg( "1" ) );
85   GroupFaces->TextLabel2->setText( tr( "GEOM_FACE_I" ).arg( "2" ) );
86   GroupFaces->PushButton1->setIcon( image1 );
87   GroupFaces->PushButton2->setIcon( image1 );
88   GroupFaces->LineEdit1->setReadOnly( true );
89   GroupFaces->LineEdit2->setReadOnly( true );
90   GroupFaces->LineEdit1->setEnabled( true );
91   GroupFaces->LineEdit2->setEnabled( false );
92
93   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
94   layout->setMargin( 0 ); layout->setSpacing( 6 );
95   layout->addWidget( GroupPoints );
96   layout->addWidget( GroupFaces );
97
98   /***************************************************************/
99
100   setHelpFileName( "create_line_page.html" );
101
102   Init();
103 }
104
105
106 //=================================================================================
107 // function : ~BasicGUI_LineDlg()
108 // purpose  : Destroys the object and frees any allocated resources
109 //=================================================================================
110 BasicGUI_LineDlg::~BasicGUI_LineDlg()
111 {  
112 }
113
114
115 //=================================================================================
116 // function : Init()
117 // purpose  :
118 //=================================================================================
119 void BasicGUI_LineDlg::Init()
120 {
121   /* init variables */
122   myEditCurrentArgument = GroupPoints->LineEdit1;
123   myPoint1 = myPoint2 = GEOM::GEOM_Object::_nil();
124   globalSelection(); // close local contexts, if any
125   localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
126   GroupPoints->PushButton1->setDown(true);
127   
128         
129   /* signals and slots connections */
130   connect( myGeomGUI, SIGNAL( SignalDeactivateActiveDialog() ), this, SLOT( DeactivateActiveDialog() ) );
131   connect( myGeomGUI, SIGNAL( SignalCloseAllDialogs() ),        this, SLOT( ClickOnCancel() ) );
132
133   connect( this,           SIGNAL( constructorsClicked( int ) ), this, SLOT( ConstructorsClicked( int ) ) );
134
135   connect( buttonOk(),     SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
136   connect( buttonApply(),  SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
137
138   connect( GroupPoints->PushButton1, SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
139   connect( GroupPoints->PushButton2, SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
140   connect( GroupFaces->PushButton1,  SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
141   connect( GroupFaces->PushButton2,  SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
142
143   connect( GroupPoints->LineEdit1,   SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
144   connect( GroupPoints->LineEdit2,   SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
145   connect( GroupFaces->LineEdit1,    SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
146   connect( GroupFaces->LineEdit2,    SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
147
148   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
149            this, SLOT( SelectionIntoArgument() ) );
150   
151   initName( tr( "GEOM_LINE" ) );
152
153   ConstructorsClicked( 0 );
154 }
155
156
157 //=================================================================================
158 // function : ClickOnOk()
159 // purpose  :
160 //=================================================================================
161 void BasicGUI_LineDlg::ClickOnOk()
162 {
163   if ( ClickOnApply() )
164     ClickOnCancel();
165 }
166
167 //=================================================================================
168 // function : ClickOnApply()
169 // purpose  :
170 //=================================================================================
171 bool BasicGUI_LineDlg::ClickOnApply()
172 {
173   if ( !onAccept() )
174     return false;
175   
176   initName();
177
178   myEditCurrentArgument->setText( "" );
179   ConstructorsClicked( getConstructorId() );
180
181   return true;
182 }
183
184 //=================================================================================
185 // function : ConstructorsClicked()
186 // purpose  : Radio button management
187 //=================================================================================
188 void BasicGUI_LineDlg::ConstructorsClicked( int constructorId )
189 {  
190   switch ( constructorId ) {
191   case 0:
192     {
193       globalSelection(); // close local contexts, if any
194       localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
195       
196       myEditCurrentArgument = GroupPoints->LineEdit1;
197       myEditCurrentArgument->setText( "" );
198       GroupPoints->LineEdit2->setText( "" );
199       myPoint1 = GEOM::GEOM_Object::_nil();
200       myPoint2 = GEOM::GEOM_Object::_nil();
201       GroupPoints->PushButton1->setDown(true);
202       GroupPoints->PushButton2->setDown(false);
203       GroupPoints->LineEdit1->setEnabled(true);
204       GroupPoints->LineEdit2->setEnabled(false);
205       GroupPoints->show();
206       GroupFaces->hide();
207       break;
208     }
209   case 1:
210     {
211       globalSelection(); // close local contexts, if any
212       localSelection( GEOM::GEOM_Object::_nil(), TopAbs_FACE );
213
214       myEditCurrentArgument = GroupFaces->LineEdit1;
215       myEditCurrentArgument->setText("");
216       myFace1 = GEOM::GEOM_Object::_nil();
217       myFace2 = GEOM::GEOM_Object::_nil();
218       GroupFaces->PushButton1->setDown(true);
219       GroupFaces->PushButton2->setDown(false);
220       GroupFaces->LineEdit1->setEnabled(true);
221       GroupFaces->LineEdit2->setEnabled(false);
222       GroupPoints->hide();
223       GroupFaces->show();
224       break;
225     }
226   }
227
228   qApp->processEvents();
229   updateGeometry();
230   resize( minimumSizeHint() );
231   SelectionIntoArgument();
232 }
233
234 //=================================================================================
235 // function : SelectionIntoArgument()
236 // purpose  : Called when selection as changed or other case
237 //=================================================================================
238 void BasicGUI_LineDlg::SelectionIntoArgument()
239 {
240   myEditCurrentArgument->setText( "" );
241
242   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
243   SALOME_ListIO aSelList;
244   aSelMgr->selectedObjects(aSelList);
245
246   if (aSelList.Extent() != 1) {
247     if      (myEditCurrentArgument == GroupPoints->LineEdit1) myPoint1 = GEOM::GEOM_Object::_nil();
248     else if (myEditCurrentArgument == GroupPoints->LineEdit2) myPoint2 = GEOM::GEOM_Object::_nil();
249     else if (myEditCurrentArgument == GroupFaces->LineEdit1)  myFace1  = GEOM::GEOM_Object::_nil();
250     else if (myEditCurrentArgument == GroupFaces->LineEdit2)  myFace2  = GEOM::GEOM_Object::_nil();
251     displayPreview();
252     return;
253   }
254
255   Standard_Boolean aRes = Standard_False;
256   GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject(aSelList.First(), aRes);
257   if ( !CORBA::is_nil( aSelectedObject ) && aRes ) {
258     QString aName = GEOMBase::GetName( aSelectedObject );
259     TopAbs_ShapeEnum aNeedType = TopAbs_VERTEX;
260     if ( myEditCurrentArgument == GroupFaces->LineEdit1 ||
261          myEditCurrentArgument == GroupFaces->LineEdit2 )
262       aNeedType = TopAbs_FACE;
263     
264     TopoDS_Shape aShape;
265     if ( GEOMBase::GetShape( aSelectedObject, aShape, TopAbs_SHAPE ) && !aShape.IsNull() ) {
266       TColStd_IndexedMapOfInteger aMap;
267       aSelMgr->GetIndexes(aSelList.First(), aMap);
268       if ( aMap.Extent() == 1 ) { // Local Selection
269         int anIndex = aMap( 1 );
270         if ( aNeedType == TopAbs_FACE )
271           aName += QString( ":face_%1" ).arg( anIndex );
272         else
273           aName += QString( ":vertex_%1" ).arg( anIndex );
274
275         //Find SubShape Object in Father
276         GEOM::GEOM_Object_var aFindedObject = GEOMBase_Helper::findObjectInFather( aSelectedObject, aName );
277
278         if ( aFindedObject->_is_nil() ) { // Object not found in study
279           GEOM::GEOM_IShapesOperations_var aShapesOp = getGeomEngine()->GetIShapesOperations( getStudyId() );
280           aSelectedObject = aShapesOp->GetSubShape( aSelectedObject, anIndex );
281         }
282         else {
283           aSelectedObject = aFindedObject; // get Object from study
284         }
285       }
286       else { // Global Selection
287         if ( aShape.ShapeType() != aNeedType ) {
288           aSelectedObject = GEOM::GEOM_Object::_nil();
289           aName = "";
290         }
291       }
292     }
293
294     myEditCurrentArgument->setText( aName );
295
296     if (!aSelectedObject->_is_nil()) { // clear selection if something selected
297       globalSelection();
298       localSelection( GEOM::GEOM_Object::_nil(), aNeedType );      
299     }
300
301     if ( myEditCurrentArgument == GroupPoints->LineEdit1 ) {
302       myPoint1 = aSelectedObject;
303       if ( !myPoint1->_is_nil() && myPoint2->_is_nil() )
304         GroupPoints->PushButton2->click();
305     }
306     else if ( myEditCurrentArgument == GroupPoints->LineEdit2 ) {
307       myPoint2 = aSelectedObject;
308       if ( !myPoint2->_is_nil() && myPoint1->_is_nil() )
309         GroupPoints->PushButton1->click();
310     }
311     else if ( myEditCurrentArgument == GroupFaces->LineEdit1 ) {
312       myFace1 = aSelectedObject;
313       if ( !myFace1->_is_nil() && myFace2->_is_nil() )
314         GroupFaces->PushButton2->click();
315     }
316     else if ( myEditCurrentArgument == GroupFaces->LineEdit2 ) {
317       myFace2 = aSelectedObject;
318       if ( !myFace2->_is_nil() && myFace1->_is_nil() )
319         GroupFaces->PushButton1->click();      
320     }
321   }
322   
323   displayPreview();
324 }
325
326
327 //=================================================================================
328 // function : SetEditCurrentArgument()
329 // purpose  :
330 //=================================================================================
331 void BasicGUI_LineDlg::SetEditCurrentArgument()
332 {
333   QPushButton* send = (QPushButton*)sender();
334   if ( send == GroupPoints->PushButton1 ) {
335     myEditCurrentArgument = GroupPoints->LineEdit1;
336     GroupPoints->PushButton2->setDown(false);
337     GroupPoints->LineEdit1->setEnabled(true);
338     GroupPoints->LineEdit2->setEnabled(false);
339   }
340   else if ( send == GroupPoints->PushButton2 ) {
341     myEditCurrentArgument = GroupPoints->LineEdit2;
342     GroupPoints->PushButton1->setDown(false);
343     GroupPoints->LineEdit1->setEnabled(false);
344     GroupPoints->LineEdit2->setEnabled(true);
345   }
346   else if ( send == GroupFaces->PushButton1 ) {
347     myEditCurrentArgument = GroupFaces->LineEdit1;
348     GroupFaces->PushButton2->setDown(false);
349     GroupFaces->LineEdit1->setEnabled(true);
350     GroupFaces->LineEdit2->setEnabled(false);
351   }
352   else if ( send == GroupFaces->PushButton2 ) {
353     myEditCurrentArgument = GroupFaces->LineEdit2;
354     GroupFaces->PushButton1->setDown(false);
355     GroupFaces->LineEdit1->setEnabled(false);
356     GroupFaces->LineEdit2->setEnabled(true);
357   }
358
359   globalSelection(); // close local selection to clear it
360   TopAbs_ShapeEnum aNeedType = TopAbs_VERTEX;
361   if ( myEditCurrentArgument == GroupFaces->LineEdit1 || myEditCurrentArgument == GroupFaces->LineEdit2 )
362     aNeedType = TopAbs_FACE;
363   localSelection( GEOM::GEOM_Object::_nil(), aNeedType );
364
365   myEditCurrentArgument->setFocus();
366   //  SelectionIntoArgument();
367   send->setDown(true);
368   displayPreview();
369 }
370
371
372 //=================================================================================
373 // function : LineEditReturnPressed()
374 // purpose  :
375 //=================================================================================
376 void BasicGUI_LineDlg::LineEditReturnPressed()
377 {
378   QLineEdit* send = (QLineEdit*)sender();
379   if      ( send == GroupPoints->LineEdit1 ) myEditCurrentArgument = GroupPoints->LineEdit1;
380   else if ( send == GroupPoints->LineEdit2 ) myEditCurrentArgument = GroupPoints->LineEdit2;
381   else if ( send == GroupFaces->LineEdit1 )  myEditCurrentArgument = GroupFaces->LineEdit1;
382   else if ( send == GroupFaces->LineEdit2 )  myEditCurrentArgument = GroupFaces->LineEdit2;
383   else return;
384   GEOMBase_Skeleton::LineEditReturnPressed();
385 }
386
387
388 //=================================================================================
389 // function : ActivateThisDialog()
390 // purpose  :
391 //=================================================================================
392 void BasicGUI_LineDlg::ActivateThisDialog()
393 {
394   GEOMBase_Skeleton::ActivateThisDialog();
395   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
396            this, SLOT( SelectionIntoArgument() ) );
397
398   ConstructorsClicked( getConstructorId() );
399 }
400
401 //=================================================================================
402 // function : DeactivateActiveDialog()
403 // purpose  : public slot to deactivate if active
404 //=================================================================================
405 void BasicGUI_LineDlg::DeactivateActiveDialog()
406 {
407   GEOMBase_Skeleton::DeactivateActiveDialog();
408 }
409
410 //=================================================================================
411 // function : enterEvent()
412 // purpose  :
413 //=================================================================================
414 void BasicGUI_LineDlg::enterEvent( QEvent* )
415 {
416   if ( !mainFrame()->GroupConstructors->isEnabled() )
417     ActivateThisDialog();
418 }
419
420 //=================================================================================
421 // function : createOperation
422 // purpose  :
423 //=================================================================================
424 GEOM::GEOM_IOperations_ptr BasicGUI_LineDlg::createOperation()
425 {
426   return myGeomGUI->GetGeomGen()->GetIBasicOperations( getStudyId() );
427 }
428
429 //=================================================================================
430 // function : isValid
431 // purpose  :
432 //=================================================================================
433 bool BasicGUI_LineDlg::isValid( QString& msg )
434 {
435   const int id = getConstructorId();
436   if ( id == 0 )
437     return !myPoint1->_is_nil() && !myPoint2->_is_nil();
438   else if ( id == 1 )
439     return !myFace1->_is_nil() && !myFace2->_is_nil();
440   return false;
441 }
442
443 //=================================================================================
444 // function : execute
445 // purpose  :
446 //=================================================================================
447 bool BasicGUI_LineDlg::execute( ObjectList& objects )
448 {
449   bool res = false;
450   GEOM::GEOM_Object_var anObj;
451   GEOM::GEOM_IBasicOperations_var anOper = GEOM::GEOM_IBasicOperations::_narrow( getOperation() );
452   switch ( getConstructorId() ) {
453   case 0 :
454     anObj = anOper->MakeLineTwoPnt( myPoint1, myPoint2 );
455     res = true;
456     break;
457   case 1 :
458     anObj = anOper->MakeLineTwoFaces( myFace1, myFace2 );
459     res = true;
460     break;
461   }
462   
463   if ( !anObj->_is_nil() )
464     objects.push_back( anObj._retn() );
465
466   return res;
467 }
468
469 //=================================================================================
470 // function : addSubshapeToStudy
471 // purpose  : virtual method to add new SubObjects if local selection
472 //=================================================================================
473 void BasicGUI_LineDlg::addSubshapesToStudy()
474 {
475   QMap<QString, GEOM::GEOM_Object_var> objMap;
476   switch ( getConstructorId() ) {
477   case 0 :
478     objMap[GroupPoints->LineEdit1->text()] = myPoint1;
479     objMap[GroupPoints->LineEdit2->text()] = myPoint2;
480     break;
481   case 1 :
482     objMap[GroupFaces->LineEdit1->text()] = myFace1;
483     objMap[GroupFaces->LineEdit2->text()] = myFace2;
484     break;
485   }
486   addSubshapesToFather( objMap );
487 }