Salome HOME
7d18be61ff46c4f4bd011a496f0c0752be9b5b55
[modules/geom.git] / src / RepairGUI / RepairGUI_RemoveHolesDlg.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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : RepairGUI_RemoveHolesDlg.cxx
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 using namespace std;
30 #include "RepairGUI_RemoveHolesDlg.h"
31
32 #include "QAD_RightFrame.h"
33 #include "QAD_Desktop.h"
34 #include "QAD_MessageBox.h"
35
36 #include "GEOM_Displayer.h"
37 #include "OCCViewer_Viewer3d.h"
38 #include "SALOME_ListIteratorOfListIO.hxx"
39
40 #include "GEOMImpl_Types.hxx"
41
42 #include <TopAbs.hxx>
43
44
45 //=================================================================================
46 // class    : RepairGUI_RemoveHolesDlg()
47 // purpose  : Constructs a RepairGUI_RemoveHolesDlg  which is a child of 'parent', with the
48 //            name 'name' and widget flags set to 'f'.
49 //            The dialog will by default be modeless, unless you set 'modal' to
50 //            TRUE to construct a modal dialog.
51 //=================================================================================
52 RepairGUI_RemoveHolesDlg::RepairGUI_RemoveHolesDlg(QWidget* parent, const char* name, SALOME_Selection* Sel, bool modal, WFlags fl)
53   :GEOMBase_Skeleton(parent, name, Sel, modal, WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu)
54 {
55   QPixmap image0(QAD_Desktop::getResourceManager()->loadPixmap("GEOM",tr("ICON_DLG_SUPPRESS_HOLES")));
56   QPixmap image1(QAD_Desktop::getResourceManager()->loadPixmap("GEOM",tr("ICON_SELECT")));
57
58   setCaption(tr("GEOM_REMOVE_HOLES_TITLE"));
59
60   /***************************************************************/
61   GroupConstructors->setTitle(tr("GEOM_REMOVE_HOLES_TITLE"));
62   RadioButton1->setPixmap(image0);
63   RadioButton2->close(TRUE);
64   RadioButton3->close(TRUE);
65
66   GroupPoints = new DlgRef_1Sel_Ext(this, "GroupPoints");
67   GroupPoints->GroupBox1->setTitle(tr("GEOM_HOLES"));
68   GroupPoints->TextLabel1->setText(tr("GEOM_SELECTED_SHAPE"));
69   GroupPoints->PushButton1->setPixmap(image1);
70   GroupPoints->LineEdit1->setReadOnly( true );
71
72   Layout1->addWidget(GroupPoints, 1, 0);
73
74   myAllChk = new QCheckBox( tr( "GEOM_REMOVE_ALL_HOLES" ), GroupPoints->GroupBox1 );
75
76   QGridLayout* aSelectWiresLay = new QGridLayout( 0, 1, 1, 0, 6, "aSelectWiresLay");
77
78   mySelectWiresBtn = new QPushButton( GroupPoints->GroupBox1, "mySelectWiresBtn" );
79   mySelectWiresBtn->setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)0, (QSizePolicy::SizeType)0, 0, 0, mySelectWiresBtn->sizePolicy().hasHeightForWidth() ) );
80   mySelectWiresBtn->setText( trUtf8( "" ) );
81   mySelectWiresBtn->setPixmap(image1);
82
83   mySelectWiresEdt = new QLineEdit( GroupPoints->GroupBox1, "mySelectWiresEdt" );
84   mySelectWiresEdt->setReadOnly( true );
85
86   mySelectWiresLbl = new QLabel( tr( "GEOM_WIRES_TO_REMOVE" ), GroupPoints->GroupBox1, "TextLabel1" );
87   mySelectWiresLbl->setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)0, (QSizePolicy::SizeType)0, 0, 0, mySelectWiresLbl->sizePolicy().hasHeightForWidth() ) );
88
89   aSelectWiresLay->addWidget( mySelectWiresLbl, 0, 0 );
90         aSelectWiresLay->addWidget( mySelectWiresBtn, 0, 1 );
91   aSelectWiresLay->addWidget( mySelectWiresEdt, 0, 2 );
92   QSpacerItem* spacer = new QSpacerItem( 0, 16, QSizePolicy::Minimum, QSizePolicy::Expanding );
93   aSelectWiresLay->addItem( spacer, 1, 2 );
94
95   QGridLayout* aDetectLay = new QGridLayout( 0, 1, 1, 0, 6, "aDetectLay" );  
96         myFreeBoundBtn = new QPushButton( tr( "GEOM_DETECT" ), GroupPoints->GroupBox1 );
97   QLabel* aLbl = new QLabel( tr( "GEOM_FREE_BOUNDARIES" ), GroupPoints->GroupBox1 );
98   aDetectLay->addWidget( aLbl, 0, 0 );
99   aDetectLay->addWidget( myFreeBoundBtn, 0, 1 );
100   
101   GroupPoints->getGroupBoxLayout()->addMultiCellWidget( myAllChk, 1, 1, 0, 2 );
102   GroupPoints->getGroupBoxLayout()->addLayout( aSelectWiresLay, 2, 0 );
103   GroupPoints->getGroupBoxLayout()->addLayout( aDetectLay, 3, 0 );
104   /***************************************************************/
105
106   Init();
107 }
108
109
110 //=================================================================================
111 // function : ~RepairGUI_RemoveHolesDlg()
112 // purpose  : Destroys the object and frees any allocated resources
113 //=================================================================================
114 RepairGUI_RemoveHolesDlg::~RepairGUI_RemoveHolesDlg()
115 {
116 }
117
118
119 //=================================================================================
120 // function : Init()
121 // purpose  :
122 //=================================================================================
123 void RepairGUI_RemoveHolesDlg::Init()
124 {
125   /* init variables */
126   myEditCurrentArgument = GroupPoints->LineEdit1;
127   
128   myObject = GEOM::GEOM_Object::_nil();
129   myWiresInd = new GEOM::short_array();
130   myWiresInd->length( 0 );
131
132   myGeomGUI->SetState( 0 );
133   initSelection();
134
135   myClosed = -1;
136   myOpen = -1;
137   
138   /* signals and slots connections */
139   connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
140   connect(myGeomGUI, SIGNAL(SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
141   connect(myGeomGUI, SIGNAL(SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
142
143   connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
144   connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
145
146   connect(GroupPoints->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
147   connect(GroupPoints->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
148   connect(mySelectWiresBtn, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
149   connect(mySelectWiresEdt, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
150
151   connect(mySelection, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
152
153   connect( myAllChk, SIGNAL( clicked() ), this, SLOT( onRemoveAllClicked() ) );
154   connect( myFreeBoundBtn, SIGNAL(clicked()), this, SLOT(onDetect()) );
155 }
156
157
158 //=================================================================================
159 // function : ClickOnOk()
160 // purpose  : Same than click on apply but close this dialog.
161 //=================================================================================
162 void RepairGUI_RemoveHolesDlg::ClickOnOk()
163 {
164   if ( ClickOnApply() )
165     ClickOnCancel();
166 }
167
168
169
170 //=================================================================================
171 // function : ClickOnApply()
172 // purpose  :
173 //=================================================================================
174 bool RepairGUI_RemoveHolesDlg::ClickOnApply()
175 {
176   if ( !onAccept() )
177     return false;
178
179   myEditCurrentArgument = GroupPoints->LineEdit1;
180   myEditCurrentArgument->setText("");
181   mySelectWiresEdt->setText("");
182   myObject = GEOM::GEOM_Object::_nil();
183   myWiresInd->length( 0 );
184
185   initSelection();
186
187   return true;
188 }
189
190
191 //=================================================================================
192 // function : ClickOnCancel()
193 // purpose  :
194 //=================================================================================
195 void RepairGUI_RemoveHolesDlg::ClickOnCancel()
196 {
197   GEOMBase_Skeleton::ClickOnCancel();
198 }
199
200
201 //=================================================================================
202 // function : SelectionIntoArgument()
203 // purpose  : Called when selection
204 //=================================================================================
205 void RepairGUI_RemoveHolesDlg::SelectionIntoArgument()
206 {
207   erasePreview();
208   myEditCurrentArgument->setText("");
209   if ( myEditCurrentArgument == GroupPoints->LineEdit1 ) myObject = GEOM::GEOM_Object::_nil();
210   else if ( myEditCurrentArgument == mySelectWiresEdt ) myWiresInd->length( 0 );
211
212   if ( mySelection->IObjectCount() == 1 )
213   {
214     Handle(SALOME_InteractiveObject) anIO = mySelection->firstIObject();
215
216     if ( myEditCurrentArgument == GroupPoints->LineEdit1 )      // face selection
217     {
218       Standard_Boolean aRes;
219       myObject = GEOMBase::ConvertIOinGEOMObject( anIO, aRes );
220       if ( aRes )
221         myEditCurrentArgument->setText( GEOMBase::GetName( myObject ) );
222     }
223     else if ( myEditCurrentArgument == mySelectWiresEdt && !myAllChk->isChecked() )
224     {
225       TColStd_IndexedMapOfInteger aMap;
226       mySelection->GetIndex( anIO, aMap );
227       const int n = aMap.Extent();
228       myWiresInd->length( n );
229       for ( int i = 1; i <= n; i++ )
230         myWiresInd[i-1] = aMap( i );
231       if ( n )
232         myEditCurrentArgument->setText( QString::number( n ) + "_" + tr( "GEOM_WIRE" ) + tr( "_S_" ) );
233     }
234   }
235 }
236
237 //=================================================================================
238 // function : SetEditCurrentArgument()
239 // purpose  :
240 //=================================================================================
241 void RepairGUI_RemoveHolesDlg::SetEditCurrentArgument()
242 {
243   const QObject* send = sender();
244   if ( send == GroupPoints->PushButton1 )
245     myEditCurrentArgument = GroupPoints->LineEdit1; 
246   else if ( send == mySelectWiresBtn && !myObject->_is_nil() )
247     myEditCurrentArgument = mySelectWiresEdt;
248   if ( myEditCurrentArgument )
249   {
250     initSelection();
251     myEditCurrentArgument->setFocus();
252     SelectionIntoArgument();
253   }
254 }
255
256
257 //=================================================================================
258 // function : LineEditReturnPressed()
259 // purpose  :
260 //=================================================================================
261 void RepairGUI_RemoveHolesDlg::LineEditReturnPressed()
262 {
263   const QObject* send = sender();
264   if( send == GroupPoints->LineEdit1 || send == mySelectWiresEdt )
265   {
266     myEditCurrentArgument = (QLineEdit*)send;
267     GEOMBase_Skeleton::LineEditReturnPressed();
268   }
269 }
270
271
272 //=================================================================================
273 // function : DeactivateActiveDialog()
274 // purpose  :
275 //=================================================================================
276 void RepairGUI_RemoveHolesDlg::DeactivateActiveDialog()
277 {
278   myGeomGUI->SetState( -1 );
279   GEOMBase_Skeleton::DeactivateActiveDialog();
280 }
281
282
283 //=================================================================================
284 // function : ActivateThisDialog()
285 // purpose  :
286 //=================================================================================
287 void RepairGUI_RemoveHolesDlg::ActivateThisDialog()
288 {
289   GEOMBase_Skeleton::ActivateThisDialog();
290   connect(mySelection, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
291
292   myEditCurrentArgument = GroupPoints->LineEdit1;
293   myEditCurrentArgument->setText("");
294   mySelectWiresEdt->setText("");
295   myObject = GEOM::GEOM_Object::_nil();
296   myWiresInd->length( 0 );
297
298   myClosed = -1;
299   myOpen = -1;
300
301   myGeomGUI->SetState( 0 );
302   initSelection();
303 }
304
305
306 //=================================================================================
307 // function : enterEvent()
308 // purpose  : Mouse enter onto the dialog to activate it
309 //=================================================================================
310 void RepairGUI_RemoveHolesDlg::enterEvent(QEvent* e)
311 {
312   if ( !GroupConstructors->isEnabled() )
313     ActivateThisDialog();
314 }
315
316
317 //=================================================================================
318 // function : closeEvent()
319 // purpose  :
320 //=================================================================================
321 void RepairGUI_RemoveHolesDlg::closeEvent(QCloseEvent* e)
322 {
323   myGeomGUI->SetState( -1 );
324   GEOMBase_Skeleton::closeEvent( e );
325 }
326
327 //=================================================================================
328 // function : createOperation
329 // purpose  :
330 //=================================================================================
331 GEOM::GEOM_IOperations_ptr RepairGUI_RemoveHolesDlg::createOperation()
332 {
333   return getGeomEngine()->GetIHealingOperations( getStudyId() );
334 }
335
336 //=================================================================================
337 // function : isValid
338 // purpose  :
339 //=================================================================================
340 bool RepairGUI_RemoveHolesDlg::isValid( QString& msg )
341 {
342   myClosed = -1;
343   return !myObject->_is_nil() && ( IsPreview() || myAllChk->isChecked() || myWiresInd->length() );
344 }
345
346 //=================================================================================
347 // function : execute
348 // purpose  :
349 //=================================================================================
350 bool RepairGUI_RemoveHolesDlg::execute( ObjectList& objects )
351 {
352   bool aResult = false;
353   if ( IsPreview() ) // called from onDetect(): detect free boundary edges, highlight them (add to objects), display message dialog
354   {
355     GEOM::ListOfGO_var aClosed, anOpen;
356
357     aResult = GEOM::GEOM_IHealingOperations::_narrow( getOperation() )->GetFreeBoundary( myObject, aClosed, anOpen );
358
359     if ( aResult )
360     {
361       myClosed = aClosed->length();
362       myOpen = anOpen->length();
363       int i;
364       for ( i = 0; i < myClosed; i++ )
365         objects.push_back( aClosed[i]._retn() );
366       for ( i = 0; i < myOpen; i++ )
367         objects.push_back( anOpen[i]._retn() );
368     }
369     else
370       myClosed = -1;
371   }
372   else
373   {
374     GEOM::GEOM_Object_var anObj = GEOM::GEOM_IHealingOperations::_narrow( getOperation() )->FillHoles( myObject, myWiresInd );
375     aResult = !anObj->_is_nil();
376     if ( aResult )
377       objects.push_back( anObj._retn() );
378   }
379         
380   return aResult;
381 }
382
383 //=================================================================================
384 // function : onRemoveAllClicked
385 // purpose  :
386 //=================================================================================
387 void RepairGUI_RemoveHolesDlg::onRemoveAllClicked()
388 {
389   bool b = myAllChk->isOn();
390   mySelectWiresLbl->setEnabled( !b );
391   mySelectWiresBtn->setEnabled( !b );
392   mySelectWiresEdt->setEnabled( !b );
393   if ( b )
394   {
395     mySelectWiresEdt->setText( "" );
396     myWiresInd->length( 0 );
397   }
398 }
399
400 //=================================================================================
401 // function : initSelection
402 // purpose  :
403 //=================================================================================
404 void RepairGUI_RemoveHolesDlg::initSelection()
405 {
406   if ( myEditCurrentArgument == GroupPoints->LineEdit1 )
407   {
408     TColStd_MapOfInteger aTypes;
409     aTypes.Add( GEOM_COMPOUND );
410     aTypes.Add( GEOM_SOLID );
411     aTypes.Add( GEOM_SHELL );
412     aTypes.Add( GEOM_FACE );
413     
414     globalSelection( aTypes );
415   }
416   else if ( myEditCurrentArgument == mySelectWiresEdt )
417   {
418     localSelection( myObject, TopAbs_EDGE );
419     localSelection( myObject, TopAbs_WIRE );
420   }
421 }
422
423
424 //=================================================================================
425 // function : onDetect
426 // purpose  :
427 //=================================================================================
428 void RepairGUI_RemoveHolesDlg::onDetect()
429 {
430   displayPreview( false, true, true, 3 );
431
432   // field myClosed,myOpen is initialized in execute() method, called by displayPreview().
433   QString msg;
434   if ( myClosed != -1 )
435     msg = tr( "GEOM_FREE_BOUNDS_MSG" ).arg( myClosed + myOpen ).arg( myClosed ).arg( myOpen );
436   else
437     msg = tr( "GEOM_FREE_BOUNDS_ERROR" );
438   QAD_MessageBox::info1( this, tr( "GEOM_FREE_BOUNDS_TLT" ), msg, "Close" );
439 }
440