Salome HOME
0019050 Test integration
[modules/geom.git] / src / OperationGUI / OperationGUI_PartitionDlg.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   : OperationGUI_PartitionDlg.cxx
23 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
24 //
25
26 #include "OperationGUI_PartitionDlg.h"
27
28 #include <DlgRef.h>
29 #include <GeometryGUI.h>
30 #include <GEOMBase.h>
31
32 #include <GEOMImpl_Types.hxx>
33
34 #include <SUIT_Desktop.h>
35 #include <SUIT_Session.h>
36 #include <SUIT_ResourceMgr.h>
37 #include <SalomeApp_Application.h>
38 #include <LightApp_SelectionMgr.h>
39
40 //=================================================================================
41 // class    : OperationGUI_PartitionDlg()
42 // purpose  : Constructs a OperationGUI_PartitionDlg which is a child of 'parent', with the 
43 //            name 'name' and widget flags set to 'f'.
44 //            The dialog will by default be modeless, unless you set 'modal' to
45 //            TRUE to construct a modal dialog.
46 //=================================================================================
47 OperationGUI_PartitionDlg::OperationGUI_PartitionDlg( GeometryGUI* theGeometryGUI, QWidget* parent )
48   : GEOMBase_Skeleton( theGeometryGUI, parent, false )
49 {
50   SUIT_ResourceMgr* aResMgr = myGeomGUI->getApp()->resourceMgr();
51   QPixmap image0( aResMgr->loadPixmap( "GEOM", tr( "ICON_DLG_PARTITION" ) ) );
52   QPixmap image1( aResMgr->loadPixmap( "GEOM", tr( "ICON_DLG_PARTITION_PLANE" ) ) );
53   QPixmap image2( aResMgr->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
54
55   setWindowTitle( tr( "GEOM_PARTITION_TITLE" ) );
56
57   /***************************************************************/
58   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_PARTITION" ) );
59   mainFrame()->RadioButton1->setIcon( image0 );
60   mainFrame()->RadioButton2->setIcon( image1 );
61   mainFrame()->RadioButton3->setAttribute( Qt::WA_DeleteOnClose );
62   mainFrame()->RadioButton3->close();
63
64   // Full partition (contains half-space partition)
65   GroupPoints = new DlgRef_2Sel1List1Check( centralWidget() );
66   GroupPoints->GroupBox1->setTitle( tr( "GEOM_PARTITION" ) );
67   GroupPoints->TextLabel1->setText( tr( "GEOM_OBJECTS" ) );
68   GroupPoints->TextLabel2->setText( tr( "GEOM_TOOL_OBJECT" ) );
69   GroupPoints->TextLabel3->setText( tr( "GEOM_RECONSTRUCTION_LIMIT" ) );
70   GroupPoints->PushButton1->setIcon( image2 );
71   GroupPoints->PushButton2->setIcon( image2 );
72   GroupPoints->LineEdit1->setReadOnly( true );
73   GroupPoints->LineEdit2->setReadOnly( true );
74   GroupPoints->LineEdit1->setEnabled(true);
75   GroupPoints->LineEdit2->setEnabled(false);
76   GroupPoints->CheckButton1->setText( tr( "GEOM_KEEP_NONLIMIT_SHAPES" ) );
77
78   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
79   layout->setMargin( 0 ); layout->setSpacing( 6 );
80   layout->addWidget( GroupPoints );
81
82   /***************************************************************/
83
84   setHelpFileName( "partition_page.html" );
85  
86   Init();
87 }
88
89
90 //=================================================================================
91 // function : ~OperationGUI_PartitionDlg()
92 // purpose  : Destroys the object and frees any allocated resources
93 //=================================================================================
94 OperationGUI_PartitionDlg::~OperationGUI_PartitionDlg()
95 {
96   // no need to delete child widgets, Qt does it all for us
97 }
98
99 void OperationGUI_PartitionDlg::SetListMaterials( GEOM::ListOfLong ListMaterials )
100 {
101   myListMaterials = ListMaterials; 
102 }
103   
104 GEOM::ListOfLong OperationGUI_PartitionDlg::GetListMaterials()
105
106   return myListMaterials; 
107 }
108
109 //=================================================================================
110 // function : Init()
111 // purpose  :
112 //=================================================================================
113 void OperationGUI_PartitionDlg::Init()
114 {
115   /* type for sub shape selection */
116   GroupPoints->ComboBox1->addItem( tr( "GEOM_RECONSTRUCTION_LIMIT_SOLID" ) );
117   GroupPoints->ComboBox1->addItem( tr( "GEOM_RECONSTRUCTION_LIMIT_SHELL" ) );
118   GroupPoints->ComboBox1->addItem( tr( "GEOM_RECONSTRUCTION_LIMIT_FACE" ) );
119   GroupPoints->ComboBox1->addItem( tr( "GEOM_RECONSTRUCTION_LIMIT_WIRE" ) );
120   GroupPoints->ComboBox1->addItem( tr( "GEOM_RECONSTRUCTION_LIMIT_EDGE" ) );
121   GroupPoints->ComboBox1->addItem( tr( "GEOM_RECONSTRUCTION_LIMIT_VERTEX" ) );
122   GroupPoints->CheckButton1->setChecked( false );
123   
124   mainFrame()->GroupBoxPublish->show();
125
126   /* signals and slots connections */
127   connect( buttonOk(),    SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
128   connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
129
130   connect( this, SIGNAL( constructorsClicked( int ) ), this, SLOT( ConstructorsClicked( int ) ) );
131   
132   connect( GroupPoints->PushButton1, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
133   connect( GroupPoints->PushButton2, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
134   
135   connect( GroupPoints->LineEdit1, SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
136   connect( GroupPoints->LineEdit2, SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
137   
138   connect( GroupPoints->ComboBox1, SIGNAL( activated( int ) ), this, SLOT( ComboTextChanged() ) );
139
140   connect( myGeomGUI->getApp()->selectionMgr(),
141            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
142   
143   initName( tr( "GEOM_PARTITION" ) );
144
145   ConstructorsClicked( 0 );
146   GroupPoints->PushButton1->click();
147 }
148
149
150 //=================================================================================
151 // function : ConstructorsClicked()
152 // purpose  : Radio button management
153 //=================================================================================
154 void OperationGUI_PartitionDlg::ConstructorsClicked( int constructorId )
155 {
156   disconnect( myGeomGUI->getApp()->selectionMgr(), 0, this, 0 );
157   globalSelection();
158   
159   myListShapes.length( 0 );
160   myListTools.length( 0 );  
161   myListKeepInside.length( 0 );
162   myListRemoveInside.length( 0 );
163   myListMaterials.length( 0 );
164   
165   switch ( constructorId ) {
166   case 0: /*Full partition */
167     GroupPoints->GroupBox1->setTitle( tr( "GEOM_PARTITION" ) );
168     GroupPoints->TextLabel2->setText( tr( "GEOM_TOOL_OBJECT" ) );
169     GroupPoints->TextLabel3->show();
170     GroupPoints->ComboBox1->show();
171     GroupPoints->ComboBox1->setCurrentIndex( 0 );
172     GroupPoints->CheckButton1->show();
173     GroupPoints->PushButton1->setDown( true );
174     GroupPoints->PushButton2->setDown( false );
175     GroupPoints->LineEdit1->setEnabled(true);
176     GroupPoints->LineEdit2->setEnabled(false);
177     break;
178   case 1: /*Half-space partition */
179     GroupPoints->GroupBox1->setTitle( tr( "GEOM_PARTITION_HALFSPACE" ) );
180     GroupPoints->TextLabel3->hide();
181     GroupPoints->ComboBox1->hide();
182     GroupPoints->TextLabel2->setText( tr( "GEOM_PLANE" ) );
183     GroupPoints->CheckButton1->hide();
184     GroupPoints->PushButton1->setDown( true );
185     GroupPoints->LineEdit1->setEnabled(true);
186     break;
187   } 
188
189   myEditCurrentArgument = GroupPoints->LineEdit1;
190   GroupPoints->LineEdit1->clear();
191   GroupPoints->LineEdit2->clear();
192
193   qApp->processEvents();
194   updateGeometry();
195   resize( minimumSize() );
196
197   myEditCurrentArgument->setFocus();
198   connect( myGeomGUI->getApp()->selectionMgr(), 
199            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
200 }
201
202
203 //=================================================================================
204 // function : ClickOnOk()
205 // purpose  :
206 //=================================================================================
207 void OperationGUI_PartitionDlg::ClickOnOk()
208 {
209   if ( ClickOnApply() )
210     ClickOnCancel();
211 }
212
213
214 //=================================================================================
215 // function : ClickOnApply()
216 // purpose  :
217 //=================================================================================
218 bool OperationGUI_PartitionDlg::ClickOnApply()
219 {
220   if ( !onAccept() )
221     return false;
222   
223   initName();
224   ConstructorsClicked( getConstructorId() );
225   return true;
226 }
227
228
229 //=================================================================================
230 // function : SelectionIntoArgument()
231 // purpose  : Called when selection as changed or other case
232 //=================================================================================
233 void OperationGUI_PartitionDlg::SelectionIntoArgument()
234 {
235   myEditCurrentArgument->setText( "" );
236   QString aString = "";
237   
238   int nbSel = GEOMBase::GetNameOfSelectedIObjects( selectedIO(), aString, true );
239     
240   if ( nbSel < 1 ) {
241     if ( myEditCurrentArgument == GroupPoints->LineEdit1 ) {
242       myListShapes.length( 0 );
243       myListMaterials.length( 0 );
244     }
245     else if ( myEditCurrentArgument == GroupPoints->LineEdit2 )
246       myListTools.length( 0 );
247   }
248   
249   // One and only one plane can be selected
250   
251   if ( getConstructorId() == 1 && 
252        myEditCurrentArgument == GroupPoints->LineEdit2 && 
253        nbSel != 1 ) {
254     myListTools.length( 0 );
255     return;
256   }
257   
258   if ( myEditCurrentArgument == GroupPoints->LineEdit1 ) {
259     GEOMBase::ConvertListOfIOInListOfGO( selectedIO(), myListShapes, true );
260     myListMaterials.length( 0 );
261     if ( !myListShapes.length() )
262       return;
263   }
264   else if ( myEditCurrentArgument == GroupPoints->LineEdit2 ) {
265     GEOMBase::ConvertListOfIOInListOfGO( selectedIO(), myListTools, true );
266     if ( !myListTools.length() )
267       return;
268   }
269   
270   myEditCurrentArgument->setText( aString );
271 }
272
273
274 //=================================================================================
275 // function : SetEditCurrentArgument()
276 // purpose  :
277 //=================================================================================
278 void OperationGUI_PartitionDlg::SetEditCurrentArgument()
279 {
280   QPushButton* send = (QPushButton*)sender();
281   
282   if ( send == GroupPoints->PushButton1 ) {
283     myEditCurrentArgument = GroupPoints->LineEdit1;
284     GroupPoints->PushButton2->setDown(false);
285     GroupPoints->LineEdit1->setEnabled(true);
286     GroupPoints->LineEdit2->setEnabled(false);
287   }
288   else if ( send == GroupPoints->PushButton2 ) {
289     myEditCurrentArgument = GroupPoints->LineEdit2;
290     GroupPoints->PushButton1->setDown(false);
291     GroupPoints->LineEdit1->setEnabled(false);
292     GroupPoints->LineEdit2->setEnabled(true);
293     if ( getConstructorId() == 1 )
294       globalSelection( GEOM_PLANE  );
295   }
296  
297   globalSelection( GEOM_ALLSHAPES );
298       
299   myEditCurrentArgument->setFocus();
300   SelectionIntoArgument();
301   send->setDown(true);
302 }
303
304
305 //=================================================================================
306 // function : LineEditReturnPressed()
307 // purpose  :
308 //=================================================================================
309 void OperationGUI_PartitionDlg::LineEditReturnPressed()
310 {
311   QLineEdit* send = (QLineEdit*)sender();
312
313   if ( send == GroupPoints->LineEdit1 || 
314        send == GroupPoints->LineEdit2 ) {
315       myEditCurrentArgument = send;
316       GEOMBase_Skeleton::LineEditReturnPressed();
317   }
318 }
319
320
321 //=================================================================================
322 // function : ActivateThisDialog()
323 // purpose  :
324 //=================================================================================
325 void OperationGUI_PartitionDlg::ActivateThisDialog()
326 {
327   GEOMBase_Skeleton::ActivateThisDialog();
328   connect( myGeomGUI->getApp()->selectionMgr(), 
329            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
330
331   ConstructorsClicked( getConstructorId() ); 
332 }
333
334
335 //=================================================================================
336 // function : enterEvent()
337 // purpose  :
338 //=================================================================================
339 void OperationGUI_PartitionDlg::enterEvent( QEvent* )
340 {
341   if ( !mainFrame()->GroupConstructors->isEnabled() )
342     this->ActivateThisDialog();
343 }
344
345
346 //=================================================================================
347 // function : createOperation
348 // purpose  :
349 //=================================================================================
350 GEOM::GEOM_IOperations_ptr OperationGUI_PartitionDlg::createOperation()
351 {
352   return getGeomEngine()->GetIBooleanOperations( getStudyId() );
353 }
354
355
356 //=================================================================================
357 // function : isValid
358 // purpose  :
359 //=================================================================================
360 bool OperationGUI_PartitionDlg::isValid( QString& )
361 {
362   return ( myListShapes.length()     || myListTools.length() ||
363            myListKeepInside.length() || myListRemoveInside.length() );
364 }
365
366
367 //=================================================================================
368 // function : execute
369 // purpose  :
370 //=================================================================================
371 bool OperationGUI_PartitionDlg::execute( ObjectList& objects )
372 {
373   bool res = false;
374
375   GEOM::GEOM_Object_var anObj;
376   QString msg;
377
378   int aLimit = GetLimit();
379   int aConstructorId = getConstructorId();
380   int aKeepNonlimitShapes = 0;
381
382   if ( aConstructorId == 1 ) {
383     aLimit = GEOM::SHAPE;
384   }
385   else {
386     if ( GroupPoints->CheckButton1->isChecked() ) {
387       aKeepNonlimitShapes = 1;
388     }
389     else {
390       aKeepNonlimitShapes = 0;
391     }
392   }
393
394   if ( isValid( msg ) ) {
395     anObj = GEOM::GEOM_IBooleanOperations::_narrow( getOperation() )->
396       MakePartition( myListShapes, myListTools,
397                      myListKeepInside, myListRemoveInside,
398                      aLimit, false, myListMaterials, aKeepNonlimitShapes );
399     res = true;
400   }
401
402   if ( !anObj->_is_nil() )
403     objects.push_back( anObj._retn() );
404
405   return res;
406 }
407
408 //=================================================================================
409 // function : restoreSubShapes
410 // purpose  :
411 //=================================================================================
412 void OperationGUI_PartitionDlg::restoreSubShapes( SALOMEDS::Study_ptr   theStudy,
413                                                   SALOMEDS::SObject_ptr theSObject )
414 {
415   if ( mainFrame()->CheckBoxRestoreSS->isChecked() ) {
416     // empty list of arguments means that all arguments should be restored
417     getGeomEngine()->RestoreSubShapesSO( theStudy, theSObject, GEOM::ListOfGO(),
418                                          /*theFindMethod=*/GEOM::FSM_GetInPlaceByHistory,
419                                          /*theInheritFirstArg=*/myListShapes.length() == 1 ); // ? false
420   }
421 }
422
423 //=======================================================================
424 //function : ComboTextChanged
425 //purpose  : 
426 //=======================================================================
427 void OperationGUI_PartitionDlg::ComboTextChanged()
428 {
429   //bool IsEnabled = GroupPoints->ComboBox1->currentItem() < 3;
430   //GroupPoints->LineEdit3->setEnabled(IsEnabled);
431   //GroupPoints->LineEdit4->setEnabled(IsEnabled);
432   //GroupPoints->TextLabel4->setEnabled(IsEnabled);
433   //GroupPoints->TextLabel5->setEnabled(IsEnabled);
434   //GroupPoints->PushButton3->setEnabled(IsEnabled);
435   //GroupPoints->PushButton4->setEnabled(IsEnabled);
436 }
437
438 //=================================================================================
439 // function : GetLimit()
440 // purpose  : 
441 //=================================================================================
442 int OperationGUI_PartitionDlg::GetLimit() const
443 {
444   int aLimit = GroupPoints->ComboBox1->currentIndex();
445
446   switch ( aLimit ) {
447   case 0:  aLimit = GEOM::SOLID ; break;
448   case 1:  aLimit = GEOM::SHELL ; break;
449   case 2:  aLimit = GEOM::FACE  ; break;
450   case 3:  aLimit = GEOM::WIRE  ; break;
451   case 4:  aLimit = GEOM::EDGE  ; break;
452   case 5:  aLimit = GEOM::VERTEX; break;
453   default: aLimit = GEOM::SHAPE ;
454   }
455
456   return aLimit;
457 }