Salome HOME
Update from BR_V5_DEV 13Feb2009
[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 SalomeApp_DoubleSpinBox( 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 SalomeApp_DoubleSpinBox( 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( minimumSizeHint() );
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& msg )
384 {
385   bool ok = true;
386   double v = 0;
387   switch ( getConstructorId() )
388   {
389   case 0:
390     v = myTolEdt->value();
391     ok = myTolEdt->isValid( msg, !IsPreview() );
392     break;
393   case 1:
394     v = myTolEdt2->value(); 
395     ok = myTolEdt2->isValid( msg, !IsPreview() );
396     break;
397   }
398   return !myObject->_is_nil() && ( IsPreview() || v > 0. ) && ok;
399 }
400
401 //=================================================================================
402 // function : execute
403 // purpose  :
404 //=================================================================================
405 bool RepairGUI_GlueDlg::execute( ObjectList& objects )
406 {
407   bool aResult = false;
408   objects.clear();
409
410   switch ( getConstructorId() ) {
411   case 0:
412     {
413       GEOM::GEOM_Object_var anObj = GEOM::GEOM_IShapesOperations::_narrow
414         ( getOperation() )->MakeGlueFaces( myObject, myTolEdt->value(), true );
415       aResult = !anObj->_is_nil();
416       if ( aResult && !IsPreview() )
417       {
418         QStringList aParameters;
419         aParameters << myTolEdt->text();
420         anObj->SetParameters(GeometryGUI::JoinObjectParameters(aParameters));
421
422         objects.push_back( anObj._retn() );
423       }
424       break;
425     }
426   case 1:
427     {
428       if ( IsPreview() ) {
429         // if this method is used for displaying preview then we must detect glue faces only
430         ObjectList::iterator anIter;
431         for ( anIter = myTmpObjs.begin(); anIter != myTmpObjs.end(); ++anIter )
432           objects.push_back( GEOM::GEOM_Object::_duplicate( *anIter ) );
433         return myTmpObjs.size() ? true : false;
434       } // IsPreview
435
436       // Make glue face by list.
437       // Iterate through myTmpObjs and verifies where each object is currently selected or not.
438       QMap<QString, char> selected;
439
440       // Get names of selected objects
441       LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
442       SALOME_ListIO aSelList;
443       aSelMgr->selectedObjects(aSelList);
444
445       SALOME_ListIteratorOfListIO it (aSelList);
446       for (; it.More(); it.Next()) 
447         selected.insert(it.Value()->getName(), 0);
448
449       // Iterate through result and select objects with names from selection
450       // ObjectList toRemoveFromEnggine;
451       ObjectList toGlue;
452       ObjectList::iterator anIter;
453       for ( anIter = myTmpObjs.begin(); anIter != myTmpObjs.end(); ++anIter ) {
454         if ( selected.contains( myGeomGUI->getApp()->orb()->object_to_string(*anIter) ) )
455           toGlue.push_back( *anIter );
456       }
457       
458       // make glue faces
459       GEOM::ListOfGO_var aListForGlue = new GEOM::ListOfGO();
460       aListForGlue->length( toGlue.size() );
461       ObjectList::iterator anIter3 = toGlue.begin();
462       for ( int i = 0; anIter3 != toGlue.end(); ++anIter3, ++i )
463         aListForGlue[ i ] = *anIter3;
464       GEOM::GEOM_Object_var anObj = GEOM::GEOM_IShapesOperations::_narrow
465         ( getOperation() )->MakeGlueFacesByList( myObject, myTolEdt2->value(), aListForGlue, true );
466
467       aResult = !anObj->_is_nil();
468
469       if ( aResult )
470       {
471         if ( !IsPreview() )
472         {
473           QStringList aParameters;
474           aParameters << myTolEdt2->text();
475           anObj->SetParameters(GeometryGUI::JoinObjectParameters(aParameters));
476         }
477         objects.push_back( anObj._retn() );
478       }
479
480       // Remove from engine useless objects
481       clearTemporary();
482
483       updateButtonState();
484
485       break;
486     } // case 1
487   } // switch
488
489   return aResult;
490 }
491
492 //=================================================================================
493 // function : restoreSubShapes
494 // purpose  :
495 //=================================================================================
496 void RepairGUI_GlueDlg::restoreSubShapes( SALOMEDS::Study_ptr   theStudy,
497                                           SALOMEDS::SObject_ptr theSObject )
498 {
499   if ( mainFrame()->CheckBoxRestoreSS->isChecked() ) {
500     GEOM::find_shape_method aFindMethod = GEOM::FSM_GetInPlace;
501     if ( getConstructorId() == 0 ) // MakeGlueFaces
502       aFindMethod = GEOM::FSM_GetInPlaceByHistory;
503
504     // empty list of arguments means that all arguments should be restored
505     getGeomEngine()->RestoreSubShapesSO( theStudy, theSObject, GEOM::ListOfGO(),
506                                          aFindMethod, /*theInheritFirstArg=*/true );
507   }
508 }
509
510 //================================================================
511 // Function : clearShapeBufferLocal
512 // Purpose  : 
513 //================================================================
514 void RepairGUI_GlueDlg::clearShapeBufferLocal( GEOM::GEOM_Object_ptr theObj )
515 {
516   if ( CORBA::is_nil( theObj ) )
517     return;
518
519   CORBA::String_var IOR = myGeomGUI->getApp()->orb()->object_to_string( theObj );
520   TCollection_AsciiString asciiIOR( (char *)( IOR.in() ) );
521   myGeomGUI->GetShapeReader().RemoveShapeFromBuffer( asciiIOR );
522
523   if ( !getStudy() || !( getStudy()->studyDS() ) )
524     return;
525
526   _PTR(Study) aStudy = getStudy()->studyDS();
527   _PTR(SObject) aSObj ( aStudy->FindObjectIOR( std::string( IOR.in() ) ) );
528   if ( !aSObj )
529     return;
530
531   _PTR(ChildIterator) anIt ( aStudy->NewChildIterator( aSObj ) );
532   for ( anIt->InitEx( true ); anIt->More(); anIt->Next() ) {
533     _PTR(GenericAttribute) anAttr;
534     if ( anIt->Value()->FindAttribute(anAttr, "AttributeIOR") ) {
535       _PTR(AttributeIOR) anIOR ( anAttr );
536       TCollection_AsciiString asciiIOR( (char*)anIOR->Value().c_str() );
537       myGeomGUI->GetShapeReader().RemoveShapeFromBuffer( asciiIOR );      
538     }
539   }
540 }
541
542 //================================================================
543 // Function : onAccept
544 // Purpose  : This method should be called from dialog's slots onOk() and onApply()
545 //            It perfroms user input validation, then it 
546 //            performs a proper operation and manages transactions, etc.
547 //================================================================
548 bool RepairGUI_GlueDlg::onAcceptLocal()
549 {
550   if ( !getStudy() || !( getStudy()->studyDS() ) )
551     return false;
552
553   _PTR(Study) aStudy = getStudy()->studyDS();
554
555   bool aLocked = aStudy->GetProperties()->IsLocked();
556   if ( aLocked ) {
557     MESSAGE("GEOMBase_Helper::onAccept - ActiveStudy is locked");
558     SUIT_MessageBox::warning( this, tr( "WRN_WARNING" ), tr( "WRN_STUDY_LOCKED" ), tr( "BUT_OK" ) );
559     return false;
560   }
561
562   QString msg;
563   if ( !isValid( msg ) ) {
564     showError( msg );
565     return false;
566   }
567
568   erasePreview( false );
569
570   try {
571     if ( openCommand() ) {
572       SUIT_OverrideCursor wc;
573       
574       myGeomGUI->getApp()->putInfo( "" );
575       ObjectList objects;
576       
577       if ( !execute( objects ) ) { 
578         wc.suspend();
579         abortCommand();
580         showError();
581       }
582       else {
583         const int nbObjs = objects.size();
584         for ( ObjectList::iterator it = objects.begin(); it != objects.end(); ++it ) {
585           QString aName = getNewObjectName();
586           if ( nbObjs > 1 ) {
587             if ( aName.isEmpty() )
588               aName = getPrefix( *it );
589             aName = GEOMBase::GetDefaultName( aName );
590           }
591           else {
592             // PAL6521: use a prefix, if some dialog box doesn't reimplement getNewObjectName()
593             if ( aName.isEmpty() )
594               aName = GEOMBase::GetDefaultName( getPrefix( *it ) );
595           }
596           addInStudy( *it, aName.toLatin1().data() );
597           display( *it, false );
598         }
599         
600         if ( nbObjs ) {
601           commitCommand();
602           updateObjBrowser();
603           myGeomGUI->getApp()->putInfo( QObject::tr("GEOM_PRP_DONE") );
604         }
605         else {
606           abortCommand();
607         }
608
609         // JFA 28.12.2004 BEGIN // To enable warnings
610         if ( !getOperation()->_is_nil() ) {
611           if ( !getOperation()->IsDone() ) {
612             wc.suspend();
613             QString msgw = QObject::tr( getOperation()->GetErrorCode() );
614             SUIT_MessageBox::warning( this, tr( "WRN_WARNING" ), msgw, tr( "BUT_OK" ) );
615           }
616         }
617         // JFA 28.12.2004 END
618       }
619     }
620   }
621   catch( const SALOME::SALOME_Exception& e ) {
622     SalomeApp_Tools::QtCatchCorbaException( e );
623     abortCommand();
624   }
625
626   updateViewer();
627   activateSelection();
628   updateButtonState();
629
630   return true;
631 }
632
633
634 //=================================================================================
635 // function : onDetect
636 // purpose  :
637 //=================================================================================
638 void RepairGUI_GlueDlg::onDetect()
639 {
640   clearTemporary();
641   QString msg;
642   if ( !isValid( msg ) ) {
643     showError( msg );
644     return;
645   }
646
647   buttonOk()->setEnabled( false );
648   buttonApply()->setEnabled( false );
649   globalSelection( GEOM_ALLSHAPES );
650
651   GEOM::ListOfGO_var aList = GEOM::GEOM_IShapesOperations::_narrow
652     ( getOperation() )->GetGlueFaces( myObject, myTolEdt2->value() );
653   
654   for ( int i = 0, n = aList->length(); i < n; i++ ) 
655     myTmpObjs.push_back(GEOM::GEOM_Object::_duplicate(aList[i]));
656   
657   if ( myTmpObjs.size() > 0  ) {
658     msg = tr( "FACES_FOR_GLUING_ARE_DETECTED" ).arg( myTmpObjs.size() );
659     mySubShapesChk->setChecked( true );
660   }
661   else {
662     msg = tr( "THERE_ARE_NO_FACES_FOR_GLUING" );
663   }
664   
665   connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
666            this, SLOT( SelectionIntoArgument() ) ) ;
667   SUIT_MessageBox::information( this, tr( "GEOM_FREE_BOUNDS_TLT" ), msg, tr( "Close" ) );
668   updateButtonState();
669   activateSelection();
670 }
671
672 //=================================================================================
673 // function : activateSelection
674 // purpose  : Redisplay preview and Activate selection
675 //=================================================================================
676 void RepairGUI_GlueDlg::activateSelection()
677 {
678   erasePreview( false );
679   
680   int anId = getConstructorId();
681   if ( anId == 0 )  { 
682     // Case of whole gluing
683     disconnect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
684                 this, SLOT( SelectionIntoArgument() ) );
685     
686     globalSelection( GEOM_ALLSHAPES );
687     if ( myObject->_is_nil()) 
688       SelectionIntoArgument();
689
690     connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
691              this, SLOT( SelectionIntoArgument() ) );
692   } 
693   else {
694     // Second case of gluing
695     if ( !mySubShapesChk->isChecked() ) 
696       globalSelection( GEOM_ALLSHAPES );
697     else {
698       displayPreview( true, false, false, 2/*line width*/, 1/*display mode*/, Quantity_NOC_RED );
699       disconnect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
700                   this, SLOT( SelectionIntoArgument() ) ) ;
701       globalSelection( GEOM_PREVIEW );
702       connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
703                this, SLOT( SelectionIntoArgument() ) ) ;
704     } 
705   }
706   updateViewer();
707 }
708
709 //=================================================================================
710 // function : updateButtonState
711 // purpose  : Update button state 
712 //=================================================================================
713 void RepairGUI_GlueDlg::updateButtonState()
714 {
715   int anId = getConstructorId();
716   bool hasMainObj = !myObject->_is_nil();
717   if ( anId == 0 ) {
718     buttonOk()->setEnabled( hasMainObj );
719     buttonApply()->setEnabled( hasMainObj );
720   }
721   else
722   {
723     LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
724     SALOME_ListIO aSelList;
725     aSelMgr->selectedObjects(aSelList);
726
727     bool wasSelected = false;
728     SALOME_ListIteratorOfListIO it (aSelList);
729     if (it.More() > 0)
730       wasSelected = true;
731     bool wasDetected = myTmpObjs.size() ? true : false;
732     buttonOk()->setEnabled( hasMainObj && wasDetected && wasSelected );
733     buttonApply()->setEnabled( hasMainObj && wasDetected && wasSelected );
734     mySubShapesChk->setEnabled( hasMainObj && wasDetected );
735     myDetectBtn->setEnabled( hasMainObj );
736     if ( !hasMainObj || !wasDetected )
737       mySubShapesChk->setChecked( false );
738   }
739 }
740
741 //=================================================================================
742 // function : clearTemporary
743 // purpose  : Remove temporary objects from engine
744 //=================================================================================
745 void RepairGUI_GlueDlg::clearTemporary()
746 {
747   ObjectList::iterator anIter;
748   for ( anIter = myTmpObjs.begin(); anIter != myTmpObjs.end(); ++anIter )
749     getGeomEngine()->RemoveObject(*anIter);
750
751   myTmpObjs.clear();
752 }
753
754 //=================================================================================
755 // function : onTolerChanged
756 // purpose  : Remove temporary objects from engine
757 //=================================================================================
758 void RepairGUI_GlueDlg::onTolerChanged( double /*theVal*/ )
759 {
760   clearTemporary();
761   activateSelection();
762   updateButtonState();
763 }
764
765 //=================================================================================
766 // function : onSubShapesChk
767 // purpose  : Update selection mode
768 //=================================================================================
769 void RepairGUI_GlueDlg::onSubShapesChk()
770 {
771   if ( !mySubShapesChk->isChecked() )
772     clearTemporary();
773   activateSelection();
774   updateButtonState();
775 }
776
777 //=================================================================================
778 // function : ClickOnCancel
779 // purpose  : Remove temporary objects from engine and call method of base class
780 //=================================================================================
781 void RepairGUI_GlueDlg::ClickOnCancel()
782 {
783   clearTemporary();
784   GEOMBase_Skeleton::ClickOnCancel();
785 }