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