]> SALOME platform Git repositories - modules/geom.git/blob - src/OperationGUI/OperationGUI_PartitionDlg.cxx
Salome HOME
0019050: EDF 521 (For GEOM/BasicGUI): Improve selection process in the dialogs
[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     myGeomGUI->getApp()->selectionMgr()->clearSelected(); //clear prewious selection
290     myEditCurrentArgument = GroupPoints->LineEdit2;
291     GroupPoints->PushButton1->setDown(false);
292     GroupPoints->LineEdit1->setEnabled(false);
293     GroupPoints->LineEdit2->setEnabled(true);
294     if ( getConstructorId() == 1 )
295       globalSelection( GEOM_PLANE  );
296   }
297  
298   globalSelection( GEOM_ALLSHAPES );
299       
300   myEditCurrentArgument->setFocus();
301   SelectionIntoArgument();
302   send->setDown(true);
303 }
304
305
306 //=================================================================================
307 // function : LineEditReturnPressed()
308 // purpose  :
309 //=================================================================================
310 void OperationGUI_PartitionDlg::LineEditReturnPressed()
311 {
312   QLineEdit* send = (QLineEdit*)sender();
313
314   if ( send == GroupPoints->LineEdit1 || 
315        send == GroupPoints->LineEdit2 ) {
316       myEditCurrentArgument = send;
317       GEOMBase_Skeleton::LineEditReturnPressed();
318   }
319 }
320
321
322 //=================================================================================
323 // function : ActivateThisDialog()
324 // purpose  :
325 //=================================================================================
326 void OperationGUI_PartitionDlg::ActivateThisDialog()
327 {
328   GEOMBase_Skeleton::ActivateThisDialog();
329   connect( myGeomGUI->getApp()->selectionMgr(), 
330            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
331
332   ConstructorsClicked( getConstructorId() ); 
333 }
334
335
336 //=================================================================================
337 // function : enterEvent()
338 // purpose  :
339 //=================================================================================
340 void OperationGUI_PartitionDlg::enterEvent( QEvent* )
341 {
342   if ( !mainFrame()->GroupConstructors->isEnabled() )
343     this->ActivateThisDialog();
344 }
345
346
347 //=================================================================================
348 // function : createOperation
349 // purpose  :
350 //=================================================================================
351 GEOM::GEOM_IOperations_ptr OperationGUI_PartitionDlg::createOperation()
352 {
353   return getGeomEngine()->GetIBooleanOperations( getStudyId() );
354 }
355
356
357 //=================================================================================
358 // function : isValid
359 // purpose  :
360 //=================================================================================
361 bool OperationGUI_PartitionDlg::isValid( QString& )
362 {
363   return ( myListShapes.length()     || myListTools.length() ||
364            myListKeepInside.length() || myListRemoveInside.length() );
365 }
366
367
368 //=================================================================================
369 // function : execute
370 // purpose  :
371 //=================================================================================
372 bool OperationGUI_PartitionDlg::execute( ObjectList& objects )
373 {
374   bool res = false;
375
376   GEOM::GEOM_Object_var anObj;
377   QString msg;
378
379   int aLimit = GetLimit();
380   int aConstructorId = getConstructorId();
381   int aKeepNonlimitShapes = 0;
382
383   if ( aConstructorId == 1 ) {
384     aLimit = GEOM::SHAPE;
385   }
386   else {
387     if ( GroupPoints->CheckButton1->isChecked() ) {
388       aKeepNonlimitShapes = 1;
389     }
390     else {
391       aKeepNonlimitShapes = 0;
392     }
393   }
394
395   if ( isValid( msg ) ) {
396     anObj = GEOM::GEOM_IBooleanOperations::_narrow( getOperation() )->
397       MakePartition( myListShapes, myListTools,
398                      myListKeepInside, myListRemoveInside,
399                      aLimit, false, myListMaterials, aKeepNonlimitShapes );
400     res = true;
401   }
402
403   if ( !anObj->_is_nil() )
404     objects.push_back( anObj._retn() );
405
406   return res;
407 }
408
409 //=================================================================================
410 // function : restoreSubShapes
411 // purpose  :
412 //=================================================================================
413 void OperationGUI_PartitionDlg::restoreSubShapes( SALOMEDS::Study_ptr   theStudy,
414                                                   SALOMEDS::SObject_ptr theSObject )
415 {
416   if ( mainFrame()->CheckBoxRestoreSS->isChecked() ) {
417     // empty list of arguments means that all arguments should be restored
418     getGeomEngine()->RestoreSubShapesSO( theStudy, theSObject, GEOM::ListOfGO(),
419                                          /*theFindMethod=*/GEOM::FSM_GetInPlaceByHistory,
420                                          /*theInheritFirstArg=*/myListShapes.length() == 1 ); // ? false
421   }
422 }
423
424 //=======================================================================
425 //function : ComboTextChanged
426 //purpose  : 
427 //=======================================================================
428 void OperationGUI_PartitionDlg::ComboTextChanged()
429 {
430   //bool IsEnabled = GroupPoints->ComboBox1->currentItem() < 3;
431   //GroupPoints->LineEdit3->setEnabled(IsEnabled);
432   //GroupPoints->LineEdit4->setEnabled(IsEnabled);
433   //GroupPoints->TextLabel4->setEnabled(IsEnabled);
434   //GroupPoints->TextLabel5->setEnabled(IsEnabled);
435   //GroupPoints->PushButton3->setEnabled(IsEnabled);
436   //GroupPoints->PushButton4->setEnabled(IsEnabled);
437 }
438
439 //=================================================================================
440 // function : GetLimit()
441 // purpose  : 
442 //=================================================================================
443 int OperationGUI_PartitionDlg::GetLimit() const
444 {
445   int aLimit = GroupPoints->ComboBox1->currentIndex();
446
447   switch ( aLimit ) {
448   case 0:  aLimit = GEOM::SOLID ; break;
449   case 1:  aLimit = GEOM::SHELL ; break;
450   case 2:  aLimit = GEOM::FACE  ; break;
451   case 3:  aLimit = GEOM::WIRE  ; break;
452   case 4:  aLimit = GEOM::EDGE  ; break;
453   case 5:  aLimit = GEOM::VERTEX; break;
454   default: aLimit = GEOM::SHAPE ;
455   }
456
457   return aLimit;
458 }