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