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