Salome HOME
Merge from V6_main 01/04/2013
[modules/geom.git] / src / RepairGUI / RepairGUI_ShapeProcessDlg.cxx
1 // Copyright (C) 2007-2013  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_ShapeProcessDlg.cxx
25 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
26
27 #include "RepairGUI_ShapeProcessDlg.h"
28
29 #include <DlgRef.h>
30 #include <GeometryGUI.h>
31 #include <GEOMBase.h>
32 #include <GEOMImpl_Types.hxx>
33
34 #include <SalomeApp_Application.h>
35 #include <SalomeApp_DoubleSpinBox.h>
36 #include <SalomeApp_IntSpinBox.h>
37 #include <LightApp_SelectionMgr.h>
38 #include <SUIT_Session.h>
39 #include <SUIT_ResourceMgr.h>
40 #include <SUIT_MessageBox.h>
41 #include <SALOME_ListIteratorOfListIO.hxx>
42 #include <SALOME_ListIO.hxx>
43
44 #include <Basics_Utils.hxx>
45
46 #include <TCollection_AsciiString.hxx>
47 #include <TColStd_MapOfInteger.hxx>
48
49 #include <QListWidget>
50 #include <QStackedLayout>
51
52 //=================================================================================
53 // class    : RepairGUI_ShapeProcessDlg()
54 // purpose  : Constructs a RepairGUI_ShapeProcessDlg  which is a child of 'parent', with the
55 //            name 'name' and widget flags set to 'f'.
56 //            The dialog will by default be modeless, unless you set 'modal' to
57 //            TRUE to construct a modal dialog.
58 //=================================================================================
59 RepairGUI_ShapeProcessDlg::RepairGUI_ShapeProcessDlg( GeometryGUI* theGeometryGUI, QWidget* parent,
60                                                       bool modal )
61   : GEOMBase_Skeleton( theGeometryGUI, parent, modal )
62 {
63   setHelpFileName( "shape_processing_operation_page.html" );
64   init();
65 }
66
67 //=================================================================================
68 // function : ~RepairGUI_ShapeProcessDlg()
69 // purpose  : Destroys the object and frees any allocated resources
70 //=================================================================================
71 RepairGUI_ShapeProcessDlg::~RepairGUI_ShapeProcessDlg()
72 {
73 }
74
75 //=================================================================================
76 // function : Init()
77 // purpose  :
78 //=================================================================================
79 void RepairGUI_ShapeProcessDlg::init()
80 {
81   //myGeomGUI->SetState( 0 );
82
83   initParamsValues();
84   initSelection();
85         
86   setWindowTitle( tr( "GEOM_SHAPEPROCESS_TITLE" ) );
87
88   mainFrame()->GroupConstructors->hide();
89   
90   // select widget on the top 
91   mySelectWdgt = new DlgRef_1Sel( centralWidget() );
92   mySelectWdgt->GroupBox1->setTitle( tr( "GEOM_SHAPE" ) );
93   mySelectWdgt->TextLabel1->setText( tr( "GEOM_SELECTED_OBJECTS" ) );
94   mySelectWdgt->PushButton1->setIcon( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
95   mySelectWdgt->LineEdit1->setReadOnly( true );
96
97   // layout the two group boxes in the middle, add a list of operations
98   QGroupBox* anOperGr = new QGroupBox( tr( "GEOM_OPERATIONS" ), centralWidget() );
99
100   // operations list widget
101   myOpList = new QListWidget( anOperGr );
102   myOpList->setSortingEnabled( false );
103   myOpList->setSizePolicy( QSizePolicy( QSizePolicy::Minimum, QSizePolicy::Expanding ) );
104
105   QVBoxLayout* aOperLay = new QVBoxLayout( anOperGr );
106   aOperLay->setMargin( 9 );
107   aOperLay->addWidget( myOpList );
108
109   QGroupBox* aParamsGr = new QGroupBox( tr( "GEOM_PARAMETERS" ), centralWidget() );
110
111   // add a widget stack to the parameters group box
112   QStackedLayout* aStack = new QStackedLayout( aParamsGr );
113
114   // continueties values..
115   QStringList aContinueties = QString( "C0,G1,C1,G2,C2,C3,CN" ).split( "," );
116
117   // fill in the widgets
118   for ( int i = 0; i < myOpLst.count(); i++ ) {
119     QListWidgetItem* item = new QListWidgetItem( myOpLst[i] );
120     item->setFlags( Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsUserCheckable );
121     item->setCheckState( Qt::Unchecked );
122     myOpList->addItem( item );
123
124     QWidget* w;
125     if ( myOpLst[i] == "FixShape" ) {
126       // FixShape
127       w = new QWidget( aParamsGr );
128       QGridLayout* aLay = new QGridLayout( w );
129       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
130       
131       myFixShapeTol3D = new SalomeApp_DoubleSpinBox( w );
132       initSpinBox( myFixShapeTol3D, 0., 100., 1e-7, "len_tol_precision" );
133       myFixShapeMaxTol3D = new SalomeApp_DoubleSpinBox( w );
134       initSpinBox( myFixShapeMaxTol3D, 0., 100., 1e-7, "len_tol_precision" );      
135       
136       aLay->addWidget( new QLabel( tr( "GEOM_3D_TOLERANCE" ), w ), 0, 0 );
137       aLay->addWidget( myFixShapeTol3D, 0, 1 );
138       aLay->addWidget( new QLabel( tr( "GEOM_MAX_3D_TOLERANCE" ), w ), 1, 0 );
139       aLay->addWidget( myFixShapeMaxTol3D, 1, 1 );
140       aLay->setRowStretch( aLay->rowCount(), 5 );
141     }
142     else if ( myOpLst[i] == "FixFaceSize" ) {
143       // FixFaceSize  
144       w = new QWidget( aParamsGr );
145       QGridLayout* aLay = new QGridLayout( w );
146       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
147       
148       myFixFaceSizeTol = new SalomeApp_DoubleSpinBox( w );
149       initSpinBox( myFixFaceSizeTol, 0., 100., 1e-7, "len_tol_precision" );      
150       
151       aLay->addWidget( new QLabel( tr( "GEOM_TOLERANCE" ), w ), 0, 0 );
152       aLay->addWidget( myFixFaceSizeTol, 0, 1 );
153       aLay->setRowStretch( aLay->rowCount(), 5 );
154     }
155     else if ( myOpLst[i] == "DropSmallEdges" ) {
156       // DropSmallEdges
157       w = new QWidget( aParamsGr );
158       QGridLayout* aLay = new QGridLayout( w );
159       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
160       
161       myDropSmallEdgesTol3D = new SalomeApp_DoubleSpinBox( w );
162       initSpinBox( myDropSmallEdgesTol3D, 0., 100., 1e-7, "len_tol_precision" );
163   
164       aLay->addWidget( new QLabel( tr( "GEOM_3D_TOLERANCE" ), w ), 0, 0 );
165       aLay->addWidget( myDropSmallEdgesTol3D, 0, 1 );
166       aLay->setRowStretch( aLay->rowCount(), 5 );
167     }
168     else if ( myOpLst[i] == "SplitAngle" ) {
169       // SplitAngle
170       w = new QWidget( aParamsGr );
171       QGridLayout* aLay = new QGridLayout( w );
172       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
173       
174       mySplitAngleAngle = new SalomeApp_DoubleSpinBox( w );
175       initSpinBox( mySplitAngleAngle, 0, 360, 1, "angle_precision" );      
176       mySplitAngleMaxTol = new SalomeApp_DoubleSpinBox( w );
177       initSpinBox( mySplitAngleMaxTol, 0., 100., 1e-7, "ang_tol_precision" );      
178       
179       aLay->addWidget( new QLabel( tr( "GEOM_ANGLE_1" ), w ), 0, 0 );
180       aLay->addWidget( mySplitAngleAngle, 0, 1 );
181       aLay->addWidget( new QLabel( tr( "GEOM_MAX_TOLERANCE" ), w ), 1, 0 );
182       aLay->addWidget( mySplitAngleMaxTol, 1, 1 );
183       aLay->setRowStretch( aLay->rowCount(), 5 );
184     }
185     else if ( myOpLst[i] == "SplitClosedFaces" ) {
186       // SplitClosedFaces
187       w = new QWidget( aParamsGr );
188       QGridLayout* aLay = new QGridLayout( w );
189       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
190       
191       mySplitClosedFacesNum = new SalomeApp_IntSpinBox( w );
192   
193       aLay->addWidget( new QLabel( tr( "GEOM_NUM_SPLIT_POINTS" ), w ), 0, 0 );
194       aLay->addWidget( mySplitClosedFacesNum, 0, 1 );
195       aLay->setRowStretch( aLay->rowCount(), 5 );
196     }      
197     else if ( myOpLst[i] == "SplitContinuity" ) {
198       // SplitContinuity
199       w = new QWidget( aParamsGr );
200       QGridLayout* aLay = new QGridLayout( w );
201       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
202
203       mySplitContTol3D = new SalomeApp_DoubleSpinBox( w );
204       initSpinBox( mySplitContTol3D, 0., 100., 1e-7, "len_tol_precision" );
205       mySplitContSurfCont = new QComboBox( w );
206       mySplitContSurfCont->addItems( aContinueties );
207       mySplitContCurvCont = new QComboBox( w );
208       mySplitContCurvCont->addItems( aContinueties );
209       
210       aLay->addWidget( new QLabel( tr( "GEOM_3D_TOLERANCE" ), w ), 0, 0 );
211       aLay->addWidget( mySplitContTol3D, 0, 1 );
212       aLay->addWidget( new QLabel( tr( "GEOM_SURFACE_CONTINUTY" ), w ), 1, 0 );
213       aLay->addWidget( mySplitContSurfCont, 1, 1 );
214       aLay->addWidget( new QLabel( tr( "GEOM_CURVE_CONTINUTY" ), w ), 2, 0 );
215       aLay->addWidget( mySplitContCurvCont, 2, 1 );
216       aLay->setRowStretch( aLay->rowCount(), 5 );
217     }
218     else if ( myOpLst[i] == "BSplineRestriction" ) {
219       // BSplineRestriction
220       w = new QWidget( aParamsGr );
221       QGridLayout* aLay = new QGridLayout( w );
222       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
223
224       myBSplineSurfModeChk = new QCheckBox( tr("GEOM_SURFACE_MODE"), w );
225       myBSpline3DCurveChk = new QCheckBox( tr("GEOM_3D_CURVE_MODE"), w );
226       myBSpline2DCurveChk = new QCheckBox( tr("GEOM_2D_CURVE_MODE"), w );
227
228       myBSplineTol3D = new SalomeApp_DoubleSpinBox( w );
229       initSpinBox( myBSplineTol3D, 0., 100., 1e-7, "len_tol_precision" );
230       
231       myBSplineTol2D = new SalomeApp_DoubleSpinBox( w );
232       initSpinBox( myBSplineTol2D, 0., 100., 1e-7, "param_tol_precision" );      
233
234       myBSplineDegree = new SalomeApp_IntSpinBox( w );
235       myBSplineSegments = new SalomeApp_IntSpinBox( w );
236       myBSpline2DCont = new QComboBox( w );
237       myBSpline2DCont->addItems( aContinueties );
238       myBSpline3DCont = new QComboBox( w );
239       myBSpline3DCont->addItems( aContinueties );
240       
241       myBSplineSurfModeChk->setChecked( true );
242       myBSpline3DCurveChk->setChecked( true );
243       myBSpline2DCurveChk->setChecked( true );
244
245       aLay->addWidget( myBSplineSurfModeChk, 0, 0 );
246       aLay->addWidget( myBSpline3DCurveChk,  1, 0 );
247       aLay->addWidget( myBSpline2DCurveChk,  2, 0 );
248       aLay->addWidget( new QLabel( tr( "GEOM_3D_TOLERANCE" ), w ), 3, 0 );
249       aLay->addWidget( myBSplineTol3D, 3, 1 );
250       aLay->addWidget( new QLabel( tr( "GEOM_2D_TOLERANCE" ), w ), 4, 0 );
251       aLay->addWidget( myBSplineTol2D, 4, 1 );
252       aLay->addWidget( new QLabel( tr( "GEOM_REQUIRED_DEGREE" ), w ), 5, 0 );
253       aLay->addWidget( myBSplineDegree, 5, 1 );
254       aLay->addWidget( new QLabel( tr( "GEOM_REQUIRED_NUM_SEGMENTS" ), w ), 6, 0 );
255       aLay->addWidget( myBSplineSegments, 6, 1 );
256       aLay->addWidget( new QLabel( tr( "GEOM_3D_CONTINUTY" ), w ), 7, 0 );
257       aLay->addWidget( myBSpline3DCont, 7, 1 );
258       aLay->addWidget( new QLabel( tr( "GEOM_2D_CONTINUTY" ), w ), 8, 0 );
259       aLay->addWidget( myBSpline2DCont, 8, 1 );
260       aLay->setRowStretch( aLay->rowCount(), 5 );
261     }
262     else if ( myOpLst[i] == "ToBezier" ) {
263       // ToBezier
264       w = new QWidget( aParamsGr );
265       QGridLayout* aLay = new QGridLayout( w );
266       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
267
268       myToBezierSurfModeChk = new QCheckBox( tr("GEOM_SURFACE_MODE"), w );
269       myToBezier3DCurveChk = new QCheckBox( tr("GEOM_3D_CURVE_MODE"), w );
270       myToBezier2DCurveChk = new QCheckBox( tr("GEOM_2D_CURVE_MODE"), w );
271   
272       myToBezierMaxTol = new SalomeApp_DoubleSpinBox( w );
273       initSpinBox( myToBezierMaxTol, 0., 100., 1e-7, "len_tol_precision" );            
274
275       aLay->addWidget( myToBezierSurfModeChk, 0, 0 );
276       aLay->addWidget( myToBezier3DCurveChk, 1, 0 );
277       aLay->addWidget( myToBezier2DCurveChk, 2, 0 );
278       aLay->addWidget( new QLabel( tr( "GEOM_MAX_TOLERANCE" ), w ), 3, 0 );
279       aLay->addWidget( myToBezierMaxTol, 3, 1 );
280       aLay->setRowStretch( aLay->rowCount(), 5 );
281     }
282     else if ( myOpLst[i] == "SameParameter" ) {
283       // SameParameter
284       w = new QWidget( aParamsGr );
285       QGridLayout* aLay = new QGridLayout( w );
286       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
287
288       mySameParameterTol3D = new SalomeApp_DoubleSpinBox( w );
289       initSpinBox( mySameParameterTol3D, 0., 100., 1e-7, "len_tol_precision" );            
290       
291       aLay->addWidget( new QLabel( tr( "GEOM_3D_TOLERANCE" ), w ), 0, 0 );
292       aLay->addWidget( mySameParameterTol3D, 0, 1 );
293       aLay->setRowStretch( aLay->rowCount(), 5 );
294     }
295     else {
296       w = new QWidget( aParamsGr ); // dumb widget
297     }
298     aStack->insertWidget( i, w );
299   }
300
301   QGridLayout* layout = new QGridLayout( centralWidget() );
302   layout->setMargin( 0 ); layout->setSpacing( 6 );
303   layout->addWidget( mySelectWdgt, 0, 0, 1, 2 );
304   layout->addWidget( anOperGr,     1, 0 );
305   layout->addWidget( aParamsGr,    1, 1 );
306
307   // signals and slots connections
308   connect( buttonOk(),    SIGNAL( clicked() ), this, SLOT( onOk() ) );
309   connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( onApply() ) );
310
311   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
312            SIGNAL( currentSelectionChanged() ), this, SLOT( selectionChanged() ) );
313
314   connect( mySelectWdgt->PushButton1, SIGNAL( clicked() ),       this, SLOT( selectClicked() ) );
315   connect( mySelectWdgt->LineEdit1,   SIGNAL( returnPressed() ), this, SLOT( lineEditReturnPressed() ) );
316
317   connect( myToBezierSurfModeChk,     SIGNAL( toggled( bool ) ), this, SLOT( advOptionToggled( bool ) ) );
318
319   connect( myOpList, SIGNAL( currentRowChanged( int ) ), aStack, SLOT( setCurrentIndex( int ) ) );
320
321   adjustSize();
322   loadDefaults(); // init dialog fields with values from resource file
323   //myOpList->setCurrentRow( myOpList->findItem( 0 );
324   reset();
325
326   initName( tr( "PROCESS_SHAPE_NEW_OBJ_NAME" ) );
327   selectionChanged();
328 }
329
330 //=================================================================================
331 // function : onOk()
332 // purpose  : Same than click on apply but close this dialog.
333 //=================================================================================
334 void RepairGUI_ShapeProcessDlg::onOk()
335 {
336   setIsApplyAndClose( true );
337   if ( onApply() )
338     ClickOnCancel();
339 }
340
341 //=================================================================================
342 // function : onApply()
343 // purpose  :
344 //=================================================================================
345 bool RepairGUI_ShapeProcessDlg::onApply()
346 {
347   if ( !onAccept() )
348     return false;
349
350   initName();
351
352   reset();
353   initSelection();
354   
355   return true;
356 }
357
358
359 //=================================================================================
360 // function : selectionChanged()
361 // purpose  : Called when selection as changed or other case
362 //          : used only by SelectButtonC1A1 (LineEditC1A1)
363 //=================================================================================
364 void RepairGUI_ShapeProcessDlg::selectionChanged()
365 {
366   reset();
367         
368   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
369   SALOME_ListIO aSelList;
370   aSelMgr->selectedObjects(aSelList);
371
372   int i = 0;
373   myObjects->length(aSelList.Extent());
374   for (SALOME_ListIteratorOfListIO anIt (aSelList); anIt.More(); anIt.Next()) {
375     GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject( anIt.Value() );
376     if ( !CORBA::is_nil( aSelectedObject ) )
377       myObjects[i++] = aSelectedObject;
378   }
379   myObjects->length( i );
380   if ( i == 1 )
381     mySelectWdgt->LineEdit1->setText( GEOMBase::GetName( myObjects[0] ) );
382   else if ( i > 0 )
383     mySelectWdgt->LineEdit1->setText( QString::number( i ) + "_" + tr( "GEOM_OBJECTS" ) );
384 }
385
386
387 //=================================================================================
388 // function : selectClicked()
389 // purpose  :
390 //=================================================================================
391 void RepairGUI_ShapeProcessDlg::selectClicked()
392 {
393   myEditCurrentArgument = mySelectWdgt->LineEdit1;
394   mySelectWdgt->LineEdit1->setFocus();
395   selectionChanged();
396 }
397
398
399 //=================================================================================
400 // function : lineEditReturnPressed()
401 // purpose  :
402 //=================================================================================
403 void RepairGUI_ShapeProcessDlg::lineEditReturnPressed()
404 {
405   GEOMBase_Skeleton::LineEditReturnPressed();
406 }
407
408
409 //=================================================================================
410 // function : activate()
411 // purpose  :
412 //=================================================================================
413 void RepairGUI_ShapeProcessDlg::activate()
414 {
415   GEOMBase_Skeleton::ActivateThisDialog();
416   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication( ) ))->selectionMgr(),
417            SIGNAL( currentSelectionChanged() ), this, SLOT( selectionChanged() ) );
418         
419   reset();
420   //myGeomGUI->SetState( 0 );
421   initSelection();
422 }
423
424
425 //=================================================================================
426 // function : enterEvent()
427 // purpose  : Mouse enter onto the dialog to activate it
428 //=================================================================================
429 void RepairGUI_ShapeProcessDlg::enterEvent( QEvent* )
430 {
431   if ( !mainFrame()->GroupBoxName->isEnabled() )
432     activate();
433 }
434
435
436 //=================================================================================
437 // function : reset()
438 // purpose  : Completely reset the state of method including local context
439 //=================================================================================
440 void RepairGUI_ShapeProcessDlg::reset()
441 {
442   myObjects = new GEOM::ListOfGO();
443   myObjects->length( 0 );       
444   mySelectWdgt->LineEdit1->setText( "" );
445 }
446
447
448 //=================================================================================
449 // function : get_convert
450 // purpose  : conversion of angle values to radians (non-angle values are not converted)
451 //=================================================================================
452 const char* get_convert( const char* theParam, const QString& theValue )
453 {
454   if ( !strcmp( theParam, "SplitAngle.Angle" ) ) {
455     double doubleValue = theValue.toDouble() * M_PI / 180.;
456     return CORBA::string_dup( QString::number( doubleValue ).toLatin1().constData() );
457   }
458   return CORBA::string_dup( theValue.toLatin1().constData() );
459 }
460
461 //=================================================================================
462 // function : set_convert
463 // purpose  : conversion of angle values to degrees (non-angle values are not converted)
464 //=================================================================================
465 QString set_convert( const char* theParam, const char* theValue )
466 {
467   if ( !strcmp( theParam, "SplitAngle.Angle" ) ) {
468     Kernel_Utils::Localizer loc;
469     double doubleValue = atof( theValue ) * 180. / M_PI;
470     return QString::number( doubleValue );
471   }
472   return QString( theValue );
473 }
474
475 //=================================================================================
476 // function : loadDefaults()
477 // purpose  : initialize "values"-fields with default values retrieved from IHealingOperations
478 //=================================================================================
479 void RepairGUI_ShapeProcessDlg::loadDefaults()
480 {
481   GEOM::GEOM_IHealingOperations_var anOp = myGeomGUI->GetGeomGen()->GetIHealingOperations( getStudyId() );
482   GEOM::string_array_var anOperators, aParams, aValues;
483   anOp->GetShapeProcessParameters( anOperators, aParams, aValues );
484
485   // check the default items-operators
486   for ( int i = 0; i < anOperators->length(); i++ ) {
487     //MESSAGE("-->"<<(const char*)anOperators[i]);
488     QList<QListWidgetItem*> items = myOpList->findItems ( (const char*)anOperators[i], Qt::MatchFixedString );
489     if ( items.count() ) 
490       ( items[0] )->setCheckState( Qt::Checked );
491   }
492
493   // Retrieve default parameters for ALL operators
494   for ( int i = 0; i < myOpList->count(); i++ ) {
495     CORBA::String_var anOperator = CORBA::string_dup( myOpList->item( i )->text().toLatin1().constData() );
496     anOp->GetOperatorParameters( anOperator.in(), aParams, aValues );
497
498     // set default values of parameters
499     if ( aParams->length() != aValues->length() )
500       continue;
501
502     for ( int j = 0; j < aParams->length(); j++ ) {
503       QWidget* aCtrl = getControl( (const char*)aParams[j] );
504       setValue( aCtrl, set_convert( (const char*)aParams[j], aValues[j] ) );
505     }
506   }
507 }
508
509 //=================================================================================
510 // function : setValue()
511 // purpose  : set value in the proper way
512 //=================================================================================
513 void RepairGUI_ShapeProcessDlg::setValue( QWidget* theControl, const QString& theValue )
514 {
515   if ( theControl && !theValue.isNull() ) {
516     if ( qobject_cast<SalomeApp_DoubleSpinBox*>( theControl ) )
517       qobject_cast<SalomeApp_DoubleSpinBox*>( theControl )->setValue( theValue.toDouble() );
518     else if ( qobject_cast<SalomeApp_IntSpinBox*>( theControl ) )
519       qobject_cast<SalomeApp_IntSpinBox*>( theControl )->setValue( theValue.toInt() );
520     else if ( qobject_cast<QComboBox*>( theControl ) )
521       qobject_cast<QComboBox*>( theControl )->setEditText( theValue );
522     else if ( qobject_cast<QCheckBox*>( theControl ) )
523       qobject_cast<QCheckBox*>( theControl )->setChecked( theValue.toInt() != 0 );
524   }
525 }
526
527 //=================================================================================
528 // function : getValue()
529 // purpose  : get value in the proper way
530 //=================================================================================
531 QString RepairGUI_ShapeProcessDlg::getValue( QWidget* theControl ) const
532 {
533   if ( theControl ) {
534     if ( qobject_cast<SalomeApp_DoubleSpinBox*>( theControl ) )
535       return QString::number( qobject_cast<SalomeApp_DoubleSpinBox*>( theControl )->value() );
536     else if ( qobject_cast<SalomeApp_IntSpinBox*>( theControl ) )
537       return QString::number( qobject_cast<SalomeApp_IntSpinBox*>( theControl )->value() );
538     else if ( qobject_cast<QComboBox*>( theControl ) )
539       return qobject_cast<QComboBox*>( theControl )->currentText();
540     else if ( qobject_cast<QCheckBox*>( theControl ) )
541       return qobject_cast<QCheckBox*>( theControl )->isChecked() ? "1" : "0";
542   }   
543   return 0;
544 }
545
546 //=================================================================================
547 // function : getText()
548 // purpose  : get text in the proper way
549 //=================================================================================
550 QString RepairGUI_ShapeProcessDlg::getText( QWidget* theControl ) const
551 {
552   if ( theControl ) {
553     if ( qobject_cast<SalomeApp_DoubleSpinBox*>( theControl ) )
554       return qobject_cast<SalomeApp_DoubleSpinBox*>( theControl )->text();
555     else if ( qobject_cast<SalomeApp_IntSpinBox*>( theControl ) )
556       return qobject_cast<SalomeApp_IntSpinBox*>( theControl )->text();
557   }   
558   return QString::null;
559 }
560
561 //=================================================================================
562 // function : createOperation
563 // purpose  :
564 //=================================================================================
565 GEOM::GEOM_IOperations_ptr RepairGUI_ShapeProcessDlg::createOperation()
566 {
567   return getGeomEngine()->GetIHealingOperations( getStudyId() );
568 }
569
570 //=================================================================================
571 // function : isValid
572 // purpose  :
573 //=================================================================================
574 bool RepairGUI_ShapeProcessDlg::isValid( QString& msg )
575 {
576   bool ok = true;
577   QMapIterator<QString,QStringList> aMapIter( myValMap );
578   while( aMapIter.hasNext() ) {
579     aMapIter.next();
580     const QStringList& aList = aMapIter.value();
581     QListIterator<QString> aListIter( aList );
582     while( aListIter.hasNext() ) {
583       const QString& aParam = aListIter.next();
584       QWidget* aControl = getControl( aParam );
585       if ( qobject_cast<SalomeApp_DoubleSpinBox*>( aControl ) )
586         ok = qobject_cast<SalomeApp_DoubleSpinBox*>( aControl )->isValid( msg, !IsPreview() ) && ok;
587       else if ( qobject_cast<SalomeApp_IntSpinBox*>( aControl ) )
588         ok = qobject_cast<SalomeApp_IntSpinBox*>( aControl )->isValid( msg, !IsPreview() ) && ok;
589     }
590   }
591
592   bool error = false;
593   GEOM::string_array_var anOperators = getActiveOperators();
594   if ( !myObjects->length() ) {
595     msg += tr( "ERROR_NO_OBJECTS" );
596     error = true;
597   }
598   if ( !anOperators->length() ) {
599     if ( error ) 
600       msg += "\n";
601     msg += tr( "ERROR_NO_OPERATORS" );
602     error = true;
603   }
604   return !error && ok;
605 }
606
607 //=================================================================================
608 // function : execute
609 // purpose  :
610 //=================================================================================
611 bool RepairGUI_ShapeProcessDlg::execute( ObjectList& objects )
612 {
613   GEOM::string_array_var anOperators = getActiveOperators();
614   GEOM::string_array_var aParams = getParameters( anOperators );
615   GEOM::string_array_var aValues = getValues( aParams );
616
617   /*//-- check --
618   int z;
619         MESSAGE("Objects : ");
620         for ( z = 0; z < myObjects->length(); z++ )
621                 MESSAGE(myObjects[z]->GetName() << " ");
622         MESSAGE("\nOperators : ");
623         for ( z = 0; z < anOperators->length(); z++ )
624                 MESSAGE(anOperators[z] << " ");
625         MESSAGE("\nParameters : ");
626         for ( z = 0; z < aParams->length(); z++ )
627                 MESSAGE(aParams[z] << " ");
628         MESSAGE("\nValues : ");
629         for ( z = 0; z < aValues->length(); z ++ )
630                 MESSAGE(aValues[z] << " ");
631         MESSAGE("\n");
632   */// -----------
633
634   QStringList anErrorObjNames;
635   for ( int i = 0; i < myObjects->length(); i++ ) {
636     GEOM::GEOM_Object_var obj = myObjects[i];
637     GEOM::GEOM_IHealingOperations_var anOper = GEOM::GEOM_IHealingOperations::_narrow( getOperation() );
638     GEOM::GEOM_Object_var anObj = anOper->ProcessShape( obj, anOperators, aParams, aValues );
639     if ( anObj->_is_nil() )
640       anErrorObjNames << GEOMBase::GetName( obj );
641     else
642     {
643       if ( !IsPreview() )
644       {
645         QStringList aParameters;
646
647         for ( int i = 0; i < anOperators->length(); i++ )
648           aParameters << QString( anOperators[i] );
649
650         for ( int i = 0; i < aParams->length(); i++ )
651           aParameters << QString( aParams[i] );
652
653         aParameters << getTexts( aParams );
654         anObj->SetParameters(aParameters.join(":").toLatin1().constData());
655       }
656       objects.push_back( anObj._retn() );
657     }
658   }
659
660   if ( !anErrorObjNames.empty() )
661     MESSAGE( "ERRORS occured while processing the following objects: " << anErrorObjNames.join( " " ).toLatin1().data() );
662     
663   return anErrorObjNames.size() < myObjects->length(); // true if at least one object was OK, false if ALL objects were nil after Healing.
664 }
665
666 //=================================================================================
667 // function : getActiveOperators
668 // purpose  :
669 //=================================================================================
670 GEOM::string_array* RepairGUI_ShapeProcessDlg::getActiveOperators()
671 {
672   GEOM::string_array_var anOperators = new GEOM::string_array();
673   QStringList aCheckedList;
674
675   for ( int i = 0; i < myOpList->count(); i++ ) {
676     if ( myOpList->item( i )->checkState() == Qt::Checked )
677       aCheckedList << myOpList->item( i )->text();
678   }
679
680   anOperators->length( aCheckedList.count() );
681
682   for ( int i = 0; i < aCheckedList.count(); i++ )
683     anOperators[i] = CORBA::string_dup( aCheckedList[i].toLatin1().constData() );
684                  
685   return anOperators._retn();
686 }
687
688 //=================================================================================
689 // function : getcontrol
690 // purpose  :
691 //=================================================================================
692 QWidget* RepairGUI_ShapeProcessDlg::getControl( const QString& theParam )
693 {
694   if ( theParam == "SplitAngle.Angle" )                           return mySplitAngleAngle;
695   else if ( theParam == "SplitAngle.MaxTolerance" )               return mySplitAngleMaxTol;
696   else if ( theParam == "SplitClosedFaces.NbSplitPoints" )        return mySplitClosedFacesNum;
697   else if ( theParam == "FixFaceSize.Tolerance" )                 return myFixFaceSizeTol;
698   else if ( theParam == "DropSmallEdges.Tolerance3d" )            return myDropSmallEdgesTol3D;
699   else if ( theParam == "BSplineRestriction.SurfaceMode" )        return myBSplineSurfModeChk;
700   else if ( theParam == "BSplineRestriction.Curve3dMode" )        return myBSpline3DCurveChk;
701   else if ( theParam == "BSplineRestriction.Curve2dMode" )        return myBSpline2DCurveChk;
702   else if ( theParam == "BSplineRestriction.Tolerance3d" )        return myBSplineTol3D;
703   else if ( theParam == "BSplineRestriction.Tolerance2d" )        return myBSplineTol2D;
704   else if ( theParam == "BSplineRestriction.RequiredDegree" )     return myBSplineDegree;
705   else if ( theParam == "BSplineRestriction.RequiredNbSegments" ) return myBSplineSegments;
706   else if ( theParam == "BSplineRestriction.Continuity3d" )       return myBSpline3DCont;
707   else if ( theParam == "BSplineRestriction.Continuity2d" )       return myBSpline2DCont;
708   else if ( theParam == "SplitContinuity.Tolerance3d" )           return mySplitContTol3D;
709   else if ( theParam == "SplitContinuity.SurfaceContinuity" )     return mySplitContSurfCont;
710   else if ( theParam == "SplitContinuity.CurveContinuity" )       return mySplitContCurvCont;
711   else if ( theParam == "ToBezier.SurfaceMode" )                  return myToBezierSurfModeChk;
712   else if ( theParam == "ToBezier.Curve3dMode" )                  return myToBezier3DCurveChk;
713   else if ( theParam == "ToBezier.Curve2dMode" )                  return myToBezier2DCurveChk;
714   else if ( theParam == "ToBezier.MaxTolerance" )                 return myToBezierMaxTol;
715   else if ( theParam == "SameParameter.Tolerance3d" )             return mySameParameterTol3D;
716   else if ( theParam == "FixShape.Tolerance3d" )                  return myFixShapeTol3D;
717   else if ( theParam == "FixShape.MaxTolerance3d" )               return myFixShapeMaxTol3D;
718   return 0;
719 }
720
721 //=================================================================================
722 // function : getParameters
723 // purpose  :
724 //=================================================================================
725 void RepairGUI_ShapeProcessDlg::initParamsValues()
726 {
727   if ( myOpLst.count() )
728     return;  // already filled
729
730   myOpLst << "FixShape";
731   myValMap["FixShape"] << "FixShape.Tolerance3d";
732   myValMap["FixShape"] << "FixShape.MaxTolerance3d";
733
734   myOpLst << "FixFaceSize";
735   myValMap["FixFaceSize"] << "FixFaceSize.Tolerance";
736
737   myOpLst << "DropSmallEdges";
738   myValMap["DropSmallEdges"] << "DropSmallEdges.Tolerance3d";
739
740   myOpLst << "SplitAngle";
741   myValMap["SplitAngle"] << "SplitAngle.Angle";
742   myValMap["SplitAngle"] << "SplitAngle.MaxTolerance";
743
744   myOpLst << "SplitClosedFaces";
745   myValMap["SplitClosedFaces"] << "SplitClosedFaces.NbSplitPoints";
746
747   myOpLst << "SplitContinuity";
748   myValMap["SplitContinuity"] << "SplitContinuity.Tolerance3d";
749   myValMap["SplitContinuity"] << "SplitContinuity.SurfaceContinuity";
750   myValMap["SplitContinuity"] << "SplitContinuity.CurveContinuity";
751
752   myOpLst << "BSplineRestriction";
753   myValMap["BSplineRestriction"] << "BSplineRestriction.SurfaceMode";
754   myValMap["BSplineRestriction"] << "BSplineRestriction.Curve3dMode";
755   myValMap["BSplineRestriction"] << "BSplineRestriction.Curve2dMode";
756   myValMap["BSplineRestriction"] << "BSplineRestriction.Tolerance3d";
757   myValMap["BSplineRestriction"] << "BSplineRestriction.Tolerance2d";
758   myValMap["BSplineRestriction"] << "BSplineRestriction.RequiredDegree";
759   myValMap["BSplineRestriction"] << "BSplineRestriction.RequiredNbSegments";
760   myValMap["BSplineRestriction"] << "BSplineRestriction.Continuity3d";
761   myValMap["BSplineRestriction"] << "BSplineRestriction.Continuity2d";
762
763   myOpLst << "ToBezier";
764   myValMap["ToBezier"] << "ToBezier.SurfaceMode";
765   myValMap["ToBezier"] << "ToBezier.Curve3dMode";
766   myValMap["ToBezier"] << "ToBezier.Curve2dMode";
767   myValMap["ToBezier"] << "ToBezier.MaxTolerance";
768
769   myOpLst << "SameParameter";
770   myValMap["SameParameter"] << "SameParameter.Tolerance3d";
771 }
772
773 //=================================================================================
774 // function : getParameters
775 // purpose  :
776 //=================================================================================
777 GEOM::string_array* RepairGUI_ShapeProcessDlg::getParameters( const GEOM::string_array& theOperators )
778 {
779   GEOM::string_array_var aParams = new GEOM::string_array();
780   int i = 0, j = 0;
781
782   // calculate the length of parameters
783   for ( i = 0, j = 0; i < theOperators.length(); i++ )
784     j += myValMap[ QString( theOperators[i] ) ].size();
785   
786   // set the new length of paremeters
787   aParams->length( j );
788
789   // fill the parameters
790   for ( i = 0, j = 0; i < theOperators.length(); i++ ) {
791     QStringList aValLst = myValMap[ QString( theOperators[i] ) ];
792     for ( QStringList::Iterator it = aValLst.begin(); it != aValLst.end(); ++it )
793       aParams[j++] = CORBA::string_dup( (*it).toLatin1().constData() );
794   }
795
796   return aParams._retn();
797 }
798
799
800 //=================================================================================
801 // function : getValues
802 // purpose  :
803 //=================================================================================
804 GEOM::string_array* RepairGUI_ShapeProcessDlg::getValues( const GEOM::string_array& theParams )
805 {
806   GEOM::string_array_var aValues = new GEOM::string_array();
807   aValues->length( theParams.length() );
808     
809   for ( int i = 0; i < theParams.length(); i++ ) {
810     QWidget* aCtrl = getControl( (const char*)theParams[i] );
811     if ( aCtrl )
812       aValues[i] = get_convert( (const char*)theParams[i], getValue( aCtrl ) );
813   }
814     
815   return aValues._retn();
816 }
817
818 //=================================================================================
819 // function : getTexts
820 // purpose  :
821 //=================================================================================
822 QStringList RepairGUI_ShapeProcessDlg::getTexts( const GEOM::string_array& theParams )
823 {
824   QStringList aTexts;
825     
826   for ( int i = 0; i < theParams.length(); i++ ) {
827     QWidget* aCtrl = getControl( (const char*)theParams[i] );
828     if ( aCtrl )
829     {
830       QString aText = getText( aCtrl );
831       if( !aText.isNull() )
832         aTexts.append( aText );
833     }
834   }
835     
836   return aTexts;
837 }
838
839 //=================================================================================
840 // function : initSelection
841 // purpose  : set selection of ALL shape types except vertexes
842 //=================================================================================
843 void RepairGUI_ShapeProcessDlg::initSelection()
844 {
845   TColStd_MapOfInteger aTypes;
846   aTypes.Add( GEOM_COMPOUND );
847   aTypes.Add( GEOM_SOLID );
848   aTypes.Add( GEOM_SHELL );
849   aTypes.Add( GEOM_FACE );
850   aTypes.Add( GEOM_WIRE );
851   aTypes.Add( GEOM_EDGE );
852   globalSelection( aTypes );
853 }
854
855 //=================================================================================
856 // function : advOptionToggled
857 // purpose  : this slot is used to warn the user about possible consequences
858 //            of enabling some advanced options
859 //=================================================================================
860 void RepairGUI_ShapeProcessDlg::advOptionToggled( bool on )
861 {
862   QAbstractButton* btn = (QAbstractButton*)sender();
863   if ( on && btn->isCheckable() &&
864        SUIT_MessageBox::warning( this,
865                                  tr( "GEOM_WRN_WARNING" ), tr( "TIME_CONSUMING" ),
866                                  SUIT_MessageBox::Yes | SUIT_MessageBox::No ) == SUIT_MessageBox::No )
867     btn->toggle();
868 }