Salome HOME
34cc7ddb6ab1bc8cd4a5569b78c1b7f94a42bb06
[modules/geom.git] / src / RepairGUI / RepairGUI_SewingDlg.cxx
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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   : RepairGUI_SewingDlg.cxx
25 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
26 //
27 #include "RepairGUI_SewingDlg.h"
28
29 #include <DlgRef.h>
30 #include <GeometryGUI.h>
31 #include <GEOMBase.h>
32 #include <SalomeApp_DoubleSpinBox.h>
33
34 #include <SalomeApp_Application.h>
35 #include <LightApp_SelectionMgr.h>
36 #include <SUIT_Session.h>
37 #include <SUIT_MessageBox.h>
38 #include <SUIT_ResourceMgr.h>
39
40 #include <GEOMImpl_Types.hxx>
41
42 #include <TopAbs.hxx>
43 #include <TColStd_MapOfInteger.hxx>
44
45 #define DEFAULT_TOLERANCE_VALUE 1e-07
46
47 //=================================================================================
48 // class    : RepairGUI_SewingDlg()
49 // purpose  : Constructs a RepairGUI_SewingDlg  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 RepairGUI_SewingDlg::RepairGUI_SewingDlg( GeometryGUI* theGeometryGUI, QWidget* parent,
55                                           bool modal )
56   : GEOMBase_Skeleton( theGeometryGUI, parent, modal )
57 {
58   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_SEWING" ) ) );
59   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
60
61   setWindowTitle( tr( "GEOM_SEWING_TITLE" ) );
62
63   /***************************************************************/
64   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_SEWING_TITLE" ) );
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
71   GroupPoints = new DlgRef_1SelExt( centralWidget() );
72   GroupPoints->GroupBox1->setTitle( tr( "GEOM_SEWING" ) );
73   GroupPoints->TextLabel1->setText( tr( "GEOM_SELECTED_SHAPE" ) );
74   GroupPoints->PushButton1->setIcon( image1 );
75   GroupPoints->LineEdit1->setReadOnly( true );
76
77   QGridLayout* aLay = new QGridLayout( GroupPoints->Box );
78   aLay->setMargin( 0 ); aLay->setSpacing( 6 );
79   myAllowNonManifoldChk = new QCheckBox (tr("GEOM_ALLOW_NON_MANIFOLD"), GroupPoints->Box);
80   myTolEdt = new SalomeApp_DoubleSpinBox( GroupPoints->Box );
81   initSpinBox( myTolEdt, 0.0, 100.0, DEFAULT_TOLERANCE_VALUE, "len_tol_precision" );
82   myTolEdt->setValue( DEFAULT_TOLERANCE_VALUE );
83   QLabel* aLbl1 = new QLabel( tr( "GEOM_TOLERANCE" ), GroupPoints->Box );
84   myFreeBoundBtn = new QPushButton( tr( "GEOM_DETECT" ) + QString( " [%1]" ).arg( tr( "GEOM_FREE_BOUNDARIES" ) ), 
85                                     GroupPoints->Box );
86   aLay->addWidget( myAllowNonManifoldChk, 0, 0 );
87   aLay->addWidget( aLbl1,          1, 0 );
88   aLay->addWidget( myTolEdt,       1, 1 );
89   aLay->addWidget( myFreeBoundBtn, 2, 0, 1, 2 );
90
91   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
92   layout->setMargin( 0 ); layout->setSpacing( 6 );
93   layout->addWidget( GroupPoints );
94   /***************************************************************/
95
96   setHelpFileName( "sewing_operation_page.html" );
97
98   Init();
99 }
100
101
102 //=================================================================================
103 // function : ~RepairGUI_SewingDlg()
104 // purpose  : Destroys the object and frees any allocated resources
105 //=================================================================================
106 RepairGUI_SewingDlg::~RepairGUI_SewingDlg()
107 {
108 }
109
110
111 //=================================================================================
112 // function : Init()
113 // purpose  :
114 //=================================================================================
115 void RepairGUI_SewingDlg::Init()
116 {
117   /* init variables */
118   myEditCurrentArgument = GroupPoints->LineEdit1;
119
120   myObject = GEOM::GEOM_Object::_nil();
121
122   //myGeomGUI->SetState( 0 );
123   initSelection();
124
125   myClosed = -1;
126   myOpen = -1;
127         
128   /* signals and slots connections */
129   connect( buttonOk(),    SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
130   connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
131
132   connect( GroupPoints->PushButton1, SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
133   connect( GroupPoints->LineEdit1,   SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
134
135   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
136            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
137
138   connect( myFreeBoundBtn, SIGNAL( clicked() ), this, SLOT( onDetect() ) );
139
140   initName( tr( "SEWING_NEW_OBJ_NAME" ) );
141   resize(100,100);
142   SelectionIntoArgument();
143 }
144
145
146 //=================================================================================
147 // function : ClickOnOk()
148 // purpose  : Same than click on apply but close this dialog.
149 //=================================================================================
150 void RepairGUI_SewingDlg::ClickOnOk()
151 {
152   setIsApplyAndClose( true );
153   if ( ClickOnApply() )
154     ClickOnCancel();
155 }
156
157 //=================================================================================
158 // function : ClickOnApply()
159 // purpose  :
160 //=================================================================================
161 bool RepairGUI_SewingDlg::ClickOnApply()
162 {
163   if ( !onAccept() )
164         return false;
165
166   initName();
167
168   GroupPoints->LineEdit1->setText( "" );
169   myObject = GEOM::GEOM_Object::_nil();
170
171   initSelection();
172
173   return true;
174 }
175
176
177 //=================================================================================
178 // function : SelectionIntoArgument()
179 // purpose  : Called when selection
180 //=================================================================================
181 void RepairGUI_SewingDlg::SelectionIntoArgument()
182 {
183   erasePreview();
184   myEditCurrentArgument->setText( "" );
185   myObject = GEOM::GEOM_Object::_nil();
186
187   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
188   SALOME_ListIO aSelList;
189   aSelMgr->selectedObjects(aSelList);
190
191   if ( aSelList.Extent() == 1 ) {
192     Handle(SALOME_InteractiveObject) anIO = aSelList.First();
193     myObject = GEOMBase::ConvertIOinGEOMObject( anIO );
194     if ( !CORBA::is_nil( myObject ) )
195       myEditCurrentArgument->setText( GEOMBase::GetName( myObject ) );
196   }
197 }
198
199 //=================================================================================
200 // function : SetEditCurrentArgument()
201 // purpose  :
202 //=================================================================================
203 void RepairGUI_SewingDlg::SetEditCurrentArgument()
204 {
205   const QObject* send = sender();
206   if ( send == GroupPoints->PushButton1 ) {
207     myEditCurrentArgument->setFocus();
208     SelectionIntoArgument();
209   }
210 }
211
212
213 //=================================================================================
214 // function : LineEditReturnPressed()
215 // purpose  :
216 //=================================================================================
217 void RepairGUI_SewingDlg::LineEditReturnPressed()
218 {
219   const QObject* send = sender();
220   if( send == GroupPoints->LineEdit1 ) {
221     myEditCurrentArgument = GroupPoints->LineEdit1;
222     GEOMBase_Skeleton::LineEditReturnPressed();
223   }
224 }
225
226
227 //=================================================================================
228 // function : ActivateThisDialog()
229 // purpose  :
230 //=================================================================================
231 void RepairGUI_SewingDlg::ActivateThisDialog()
232 {
233   GEOMBase_Skeleton::ActivateThisDialog();
234   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 
235            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
236
237   GroupPoints->LineEdit1->setText( "" );
238   myObject = GEOM::GEOM_Object::_nil();
239
240   myClosed = -1;
241   myOpen = -1;
242
243   //myGeomGUI->SetState( 0 );
244   initSelection();
245 }
246
247
248 //=================================================================================
249 // function : enterEvent()
250 // purpose  : Mouse enter onto the dialog to activate it
251 //=================================================================================
252 void RepairGUI_SewingDlg::enterEvent( QEvent* )
253 {
254   if ( !mainFrame()->GroupConstructors->isEnabled() )
255     ActivateThisDialog();
256 }
257
258
259 //=================================================================================
260 // function : createOperation
261 // purpose  :
262 //=================================================================================
263 GEOM::GEOM_IOperations_ptr RepairGUI_SewingDlg::createOperation()
264 {
265   return getGeomEngine()->GetIHealingOperations( getStudyId() );
266 }
267
268 //=================================================================================
269 // function : isValid
270 // purpose  :
271 //=================================================================================
272 bool RepairGUI_SewingDlg::isValid( QString& msg )
273 {
274   myClosed = -1;
275   bool ok = myTolEdt->isValid( msg, !IsPreview() );
276   return !myObject->_is_nil() && ( IsPreview() || myTolEdt->value() > 0. ) && ok;
277 }
278
279 //=================================================================================
280 // function : execute
281 // purpose  :
282 //=================================================================================
283 bool RepairGUI_SewingDlg::execute( ObjectList& objects )
284 {
285   bool aResult = false;
286   GEOM::GEOM_IHealingOperations_var anOper = GEOM::GEOM_IHealingOperations::_narrow( getOperation() );
287
288   if ( IsPreview() ) { // called from onDetect(): detect free boundary edges, highlight them (add to objects), display message dialog
289     GEOM::ListOfGO_var aClosed, anOpen;
290
291     aResult = anOper->GetFreeBoundary( myObject, aClosed, anOpen );
292
293     if ( aResult ) {
294       myClosed = aClosed->length();
295       myOpen = anOpen->length();
296       int i;
297       for ( i = 0; i < myClosed; i++ )
298         objects.push_back( aClosed[i]._retn() );
299       for ( i = 0; i < myOpen; i++ )
300         objects.push_back( anOpen[i]._retn() );
301     }
302     else
303       myClosed = -1;
304   }
305   else {
306     GEOM::GEOM_Object_var anObj;
307
308     if (myAllowNonManifoldChk->isChecked()) {
309       anObj = anOper->SewAllowNonManifold( myObject, myTolEdt->value() );
310     } else {
311       anObj = anOper->Sew( myObject, myTolEdt->value() );
312     }
313
314     aResult = !anObj->_is_nil();
315     if ( aResult )
316     {
317       if ( !IsPreview() )
318       {
319         QStringList aParameters;
320         aParameters << myTolEdt->text();
321         anObj->SetParameters(aParameters.join(":").toLatin1().constData());
322       }
323       objects.push_back( anObj._retn() );
324     }
325   }
326
327   return aResult;
328 }
329
330 //=================================================================================
331 // function : initSelection
332 // purpose  :
333 //=================================================================================
334 void RepairGUI_SewingDlg::initSelection()
335 {
336   TColStd_MapOfInteger aTypes;
337   aTypes.Add( GEOM_SHELL );
338   aTypes.Add( GEOM_SOLID );
339   aTypes.Add( GEOM_COMPOUND );
340   globalSelection( aTypes );
341 }
342
343 //=================================================================================
344 // function : onDetect
345 // purpose  :
346 //=================================================================================
347 void RepairGUI_SewingDlg::onDetect()
348 {
349   displayPreview( true, false, true, true, 3 );
350
351   // field myClosed,myOpen is initialized in execute() method, called by displayPreview().
352   QString msg;
353   if ( myClosed != -1 )
354     msg = tr( "GEOM_FREE_BOUNDS_MSG" ).arg( myClosed + myOpen ).arg( myClosed ).arg( myOpen );
355   else
356     msg = tr( "GEOM_FREE_BOUNDS_ERROR" );
357   SUIT_MessageBox::information( this, tr( "GEOM_FREE_BOUNDS_TLT" ), msg );
358 }