]> SALOME platform Git repositories - modules/geom.git/blob - src/RepairGUI/RepairGUI_ShapeProcessDlg.cxx
Salome HOME
6073f4cbdc096a35de1c2061d4c9ae319ab6b36e
[modules/geom.git] / src / RepairGUI / RepairGUI_ShapeProcessDlg.cxx
1 //  Copyright (C) 2007-2008  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 #include <QtxDoubleSpinBox.h>
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 <TCollection_AsciiString.hxx>
45 #include <TColStd_MapOfInteger.hxx>
46
47 #include <QListWidget>
48 #include <QStackedLayout>
49
50 //=================================================================================
51 // class    : RepairGUI_ShapeProcessDlg()
52 // purpose  : Constructs a RepairGUI_ShapeProcessDlg  which is a child of 'parent', with the
53 //            name 'name' and widget flags set to 'f'.
54 //            The dialog will by default be modeless, unless you set 'modal' to
55 //            TRUE to construct a modal dialog.
56 //=================================================================================
57 RepairGUI_ShapeProcessDlg::RepairGUI_ShapeProcessDlg( GeometryGUI* theGeometryGUI, QWidget* parent,
58                                                       bool modal )
59   : GEOMBase_Skeleton( theGeometryGUI, parent, modal )
60 {
61   setHelpFileName( "shape_processing_operation_page.html" );
62   init();
63 }
64
65 //=================================================================================
66 // function : ~RepairGUI_ShapeProcessDlg()
67 // purpose  : Destroys the object and frees any allocated resources
68 //=================================================================================
69 RepairGUI_ShapeProcessDlg::~RepairGUI_ShapeProcessDlg()
70 {
71 }
72
73 //=================================================================================
74 // function : Init()
75 // purpose  :
76 //=================================================================================
77 void RepairGUI_ShapeProcessDlg::init()
78 {
79   //myGeomGUI->SetState( 0 );
80
81   initParamsValues();
82   initSelection();
83         
84   setWindowTitle( tr( "GEOM_SHAPEPROCESS_TITLE" ) );
85
86   mainFrame()->GroupConstructors->hide();
87   
88   // select widget on the top 
89   mySelectWdgt = new DlgRef_1Sel( centralWidget() );
90   mySelectWdgt->GroupBox1->setTitle( tr( "GEOM_SHAPE" ) );
91   mySelectWdgt->TextLabel1->setText( tr( "GEOM_SELECTED_OBJECTS" ) );
92   mySelectWdgt->PushButton1->setIcon( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
93   mySelectWdgt->LineEdit1->setReadOnly( true );
94
95   // layout the two group boxes in the middle, add a list of operations
96   QGroupBox* anOperGr = new QGroupBox( tr( "GEOM_OPERATIONS" ), centralWidget() );
97
98   // operations list widget
99   myOpList = new QListWidget( anOperGr );
100   myOpList->setSortingEnabled( false );
101   myOpList->setSizePolicy( QSizePolicy( QSizePolicy::Minimum, QSizePolicy::Expanding ) );
102
103   QVBoxLayout* aOperLay = new QVBoxLayout( anOperGr );
104   aOperLay->setMargin( 9 );
105   aOperLay->addWidget( myOpList );
106
107   QGroupBox* aParamsGr = new QGroupBox( tr( "GEOM_PARAMETERS" ), centralWidget() );
108
109   // add a widget stack to the parameters group box
110   QStackedLayout* aStack = new QStackedLayout( aParamsGr );
111
112   // continueties values..
113   QStringList aContinueties = QString( "C0,G1,C1,G2,C2,C3,CN" ).split( "," );
114
115   // fill in the widgets
116   for ( int i = 0; i < myOpLst.count(); i++ ) {
117     QListWidgetItem* item = new QListWidgetItem( myOpLst[i] );
118     item->setFlags( Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsUserCheckable );
119     item->setCheckState( Qt::Unchecked );
120     myOpList->addItem( item );
121
122     QWidget* w;
123     if ( myOpLst[i] == "FixShape" ) {
124       // FixShape
125       w = new QWidget( aParamsGr );
126       QGridLayout* aLay = new QGridLayout( w );
127       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
128       
129       myFixShapeTol3D = new SalomeApp_DoubleSpinBox( w );
130       initSpinBox( myFixShapeTol3D, 0., 100., 1e-7, "len_tol_precision" );
131       myFixShapeMaxTol3D = new SalomeApp_DoubleSpinBox( w );
132       initSpinBox( myFixShapeMaxTol3D, 0., 100., 1e-7, "len_tol_precision" );      
133       
134       aLay->addWidget( new QLabel( tr( "GEOM_3D_TOLERANCE" ), w ), 0, 0 );
135       aLay->addWidget( myFixShapeTol3D, 0, 1 );
136       aLay->addWidget( new QLabel( tr( "GEOM_MAX_3D_TOLERANCE" ), w ), 1, 0 );
137       aLay->addWidget( myFixShapeMaxTol3D, 1, 1 );
138       aLay->setRowStretch( aLay->rowCount(), 5 );
139     }
140     else if ( myOpLst[i] == "FixFaceSize" ) {
141       // FixFaceSize  
142       w = new QWidget( aParamsGr );
143       QGridLayout* aLay = new QGridLayout( w );
144       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
145       
146       myFixFaceSizeTol = new SalomeApp_DoubleSpinBox( w );
147       initSpinBox( myFixFaceSizeTol, 0., 100., 1e-7, "len_tol_precision" );      
148       
149       aLay->addWidget( new QLabel( tr( "GEOM_TOLERANCE" ), w ), 0, 0 );
150       aLay->addWidget( myFixFaceSizeTol, 0, 1 );
151       aLay->setRowStretch( aLay->rowCount(), 5 );
152     }
153     else if ( myOpLst[i] == "DropSmallEdges" ) {
154       // DropSmallEdges
155       w = new QWidget( aParamsGr );
156       QGridLayout* aLay = new QGridLayout( w );
157       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
158       
159       myDropSmallEdgesTol3D = new SalomeApp_DoubleSpinBox( w );
160       initSpinBox( myDropSmallEdgesTol3D, 0., 100., 1e-7, "len_tol_precision" );
161   
162       aLay->addWidget( new QLabel( tr( "GEOM_3D_TOLERANCE" ), w ), 0, 0 );
163       aLay->addWidget( myDropSmallEdgesTol3D, 0, 1 );
164       aLay->setRowStretch( aLay->rowCount(), 5 );
165     }
166     else if ( myOpLst[i] == "SplitAngle" ) {
167       // SplitAngle
168       w = new QWidget( aParamsGr );
169       QGridLayout* aLay = new QGridLayout( w );
170       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
171       
172       mySplitAngleAngle = new SalomeApp_DoubleSpinBox( w );
173       initSpinBox( mySplitAngleAngle, 0, 360, 1, "angle_precision" );      
174       mySplitAngleMaxTol = new SalomeApp_DoubleSpinBox( w );
175       initSpinBox( mySplitAngleMaxTol, 0., 100., 1e-7, "ang_tol_precision" );      
176       
177       aLay->addWidget( new QLabel( tr( "GEOM_ANGLE_1" ), w ), 0, 0 );
178       aLay->addWidget( mySplitAngleAngle, 0, 1 );
179       aLay->addWidget( new QLabel( tr( "GEOM_MAX_TOLERANCE" ), w ), 1, 0 );
180       aLay->addWidget( mySplitAngleMaxTol, 1, 1 );
181       aLay->setRowStretch( aLay->rowCount(), 5 );
182     }
183     else if ( myOpLst[i] == "SplitClosedFaces" ) {
184       // SplitClosedFaces
185       w = new QWidget( aParamsGr );
186       QGridLayout* aLay = new QGridLayout( w );
187       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
188       
189       mySplitClosedFacesNum = new SalomeApp_IntSpinBox( w );
190   
191       aLay->addWidget( new QLabel( tr( "GEOM_NUM_SPLIT_POINTS" ), w ), 0, 0 );
192       aLay->addWidget( mySplitClosedFacesNum, 0, 1 );
193       aLay->setRowStretch( aLay->rowCount(), 5 );
194     }      
195     else if ( myOpLst[i] == "SplitContinuity" ) {
196       // SplitContinuity
197       w = new QWidget( aParamsGr );
198       QGridLayout* aLay = new QGridLayout( w );
199       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
200
201       mySplitContTol3D = new SalomeApp_DoubleSpinBox( w );
202       initSpinBox( mySplitContTol3D, 0., 100., 1e-7, "len_tol_precision" );
203       mySplitContSurfCont = new QComboBox( w );
204       mySplitContSurfCont->addItems( aContinueties );
205       mySplitContCurvCont = new QComboBox( w );
206       mySplitContCurvCont->addItems( aContinueties );
207       
208       aLay->addWidget( new QLabel( tr( "GEOM_3D_TOLERANCE" ), w ), 0, 0 );
209       aLay->addWidget( mySplitContTol3D, 0, 1 );
210       aLay->addWidget( new QLabel( tr( "GEOM_SURFACE_CONTINUTY" ), w ), 1, 0 );
211       aLay->addWidget( mySplitContSurfCont, 1, 1 );
212       aLay->addWidget( new QLabel( tr( "GEOM_CURVE_CONTINUTY" ), w ), 2, 0 );
213       aLay->addWidget( mySplitContCurvCont, 2, 1 );
214       aLay->setRowStretch( aLay->rowCount(), 5 );
215     }
216     else if ( myOpLst[i] == "BSplineRestriction" ) {
217       // BSplineRestriction
218       w = new QWidget( aParamsGr );
219       QGridLayout* aLay = new QGridLayout( w );
220       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
221
222       myBSplineSurfModeChk = new QCheckBox( tr("GEOM_SURFACE_MODE"), w );
223       myBSpline3DCurveChk = new QCheckBox( tr("GEOM_3D_CURVE_MODE"), w );
224       myBSpline2DCurveChk = new QCheckBox( tr("GEOM_2D_CURVE_MODE"), w );
225
226       myBSplineTol3D = new SalomeApp_DoubleSpinBox( w );
227       initSpinBox( mySplitContTol3D, 0., 100., 1e-7, "len_tol_precision" );
228       
229       myBSplineTol2D = new SalomeApp_DoubleSpinBox( w );
230       initSpinBox( myBSplineTol2D, 0., 100., 1e-7, "param_tol_precision" );      
231
232       myBSplineDegree = new SalomeApp_IntSpinBox( w );
233       myBSplineSegments = new SalomeApp_IntSpinBox( w );
234       myBSpline2DCont = new QComboBox( w );
235       myBSpline2DCont->addItems( aContinueties );
236       myBSpline3DCont = new QComboBox( w );
237       myBSpline3DCont->addItems( aContinueties );
238       
239       myBSplineSurfModeChk->setChecked( true );
240       myBSpline3DCurveChk->setChecked( true );
241       myBSpline2DCurveChk->setChecked( true );
242
243       aLay->addWidget( myBSplineSurfModeChk, 0, 0 );
244       aLay->addWidget( myBSpline3DCurveChk,  1, 0 );
245       aLay->addWidget( myBSpline2DCurveChk,  2, 0 );
246       aLay->addWidget( new QLabel( tr( "GEOM_3D_TOLERANCE" ), w ), 3, 0 );
247       aLay->addWidget( myBSplineTol3D, 3, 1 );
248       aLay->addWidget( new QLabel( tr( "GEOM_2D_TOLERANCE" ), w ), 4, 0 );
249       aLay->addWidget( myBSplineTol2D, 4, 1 );
250       aLay->addWidget( new QLabel( tr( "GEOM_REQUIRED_DEGREE" ), w ), 5, 0 );
251       aLay->addWidget( myBSplineDegree, 5, 1 );
252       aLay->addWidget( new QLabel( tr( "GEOM_REQUIRED_NUM_SEGMENTS" ), w ), 6, 0 );
253       aLay->addWidget( myBSplineSegments, 6, 1 );
254       aLay->addWidget( new QLabel( tr( "GEOM_3D_CONTINUTY" ), w ), 7, 0 );
255       aLay->addWidget( myBSpline3DCont, 7, 1 );
256       aLay->addWidget( new QLabel( tr( "GEOM_2D_CONTINUTY" ), w ), 8, 0 );
257       aLay->addWidget( myBSpline2DCont, 8, 1 );
258       aLay->setRowStretch( aLay->rowCount(), 5 );
259     }
260     else if ( myOpLst[i] == "ToBezier" ) {
261       // ToBezier
262       w = new QWidget( aParamsGr );
263       QGridLayout* aLay = new QGridLayout( w );
264       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
265
266       myToBezierSurfModeChk = new QCheckBox( tr("GEOM_SURFACE_MODE"), w );
267       myToBezier3DCurveChk = new QCheckBox( tr("GEOM_3D_CURVE_MODE"), w );
268       myToBezier2DCurveChk = new QCheckBox( tr("GEOM_2D_CURVE_MODE"), w );
269   
270       myToBezierMaxTol = new SalomeApp_DoubleSpinBox( w );
271       initSpinBox( myToBezierMaxTol, 0., 100., 1e-7, "len_tol_precision" );            
272
273       aLay->addWidget( myToBezierSurfModeChk, 0, 0 );
274       aLay->addWidget( myToBezier3DCurveChk, 1, 0 );
275       aLay->addWidget( myToBezier2DCurveChk, 2, 0 );
276       aLay->addWidget( new QLabel( tr( "GEOM_MAX_TOLERANCE" ), w ), 3, 0 );
277       aLay->addWidget( myToBezierMaxTol, 3, 1 );
278       aLay->setRowStretch( aLay->rowCount(), 5 );
279     }
280     else if ( myOpLst[i] == "SameParameter" ) {
281       // SameParameter
282       w = new QWidget( aParamsGr );
283       QGridLayout* aLay = new QGridLayout( w );
284       aLay->setMargin( 9 ); aLay->setSpacing( 6 );
285
286       mySameParameterTol3D = new SalomeApp_DoubleSpinBox( w );
287       initSpinBox( mySameParameterTol3D, 0., 100., 1e-7, "len_tol_precision" );            
288       
289       aLay->addWidget( new QLabel( tr( "GEOM_3D_TOLERANCE" ), w ), 0, 0 );
290       aLay->addWidget( mySameParameterTol3D, 0, 1 );
291       aLay->setRowStretch( aLay->rowCount(), 5 );
292     }
293     else {
294       w = new QWidget( aParamsGr ); // dumb widget
295     }
296     aStack->insertWidget( i, w );
297   }
298
299   QGridLayout* layout = new QGridLayout( centralWidget() );
300   layout->setMargin( 0 ); layout->setSpacing( 6 );
301   layout->addWidget( mySelectWdgt, 0, 0, 1, 2 );
302   layout->addWidget( anOperGr,     1, 0 );
303   layout->addWidget( aParamsGr,    1, 1 );
304
305   // signals and slots connections
306   connect( buttonOk(),    SIGNAL( clicked() ), this, SLOT( onOk() ) );
307   connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( onApply() ) );
308
309   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
310            SIGNAL( currentSelectionChanged() ), this, SLOT( selectionChanged() ) );
311
312   connect( mySelectWdgt->PushButton1, SIGNAL( clicked() ),       this, SLOT( selectClicked() ) );
313   connect( mySelectWdgt->LineEdit1,   SIGNAL( returnPressed() ), this, SLOT( lineEditReturnPressed() ) );
314
315   connect( myToBezierSurfModeChk,     SIGNAL( toggled( bool ) ), this, SLOT( advOptionToggled( bool ) ) );
316
317   connect( myOpList, SIGNAL( currentRowChanged( int ) ), aStack, SLOT( setCurrentIndex( int ) ) );
318
319   adjustSize();
320   loadDefaults(); // init dialog fields with values from resource file
321   //myOpList->setCurrentRow( myOpList->findItem( 0 );
322   reset();
323
324   initName( tr( "PROCESS_SHAPE_NEW_OBJ_NAME" ) );
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   if ( onApply() )
334     ClickOnCancel();
335 }
336
337 //=================================================================================
338 // function : onApply()
339 // purpose  :
340 //=================================================================================
341 bool RepairGUI_ShapeProcessDlg::onApply()
342 {
343   if ( !onAccept() )
344     return false;
345
346   initName();
347
348   reset();
349   initSelection();
350   
351   return true;
352 }
353
354
355 //=================================================================================
356 // function : selectionChanged()
357 // purpose  : Called when selection as changed or other case
358 //          : used only by SelectButtonC1A1 (LineEditC1A1)
359 //=================================================================================
360 void RepairGUI_ShapeProcessDlg::selectionChanged()
361 {
362   reset();
363         
364   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
365   SALOME_ListIO aSelList;
366   aSelMgr->selectedObjects(aSelList);
367
368   Standard_Boolean aRes = Standard_False;
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(), aRes );
373     if ( !CORBA::is_nil( aSelectedObject ) && aRes )
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() * 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 / 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 }