Salome HOME
Update copyright information
[modules/geom.git] / src / RepairGUI / RepairGUI_GlueDlg.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 RepairGUI : GUI for Geometry component
23 // File   : RepairGUI_GlueDlg.cxx
24 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S. 
25 //
26 #include "RepairGUI_GlueDlg.h"
27
28 #include <DlgRef.h>
29 #include <GeometryGUI.h>
30 #include <GEOMBase.h>
31 #include <QtxDoubleSpinBox.h>
32
33 #include <SalomeApp_Application.h>
34 #include <LightApp_SelectionMgr.h>
35 #include <SalomeApp_Study.h>
36 #include <SalomeApp_Tools.h>
37 #include <SUIT_Session.h>
38 #include <SUIT_Desktop.h>
39 #include <SUIT_MessageBox.h>
40 #include <SUIT_OverrideCursor.h>
41 #include <SUIT_ResourceMgr.h>
42 #include <SUIT_ViewWindow.h>
43 #include <SUIT_ViewManager.h>
44 #include <OCCViewer_ViewModel.h>
45 #include <SALOME_ListIteratorOfListIO.hxx>
46
47 #include <GEOMImpl_Types.hxx>
48
49 #include <TCollection_AsciiString.hxx>
50
51 #define DEFAULT_TOLERANCE_VALUE 1e-07
52
53 //=================================================================================
54 // class    : RepairGUI_GlueDlg()
55 // purpose  : Constructs a RepairGUI_GlueDlg  which is a child of 'parent', with the
56 //            name 'name' and widget flags set to 'f'.
57 //            The dialog will by default be modeless, unless you set 'modal' to
58 //            TRUE to construct a modal dialog.
59 //=================================================================================
60 RepairGUI_GlueDlg::RepairGUI_GlueDlg( GeometryGUI* theGeometryGUI, QWidget* parent,
61                                       bool modal )
62   : GEOMBase_Skeleton( theGeometryGUI, parent, modal ),
63     myCurrConstrId( -1 )
64 {
65   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_GLUE_FACES" ) ) );
66   QPixmap image2( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_GLUE_FACES2" )  ));
67   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
68
69   setWindowTitle( tr( "GEOM_GLUE_TITLE" ) );
70
71   /***************************************************************/
72   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_GLUE_TITLE" ) );
73   mainFrame()->RadioButton1->setIcon( image0 );
74   mainFrame()->RadioButton2->setIcon( image2 );
75   mainFrame()->RadioButton3->setAttribute( Qt::WA_DeleteOnClose );
76   mainFrame()->RadioButton3->close();
77
78   GroupPoints = new DlgRef_1SelExt( centralWidget() );
79   GroupPoints->GroupBox1->setTitle( tr( "GEOM_GLUE" ) );
80   GroupPoints->TextLabel1->setText( tr( "GEOM_SELECTED_SHAPE" ) );
81   GroupPoints->PushButton1->setIcon( image1 );
82   GroupPoints->LineEdit1->setReadOnly( true );
83   
84   QLabel* aTolLab = new QLabel( tr( "GEOM_TOLERANCE" ), GroupPoints->Box );
85   myTolEdt = new QtxDoubleSpinBox( 0.0, 100.0, DEFAULT_TOLERANCE_VALUE, 7, 7, GroupPoints->Box );
86   myTolEdt->setValue( DEFAULT_TOLERANCE_VALUE );
87
88   QGridLayout* boxLayout = new QGridLayout( GroupPoints->Box );
89   boxLayout->setMargin( 0 ); boxLayout->setSpacing( 6 );
90   boxLayout->addWidget( aTolLab,  0, 0 );
91   boxLayout->addWidget( myTolEdt, 0, 2 );
92   /***************************************************************/
93
94   GroupPoints2 = new DlgRef_1SelExt( centralWidget() );
95   GroupPoints2->GroupBox1->setTitle( tr( "GEOM_GLUE" ) );
96   GroupPoints2->TextLabel1->setText( tr( "GEOM_SELECTED_SHAPE" ) );
97   GroupPoints2->PushButton1->setIcon( image1 );
98   GroupPoints2->LineEdit1->setReadOnly( true );
99
100   QLabel* aTolLab2 = new QLabel( tr( "GEOM_TOLERANCE" ), GroupPoints2->Box );
101   myTolEdt2 = new QtxDoubleSpinBox( GroupPoints2->Box );
102   initSpinBox( myTolEdt2, 0, 100, 1e-7, 7 );
103   myTolEdt2->setValue( DEFAULT_TOLERANCE_VALUE );
104
105   myDetectBtn = new QPushButton( tr( "GEOM_DETECT" ) + QString( " [%1]" ).arg( tr( "GLUE_FACES" ) ), 
106                                  GroupPoints2->Box );
107   mySubShapesChk = new QCheckBox( tr( "SELECT_FACES" ), GroupPoints2->Box );
108
109   boxLayout = new QGridLayout( GroupPoints2->Box );
110   boxLayout->setMargin( 0 ); boxLayout->setSpacing( 6 );
111   boxLayout->addWidget( aTolLab2,    0, 0 );
112   boxLayout->addWidget( myTolEdt2,   0, 2 );
113   boxLayout->addWidget( myDetectBtn, 1, 0, 1, 3 );
114   boxLayout->addWidget( mySubShapesChk, 2, 0, 1, 3 );
115
116   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
117   layout->setMargin( 0 ); layout->setSpacing( 6 );
118   layout->addWidget( GroupPoints );
119   layout->addWidget( GroupPoints2 );
120
121   /***************************************************************/
122
123   setHelpFileName( "glue_faces_operation_page.html" );
124   
125   // Disable second way of gluing if OCC viewer is not active one
126   if ( myGeomGUI->getApp()->desktop()->activeWindow()->getViewManager()->getType()
127        != OCCViewer_Viewer::Type() )
128     mainFrame()->RadioButton2->setEnabled( false );
129
130   Init();
131 }
132
133
134 //=================================================================================
135 // function : ~RepairGUI_GlueDlg()
136 // purpose  : Destroys the object and frees any allocated resources
137 //=================================================================================
138 RepairGUI_GlueDlg::~RepairGUI_GlueDlg()
139 {
140 }
141
142
143 //=================================================================================
144 // function : Init()
145 // purpose  :
146 //=================================================================================
147 void RepairGUI_GlueDlg::Init()
148 {
149   /* init variables */
150   myEditCurrentArgument = GroupPoints->LineEdit1;
151
152   myObject = GEOM::GEOM_Object::_nil();
153
154   //myGeomGUI->SetState( 0 );
155   //globalSelection( GEOM_COMPOUND );
156
157   mainFrame()->GroupBoxPublish->show();
158
159   /* signals and slots connections */
160   connect( buttonOk(),    SIGNAL(clicked()), this, SLOT(ClickOnOk()));
161   connect( buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
162
163   connect( this,          SIGNAL( constructorsClicked( int ) ), this, SLOT( ConstructorsClicked( int ) ) );
164
165   connect( GroupPoints->PushButton1,  SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
166   connect( GroupPoints->LineEdit1,    SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
167
168   connect( GroupPoints2->PushButton1, SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
169   connect( GroupPoints2->LineEdit1,   SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
170   connect( myTolEdt2, SIGNAL( valueChanged( double ) ), this, SLOT( onTolerChanged( double ) ) );
171   connect( mySubShapesChk, SIGNAL( stateChanged( int ) ), this, SLOT( onSubShapesChk() ) );
172
173   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
174            this, SLOT( SelectionIntoArgument() ) );
175
176   connect( myDetectBtn, SIGNAL( clicked() ), this, SLOT( onDetect() ) );
177
178   initName( tr( "GLUE_NEW_OBJ_NAME" ) );
179
180   ConstructorsClicked( 0 );
181   
182   activateSelection();
183   updateButtonState();
184 }
185
186
187 //=================================================================================
188 // function : ConstructorsClicked()
189 // purpose  : Radio button management
190 //=================================================================================
191 void RepairGUI_GlueDlg::ConstructorsClicked( int constructorId )
192 {
193   if ( myCurrConstrId == constructorId )
194     return;
195   
196   disconnect( myGeomGUI->getApp()->selectionMgr(), 0, this, 0 );
197   
198   switch ( constructorId ) {
199   case 0:
200     GroupPoints2->hide();
201     GroupPoints->show();
202     GroupPoints->LineEdit1->setText( "" );
203     myEditCurrentArgument = GroupPoints->LineEdit1;
204     
205     if ( myCurrConstrId >= 0 ) {
206       // i.e. it is not initialisation
207       // copy tolerance from previous tolerance field
208       myTolEdt->setValue( myTolEdt2->value() );
209     }
210     break;
211   case 1:
212     GroupPoints->hide();
213     GroupPoints2->show();
214     GroupPoints->LineEdit1->setText( "" );
215     myEditCurrentArgument = GroupPoints2->LineEdit1;
216         
217     if ( myCurrConstrId >= 0 ) {
218       // i.e. it is not initialisation
219       // copy tolerance from previous tolerance field
220       myTolEdt2->setValue( myTolEdt->value() );
221       mySubShapesChk->setChecked( false );
222       clearTemporary();
223     }
224     break;
225   }
226     
227   myCurrConstrId = constructorId;
228
229   myEditCurrentArgument->setFocus();
230
231   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
232            this, SLOT( SelectionIntoArgument() ) );
233
234   qApp->processEvents();
235   updateGeometry();
236   resize( minimumSize() );
237
238   displayPreview();
239   updateButtonState();
240   activateSelection();
241   SelectionIntoArgument();
242 }
243
244
245 //=================================================================================
246 // function : ClickOnOk()
247 // purpose  : Same than click on apply but close this dialog.
248 //=================================================================================
249 void RepairGUI_GlueDlg::ClickOnOk()
250 {
251   if ( ClickOnApply() )
252     ClickOnCancel();
253 }
254
255
256 //=================================================================================
257 // function : ClickOnApply()
258 // purpose  :
259 //=================================================================================
260 bool RepairGUI_GlueDlg::ClickOnApply()
261 {
262   if ( !onAcceptLocal() )
263     return false;
264
265   initName();
266
267   //GroupPoints->LineEdit1->setText("");
268   //myObject = GEOM::GEOM_Object::_nil();
269
270   //globalSelection( GEOM_COMPOUND );
271
272   ConstructorsClicked( getConstructorId() );
273
274   return true;
275 }
276
277
278 //=================================================================================
279 // function : SelectionIntoArgument()
280 // purpose  : Called when selection
281 //=================================================================================
282 void RepairGUI_GlueDlg::SelectionIntoArgument()
283 {
284   if ( mySubShapesChk->isChecked() &&  getConstructorId() == 1 ) {
285     updateButtonState();
286     return;
287   }
288   
289   erasePreview();
290   myEditCurrentArgument->setText( "" );
291   myObject = GEOM::GEOM_Object::_nil();
292
293   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
294   SALOME_ListIO aSelList;
295   aSelMgr->selectedObjects(aSelList);
296
297   if ( aSelList.Extent() == 1 ) {
298     Handle(SALOME_InteractiveObject) anIO = aSelList.First();
299     Standard_Boolean aRes;
300     myObject = GEOMBase::ConvertIOinGEOMObject( anIO, aRes );
301     if ( aRes )
302       myEditCurrentArgument->setText( GEOMBase::GetName( myObject ) );
303   }
304   updateButtonState();
305 }
306
307 //=================================================================================
308 // function : SetEditCurrentArgument()
309 // purpose  :
310 //=================================================================================
311 void RepairGUI_GlueDlg::SetEditCurrentArgument()
312 {
313   const QObject* send = sender();
314   if ( send == GroupPoints->PushButton1 || send == GroupPoints2->PushButton1 )  {
315     myEditCurrentArgument->setFocus();
316     SelectionIntoArgument();
317   }
318 }
319
320
321 //=================================================================================
322 // function : LineEditReturnPressed()
323 // purpose  :
324 //=================================================================================
325 void RepairGUI_GlueDlg::LineEditReturnPressed()
326 {
327   const QObject* send = sender();
328   if ( send == GroupPoints->LineEdit1 ) {
329     myEditCurrentArgument = GroupPoints->LineEdit1;
330     GEOMBase_Skeleton::LineEditReturnPressed();
331   }
332   else if ( send == GroupPoints2->LineEdit1 ) {
333     myEditCurrentArgument = GroupPoints2->LineEdit1;
334     GEOMBase_Skeleton::LineEditReturnPressed();
335   }
336 }
337
338
339 //=================================================================================
340 // function : ActivateThisDialog()
341 // purpose  :
342 //=================================================================================
343 void RepairGUI_GlueDlg::ActivateThisDialog()
344 {
345   GEOMBase_Skeleton::ActivateThisDialog();
346   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ), 
347            this, SLOT( SelectionIntoArgument() ) );
348
349   //GroupPoints->LineEdit1->setText("");
350   //GroupPoints2->LineEdit1->setText("");
351   //myObject = GEOM::GEOM_Object::_nil();
352
353   //myGeomGUI->SetState( 0 );
354   //globalSelection( GEOM_COMPOUND );
355   activateSelection();
356 }
357
358
359 //=================================================================================
360 // function : enterEvent()
361 // purpose  : Mouse enter onto the dialog to activate it
362 //=================================================================================
363 void RepairGUI_GlueDlg::enterEvent( QEvent* )
364 {
365   if ( !mainFrame()->GroupConstructors->isEnabled() )
366     ActivateThisDialog();
367 }
368
369
370 //=================================================================================
371 // function : createOperation
372 // purpose  :
373 //=================================================================================
374 GEOM::GEOM_IOperations_ptr RepairGUI_GlueDlg::createOperation()
375 {
376   return getGeomEngine()->GetIShapesOperations( getStudyId() );
377 }
378
379 //=================================================================================
380 // function : isValid
381 // purpose  :
382 //=================================================================================
383 bool RepairGUI_GlueDlg::isValid( QString& )
384 {
385   double v = 0;
386   switch ( getConstructorId() )
387   {
388   case 0:
389     v = myTolEdt->value();  break;
390   case 1:
391     v = myTolEdt2->value(); break;
392   }
393   return !myObject->_is_nil() && ( IsPreview() || v > 0. );
394 }
395
396 //=================================================================================
397 // function : execute
398 // purpose  :
399 //=================================================================================
400 bool RepairGUI_GlueDlg::execute( ObjectList& objects )
401 {
402   bool aResult = false;
403   objects.clear();
404
405   switch ( getConstructorId() ) {
406   case 0:
407     {
408       GEOM::GEOM_Object_var anObj = GEOM::GEOM_IShapesOperations::_narrow
409         ( getOperation() )->MakeGlueFaces( myObject, myTolEdt->value(), true );
410       aResult = !anObj->_is_nil();
411       if ( aResult )
412         objects.push_back( anObj._retn() );
413       break;
414     }
415   case 1:
416     {
417       if ( IsPreview() ) {
418         // if this method is used for displaying preview then we must detect glue faces only
419         ObjectList::iterator anIter;
420         for ( anIter = myTmpObjs.begin(); anIter != myTmpObjs.end(); ++anIter )
421           objects.push_back( GEOM::GEOM_Object::_duplicate( *anIter ) );
422         return myTmpObjs.size() ? true : false;
423       } // IsPreview
424
425       // Make glue face by list.
426       // Iterate through myTmpObjs and verifies where each object is currently selected or not.
427       QMap<QString, char> selected;
428
429       // Get names of selected objects
430       LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
431       SALOME_ListIO aSelList;
432       aSelMgr->selectedObjects(aSelList);
433
434       SALOME_ListIteratorOfListIO it (aSelList);
435       for (; it.More(); it.Next()) 
436         selected.insert(it.Value()->getName(), 0);
437
438       // Iterate through result and select objects with names from selection
439       // ObjectList toRemoveFromEnggine;
440       ObjectList toGlue;
441       ObjectList::iterator anIter;
442       for ( anIter = myTmpObjs.begin(); anIter != myTmpObjs.end(); ++anIter ) {
443         if ( selected.contains( myGeomGUI->getApp()->orb()->object_to_string(*anIter) ) )
444           toGlue.push_back( *anIter );
445       }
446       
447       // make glue faces
448       GEOM::ListOfGO_var aListForGlue = new GEOM::ListOfGO();
449       aListForGlue->length( toGlue.size() );
450       ObjectList::iterator anIter3 = toGlue.begin();
451       for ( int i = 0; anIter3 != toGlue.end(); ++anIter3, ++i )
452         aListForGlue[ i ] = *anIter3;
453       GEOM::GEOM_Object_var anObj = GEOM::GEOM_IShapesOperations::_narrow
454         ( getOperation() )->MakeGlueFacesByList( myObject, myTolEdt2->value(), aListForGlue, true );
455
456       aResult = !anObj->_is_nil();
457
458       if ( aResult )
459         objects.push_back( anObj._retn() );
460
461       // Remove from engine useless objects
462       clearTemporary();
463
464       updateButtonState();
465
466       break;
467     } // case 1
468   } // switch
469
470   return aResult;
471 }
472
473 //=================================================================================
474 // function : restoreSubShapes
475 // purpose  :
476 //=================================================================================
477 void RepairGUI_GlueDlg::restoreSubShapes( SALOMEDS::Study_ptr   theStudy,
478                                           SALOMEDS::SObject_ptr theSObject )
479 {
480   if ( mainFrame()->CheckBoxRestoreSS->isChecked() ) {
481     GEOM::find_shape_method aFindMethod = GEOM::FSM_GetInPlace;
482     if ( getConstructorId() == 0 ) // MakeGlueFaces
483       aFindMethod = GEOM::FSM_GetInPlaceByHistory;
484
485     // empty list of arguments means that all arguments should be restored
486     getGeomEngine()->RestoreSubShapesSO( theStudy, theSObject, GEOM::ListOfGO(),
487                                          aFindMethod, /*theInheritFirstArg=*/true );
488   }
489 }
490
491 //================================================================
492 // Function : clearShapeBufferLocal
493 // Purpose  : 
494 //================================================================
495 void RepairGUI_GlueDlg::clearShapeBufferLocal( GEOM::GEOM_Object_ptr theObj )
496 {
497   if ( CORBA::is_nil( theObj ) )
498     return;
499
500   CORBA::String_var IOR = myGeomGUI->getApp()->orb()->object_to_string( theObj );
501   TCollection_AsciiString asciiIOR( (char *)( IOR.in() ) );
502   myGeomGUI->GetShapeReader().RemoveShapeFromBuffer( asciiIOR );
503
504   if ( !getStudy() || !( getStudy()->studyDS() ) )
505     return;
506
507   _PTR(Study) aStudy = getStudy()->studyDS();
508   _PTR(SObject) aSObj ( aStudy->FindObjectIOR( std::string( IOR.in() ) ) );
509   if ( !aSObj )
510     return;
511
512   _PTR(ChildIterator) anIt ( aStudy->NewChildIterator( aSObj ) );
513   for ( anIt->InitEx( true ); anIt->More(); anIt->Next() ) {
514     _PTR(GenericAttribute) anAttr;
515     if ( anIt->Value()->FindAttribute(anAttr, "AttributeIOR") ) {
516       _PTR(AttributeIOR) anIOR ( anAttr );
517       TCollection_AsciiString asciiIOR( (char*)anIOR->Value().c_str() );
518       myGeomGUI->GetShapeReader().RemoveShapeFromBuffer( asciiIOR );      
519     }
520   }
521 }
522
523 //================================================================
524 // Function : onAccept
525 // Purpose  : This method should be called from dialog's slots onOk() and onApply()
526 //            It perfroms user input validation, then it 
527 //            performs a proper operation and manages transactions, etc.
528 //================================================================
529 bool RepairGUI_GlueDlg::onAcceptLocal()
530 {
531   if ( !getStudy() || !( getStudy()->studyDS() ) )
532     return false;
533
534   _PTR(Study) aStudy = getStudy()->studyDS();
535
536   bool aLocked = aStudy->GetProperties()->IsLocked();
537   if ( aLocked ) {
538     MESSAGE("GEOMBase_Helper::onAccept - ActiveStudy is locked");
539     SUIT_MessageBox::warning( this, tr( "WRN_WARNING" ), tr( "WRN_STUDY_LOCKED" ), tr( "BUT_OK" ) );
540     return false;
541   }
542
543   QString msg;
544   if ( !isValid( msg ) ) {
545     showError( msg );
546     return false;
547   }
548
549   erasePreview( false );
550
551   try {
552     if ( openCommand() ) {
553       SUIT_OverrideCursor wc;
554       
555       myGeomGUI->getApp()->putInfo( "" );
556       ObjectList objects;
557       
558       if ( !execute( objects ) ) { 
559         wc.suspend();
560         abortCommand();
561         showError();
562       }
563       else {
564         const int nbObjs = objects.size();
565         for ( ObjectList::iterator it = objects.begin(); it != objects.end(); ++it ) {
566           QString aName = getNewObjectName();
567           if ( nbObjs > 1 ) {
568             if ( aName.isEmpty() )
569               aName = getPrefix( *it );
570             aName = GEOMBase::GetDefaultName( aName );
571           }
572           else {
573             // PAL6521: use a prefix, if some dialog box doesn't reimplement getNewObjectName()
574             if ( aName.isEmpty() )
575               aName = GEOMBase::GetDefaultName( getPrefix( *it ) );
576           }
577           addInStudy( *it, aName.toLatin1().data() );
578           display( *it, false );
579         }
580         
581         if ( nbObjs ) {
582           commitCommand();
583           updateObjBrowser();
584           myGeomGUI->getApp()->putInfo( QObject::tr("GEOM_PRP_DONE") );
585         }
586         else {
587           abortCommand();
588         }
589
590         // JFA 28.12.2004 BEGIN // To enable warnings
591         if ( !getOperation()->_is_nil() ) {
592           if ( !getOperation()->IsDone() ) {
593             wc.suspend();
594             QString msgw = QObject::tr( getOperation()->GetErrorCode() );
595             SUIT_MessageBox::warning( this, tr( "WRN_WARNING" ), msgw, tr( "BUT_OK" ) );
596           }
597         }
598         // JFA 28.12.2004 END
599       }
600     }
601   }
602   catch( const SALOME::SALOME_Exception& e ) {
603     SalomeApp_Tools::QtCatchCorbaException( e );
604     abortCommand();
605   }
606
607   updateViewer();
608   activateSelection();
609   updateButtonState();
610
611   return true;
612 }
613
614
615 //=================================================================================
616 // function : onDetect
617 // purpose  :
618 //=================================================================================
619 void RepairGUI_GlueDlg::onDetect()
620 {
621   clearTemporary();
622   QString msg;
623   if ( !isValid( msg ) ) {
624     showError( msg );
625     return;
626   }
627
628   buttonOk()->setEnabled( false );
629   buttonApply()->setEnabled( false );
630   globalSelection( GEOM_ALLSHAPES );
631
632   GEOM::ListOfGO_var aList = GEOM::GEOM_IShapesOperations::_narrow
633     ( getOperation() )->GetGlueFaces( myObject, myTolEdt2->value() );
634   
635   for ( int i = 0, n = aList->length(); i < n; i++ ) 
636     myTmpObjs.push_back(GEOM::GEOM_Object::_duplicate(aList[i]));
637   
638   if ( myTmpObjs.size() > 0  ) {
639     msg = tr( "FACES_FOR_GLUING_ARE_DETECTED" ).arg( myTmpObjs.size() );
640     mySubShapesChk->setChecked( true );
641   }
642   else {
643     msg = tr( "THERE_ARE_NO_FACES_FOR_GLUING" );
644   }
645   
646   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
647            this, SLOT( SelectionIntoArgument() ) ) ;
648   SUIT_MessageBox::information( this, tr( "GEOM_FREE_BOUNDS_TLT" ), msg, tr( "Close" ) );
649   updateButtonState();
650   activateSelection();
651 }
652
653 //=================================================================================
654 // function : activateSelection
655 // purpose  : Redisplay preview and Activate selection
656 //=================================================================================
657 void RepairGUI_GlueDlg::activateSelection()
658 {
659   erasePreview( false );
660   
661   int anId = getConstructorId();
662   if ( anId == 0 )  { 
663     // Case of whole gluing
664     disconnect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
665                 this, SLOT( SelectionIntoArgument() ) );
666     
667     globalSelection( GEOM_ALLSHAPES );
668     if ( myObject->_is_nil()) 
669       SelectionIntoArgument();
670
671     connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
672              this, SLOT( SelectionIntoArgument() ) );
673   } 
674   else {
675     // Second case of gluing
676     if ( !mySubShapesChk->isChecked() ) 
677       globalSelection( GEOM_ALLSHAPES );
678     else {
679       displayPreview( true, false, false, 2/*line width*/, 1/*display mode*/, Quantity_NOC_RED );
680       disconnect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
681                   this, SLOT( SelectionIntoArgument() ) ) ;
682       globalSelection( GEOM_PREVIEW );
683       connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
684                this, SLOT( SelectionIntoArgument() ) ) ;
685     } 
686   }
687   updateViewer();
688 }
689
690 //=================================================================================
691 // function : updateButtonState
692 // purpose  : Update button state 
693 //=================================================================================
694 void RepairGUI_GlueDlg::updateButtonState()
695 {
696   int anId = getConstructorId();
697   bool hasMainObj = !myObject->_is_nil();
698   if ( anId == 0 ) {
699     buttonOk()->setEnabled( hasMainObj );
700     buttonApply()->setEnabled( hasMainObj );
701   }
702   else
703   {
704     LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
705     SALOME_ListIO aSelList;
706     aSelMgr->selectedObjects(aSelList);
707
708     bool wasSelected = false;
709     SALOME_ListIteratorOfListIO it (aSelList);
710     if (it.More() > 0)
711       wasSelected = true;
712     bool wasDetected = myTmpObjs.size() ? true : false;
713     buttonOk()->setEnabled( hasMainObj && wasDetected && wasSelected );
714     buttonApply()->setEnabled( hasMainObj && wasDetected && wasSelected );
715     mySubShapesChk->setEnabled( hasMainObj && wasDetected );
716     myDetectBtn->setEnabled( hasMainObj );
717     if ( !hasMainObj || !wasDetected )
718       mySubShapesChk->setChecked( false );
719   }
720 }
721
722 //=================================================================================
723 // function : clearTemporary
724 // purpose  : Remove temporary objects from engine
725 //=================================================================================
726 void RepairGUI_GlueDlg::clearTemporary()
727 {
728   ObjectList::iterator anIter;
729   for ( anIter = myTmpObjs.begin(); anIter != myTmpObjs.end(); ++anIter )
730     getGeomEngine()->RemoveObject(*anIter);
731
732   myTmpObjs.clear();
733 }
734
735 //=================================================================================
736 // function : onTolerChanged
737 // purpose  : Remove temporary objects from engine
738 //=================================================================================
739 void RepairGUI_GlueDlg::onTolerChanged( double /*theVal*/ )
740 {
741   clearTemporary();
742   activateSelection();
743   updateButtonState();
744 }
745
746 //=================================================================================
747 // function : onSubShapesChk
748 // purpose  : Update selection mode
749 //=================================================================================
750 void RepairGUI_GlueDlg::onSubShapesChk()
751 {
752   if ( !mySubShapesChk->isChecked() )
753     clearTemporary();
754   activateSelection();
755   updateButtonState();
756 }
757
758 //=================================================================================
759 // function : ClickOnCancel
760 // purpose  : Remove temporary objects from engine and call method of base class
761 //=================================================================================
762 void RepairGUI_GlueDlg::ClickOnCancel()
763 {
764   clearTemporary();
765   GEOMBase_Skeleton::ClickOnCancel();
766 }