Salome HOME
Merge from V5_1_main 14/05/2010
[modules/geom.git] / src / RepairGUI / RepairGUI_SewingDlg.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   : 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   myTolEdt = new SalomeApp_DoubleSpinBox( GroupPoints->Box );
80   initSpinBox( myTolEdt, 0.0, 100.0, DEFAULT_TOLERANCE_VALUE, "len_tol_precision" );
81   myTolEdt->setValue( DEFAULT_TOLERANCE_VALUE );
82   QLabel* aLbl1 = new QLabel( tr( "GEOM_TOLERANCE" ), GroupPoints->Box );
83   myFreeBoundBtn = new QPushButton( tr( "GEOM_DETECT" ) + QString( " [%1]" ).arg( tr( "GEOM_FREE_BOUNDARIES" ) ), 
84                                     GroupPoints->Box );
85   aLay->addWidget( aLbl1,          0, 0 );
86   aLay->addWidget( myTolEdt,       0, 1 );
87   aLay->addWidget( myFreeBoundBtn, 1, 0, 1, 2 );
88
89   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
90   layout->setMargin( 0 ); layout->setSpacing( 6 );
91   layout->addWidget( GroupPoints );
92   /***************************************************************/
93
94   setHelpFileName( "sewing_operation_page.html" );
95
96   Init();
97 }
98
99
100 //=================================================================================
101 // function : ~RepairGUI_SewingDlg()
102 // purpose  : Destroys the object and frees any allocated resources
103 //=================================================================================
104 RepairGUI_SewingDlg::~RepairGUI_SewingDlg()
105 {
106 }
107
108
109 //=================================================================================
110 // function : Init()
111 // purpose  :
112 //=================================================================================
113 void RepairGUI_SewingDlg::Init()
114 {
115   /* init variables */
116   myEditCurrentArgument = GroupPoints->LineEdit1;
117
118   myObject = GEOM::GEOM_Object::_nil();
119
120   //myGeomGUI->SetState( 0 );
121   initSelection();
122
123   myClosed = -1;
124   myOpen = -1;
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( GroupPoints->PushButton1, SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
131   connect( GroupPoints->LineEdit1,   SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
132
133   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
134            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
135
136   connect( myFreeBoundBtn, SIGNAL( clicked() ), this, SLOT( onDetect() ) );
137
138   initName( tr( "SEWING_NEW_OBJ_NAME" ) );
139   resize(100,100);
140 }
141
142
143 //=================================================================================
144 // function : ClickOnOk()
145 // purpose  : Same than click on apply but close this dialog.
146 //=================================================================================
147 void RepairGUI_SewingDlg::ClickOnOk()
148 {
149   if ( ClickOnApply() )
150     ClickOnCancel();
151 }
152
153 //=================================================================================
154 // function : ClickOnApply()
155 // purpose  :
156 //=================================================================================
157 bool RepairGUI_SewingDlg::ClickOnApply()
158 {
159   if ( !onAccept() )
160         return false;
161
162   initName();
163
164   GroupPoints->LineEdit1->setText( "" );
165   myObject = GEOM::GEOM_Object::_nil();
166
167   initSelection();
168
169   return true;
170 }
171
172
173 //=================================================================================
174 // function : SelectionIntoArgument()
175 // purpose  : Called when selection
176 //=================================================================================
177 void RepairGUI_SewingDlg::SelectionIntoArgument()
178 {
179   erasePreview();
180   myEditCurrentArgument->setText( "" );
181   myObject = GEOM::GEOM_Object::_nil();
182
183   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
184   SALOME_ListIO aSelList;
185   aSelMgr->selectedObjects(aSelList);
186
187   if ( aSelList.Extent() == 1 ) {
188     Handle(SALOME_InteractiveObject) anIO = aSelList.First();
189     Standard_Boolean aRes;
190     myObject = GEOMBase::ConvertIOinGEOMObject( anIO, aRes );
191     if ( aRes )
192       myEditCurrentArgument->setText( GEOMBase::GetName( myObject ) );
193   }
194 }
195
196 //=================================================================================
197 // function : SetEditCurrentArgument()
198 // purpose  :
199 //=================================================================================
200 void RepairGUI_SewingDlg::SetEditCurrentArgument()
201 {
202   const QObject* send = sender();
203   if ( send == GroupPoints->PushButton1 ) {
204     myEditCurrentArgument->setFocus();
205     SelectionIntoArgument();
206   }
207 }
208
209
210 //=================================================================================
211 // function : LineEditReturnPressed()
212 // purpose  :
213 //=================================================================================
214 void RepairGUI_SewingDlg::LineEditReturnPressed()
215 {
216   const QObject* send = sender();
217   if( send == GroupPoints->LineEdit1 ) {
218     myEditCurrentArgument = GroupPoints->LineEdit1;
219     GEOMBase_Skeleton::LineEditReturnPressed();
220   }
221 }
222
223
224 //=================================================================================
225 // function : ActivateThisDialog()
226 // purpose  :
227 //=================================================================================
228 void RepairGUI_SewingDlg::ActivateThisDialog()
229 {
230   GEOMBase_Skeleton::ActivateThisDialog();
231   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 
232            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
233
234   GroupPoints->LineEdit1->setText( "" );
235   myObject = GEOM::GEOM_Object::_nil();
236
237   myClosed = -1;
238   myOpen = -1;
239
240   //myGeomGUI->SetState( 0 );
241   initSelection();
242 }
243
244
245 //=================================================================================
246 // function : enterEvent()
247 // purpose  : Mouse enter onto the dialog to activate it
248 //=================================================================================
249 void RepairGUI_SewingDlg::enterEvent( QEvent* )
250 {
251   if ( !mainFrame()->GroupConstructors->isEnabled() )
252     ActivateThisDialog();
253 }
254
255
256 //=================================================================================
257 // function : createOperation
258 // purpose  :
259 //=================================================================================
260 GEOM::GEOM_IOperations_ptr RepairGUI_SewingDlg::createOperation()
261 {
262   return getGeomEngine()->GetIHealingOperations( getStudyId() );
263 }
264
265 //=================================================================================
266 // function : isValid
267 // purpose  :
268 //=================================================================================
269 bool RepairGUI_SewingDlg::isValid( QString& msg )
270 {
271   myClosed = -1;
272   bool ok = myTolEdt->isValid( msg, !IsPreview() );
273   return !myObject->_is_nil() && ( IsPreview() || myTolEdt->value() > 0. ) && ok;
274 }
275
276 //=================================================================================
277 // function : execute
278 // purpose  :
279 //=================================================================================
280 bool RepairGUI_SewingDlg::execute( ObjectList& objects )
281 {
282   bool aResult = false;
283   GEOM::GEOM_IHealingOperations_var anOper = GEOM::GEOM_IHealingOperations::_narrow( getOperation() );
284
285   if ( IsPreview() ) { // called from onDetect(): detect free boundary edges, highlight them (add to objects), display message dialog
286     GEOM::ListOfGO_var aClosed, anOpen;
287
288     aResult = anOper->GetFreeBoundary( myObject, aClosed, anOpen );
289
290     if ( aResult ) {
291       myClosed = aClosed->length();
292       myOpen = anOpen->length();
293       int i;
294       for ( i = 0; i < myClosed; i++ )
295         objects.push_back( aClosed[i]._retn() );
296       for ( i = 0; i < myOpen; i++ )
297         objects.push_back( anOpen[i]._retn() );
298     }
299     else
300       myClosed = -1;
301   }
302   else {
303     GEOM::GEOM_Object_var anObj = anOper->Sew( myObject, myTolEdt->value() );
304     aResult = !anObj->_is_nil();
305     if ( aResult )
306     {
307       if ( !IsPreview() )
308       {
309         QStringList aParameters;
310         aParameters << myTolEdt->text();
311         anObj->SetParameters(aParameters.join(":").toLatin1().constData());
312       }
313       objects.push_back( anObj._retn() );
314     }
315   }
316
317   return aResult;
318 }
319
320 //=================================================================================
321 // function : initSelection
322 // purpose  :
323 //=================================================================================
324 void RepairGUI_SewingDlg::initSelection()
325 {
326   TColStd_MapOfInteger aTypes;
327   aTypes.Add( GEOM_SHELL );
328   aTypes.Add( GEOM_SOLID );
329   aTypes.Add( GEOM_COMPOUND );
330   globalSelection( aTypes );
331 }
332
333 //=================================================================================
334 // function : onDetect
335 // purpose  :
336 //=================================================================================
337 void RepairGUI_SewingDlg::onDetect()
338 {
339   displayPreview( false, true, true, 3 );
340
341   // field myClosed,myOpen is initialized in execute() method, called by displayPreview().
342   QString msg;
343   if ( myClosed != -1 )
344     msg = tr( "GEOM_FREE_BOUNDS_MSG" ).arg( myClosed + myOpen ).arg( myClosed ).arg( myOpen );
345   else
346     msg = tr( "GEOM_FREE_BOUNDS_ERROR" );
347   SUIT_MessageBox::information( this, tr( "GEOM_FREE_BOUNDS_TLT" ), msg );
348 }