Salome HOME
GEOM: It should be forbidden creation of primitives with zero dimensions.
[modules/geom.git] / src / RepairGUI / RepairGUI_GlueDlg.cxx
1 //  GEOM RepairGUI : 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_operation_page.html");
130
131   // Disable second way of gluing if OCC viewer is not active one
132   if (myGeomGUI->getApp()->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   GroupBoxPublish->show();
164
165   /* signals and slots connections */
166   connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
167   connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
168   connect(GroupConstructors, SIGNAL(clicked(int)), this, SLOT(ConstructorsClicked(int)));
169
170   connect(GroupPoints->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
171   connect(GroupPoints->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
172
173   connect(GroupPoints2->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
174   connect(GroupPoints2->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
175   connect( myTolEdt2, SIGNAL( valueChanged( double ) ), this, SLOT( onTolerChanged( double ) ) );
176   connect( mySubShapesChk, SIGNAL( stateChanged( int ) ), this, SLOT( onSubShapesChk() ) );
177
178   connect( myGeomGUI->getApp()->selectionMgr(),
179            SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()) );
180
181   connect(myDetectBtn, SIGNAL(clicked()), this, SLOT(onDetect()));
182
183   initName( tr( "GLUE_NEW_OBJ_NAME" ) );
184
185   ConstructorsClicked(0);
186
187   activateSelection();
188   updateButtonState();
189 }
190
191
192 //=================================================================================
193 // function : ConstructorsClicked()
194 // purpose  : Radio button management
195 //=================================================================================
196 void RepairGUI_GlueDlg::ConstructorsClicked( int constructorId )
197 {
198   if ( myCurrConstrId == constructorId )
199     return;
200
201   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
202
203   switch ( constructorId )
204     {
205     case 0:
206       {
207         GroupPoints2->hide();
208         resize( 0, 0 );
209         GroupPoints->show();
210         GroupPoints->LineEdit1->setText( "" );
211         myEditCurrentArgument = GroupPoints->LineEdit1;
212
213         if ( myCurrConstrId >= 0 ) // i.e. it is not initialisation
214         {
215           // copy tolerance from previous tolerance field
216           myTolEdt->setValue( myTolEdt2->value() );
217         }
218
219         break;
220       }
221     case 1:
222       {
223         GroupPoints->hide();
224         resize(0, 0);
225         GroupPoints2->show();
226         GroupPoints->LineEdit1->setText("");
227         myEditCurrentArgument = GroupPoints2->LineEdit1;
228
229         if ( myCurrConstrId >= 0 ) // i.e. it is not initialisation
230         {
231           // copy tolerance from previous tolerance field
232           myTolEdt2->setValue( myTolEdt->value() );
233           mySubShapesChk->setChecked( false );
234           clearTemporary();
235         }
236
237         break;
238       }
239     }
240
241   myCurrConstrId = constructorId;
242
243   myEditCurrentArgument->setFocus();
244
245   connect(myGeomGUI->getApp()->selectionMgr(),
246           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
247
248   qApp->processEvents();
249   updateGeometry();
250   QSize aSize = minimumSizeHint();
251   resize( width(), aSize.height() );
252
253   displayPreview();
254   updateButtonState();
255   activateSelection();
256   SelectionIntoArgument();
257 }
258
259
260 //=================================================================================
261 // function : ClickOnOk()
262 // purpose  : Same than click on apply but close this dialog.
263 //=================================================================================
264 void RepairGUI_GlueDlg::ClickOnOk()
265 {
266   if ( ClickOnApply() )
267     ClickOnCancel();
268 }
269
270
271 //=================================================================================
272 // function : ClickOnApply()
273 // purpose  :
274 //=================================================================================
275 bool RepairGUI_GlueDlg::ClickOnApply()
276 {
277   if ( !onAcceptLocal() )
278     return false;
279
280   initName();
281
282   //GroupPoints->LineEdit1->setText("");
283   //myObject = GEOM::GEOM_Object::_nil();
284
285   //globalSelection( GEOM_COMPOUND );
286
287   ConstructorsClicked( getConstructorId() );
288
289   return true;
290 }
291
292
293 //=================================================================================
294 // function : SelectionIntoArgument()
295 // purpose  : Called when selection
296 //=================================================================================
297 void RepairGUI_GlueDlg::SelectionIntoArgument()
298 {
299   if ( mySubShapesChk->isChecked() &&  getConstructorId() == 1 ) {
300     updateButtonState();
301     return;
302   }
303
304   erasePreview();
305   myEditCurrentArgument->setText("");
306   myObject = GEOM::GEOM_Object::_nil();
307
308   if ( IObjectCount() == 1 ) {
309     Handle(SALOME_InteractiveObject) anIO = firstIObject();
310     Standard_Boolean aRes;
311     myObject = GEOMBase::ConvertIOinGEOMObject( anIO, aRes );
312     if ( aRes )
313       myEditCurrentArgument->setText( GEOMBase::GetName( myObject ) );
314   }
315   updateButtonState();
316 }
317
318 //=================================================================================
319 // function : SetEditCurrentArgument()
320 // purpose  :
321 //=================================================================================
322 void RepairGUI_GlueDlg::SetEditCurrentArgument()
323 {
324   const QObject* send = sender();
325   if ( send == GroupPoints->PushButton1 || send == GroupPoints2->PushButton1 )  {
326     myEditCurrentArgument->setFocus();
327     SelectionIntoArgument();
328   }
329 }
330
331
332 //=================================================================================
333 // function : LineEditReturnPressed()
334 // purpose  :
335 //=================================================================================
336 void RepairGUI_GlueDlg::LineEditReturnPressed()
337 {
338   const QObject* send = sender();
339   if( send == GroupPoints->LineEdit1 ) {
340     myEditCurrentArgument = GroupPoints->LineEdit1;
341     GEOMBase_Skeleton::LineEditReturnPressed();
342   }
343   else if( send == GroupPoints2->LineEdit1 ) {
344     myEditCurrentArgument = GroupPoints2->LineEdit1;
345     GEOMBase_Skeleton::LineEditReturnPressed();
346   }
347 }
348
349
350 //=================================================================================
351 // function : ActivateThisDialog()
352 // purpose  :
353 //=================================================================================
354 void RepairGUI_GlueDlg::ActivateThisDialog()
355 {
356   GEOMBase_Skeleton::ActivateThisDialog();
357   connect(myGeomGUI->getApp()->selectionMgr(),
358           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
359
360   //GroupPoints->LineEdit1->setText("");
361   //GroupPoints2->LineEdit1->setText("");
362   //myObject = GEOM::GEOM_Object::_nil();
363
364   //myGeomGUI->SetState( 0 );
365   //globalSelection( GEOM_COMPOUND );
366   activateSelection();
367 }
368
369
370 //=================================================================================
371 // function : enterEvent()
372 // purpose  : Mouse enter onto the dialog to activate it
373 //=================================================================================
374 void RepairGUI_GlueDlg::enterEvent(QEvent* e)
375 {
376   if ( !GroupConstructors->isEnabled() )
377     ActivateThisDialog();
378 }
379
380 //=================================================================================
381 // function : createOperation
382 // purpose  :
383 //=================================================================================
384 GEOM::GEOM_IOperations_ptr RepairGUI_GlueDlg::createOperation()
385 {
386   return getGeomEngine()->GetIShapesOperations( getStudyId() );
387 }
388
389 //=================================================================================
390 // function : isValid
391 // purpose  :
392 //=================================================================================
393 bool RepairGUI_GlueDlg::isValid( QString& msg )
394 {
395   double v = 0;
396   switch ( getConstructorId() )
397   {
398   case 0:
399     v = myTolEdt->value();  break;
400   case 1:
401     v = myTolEdt2->value(); break;
402   }
403   return !myObject->_is_nil() && ( IsPreview() || v > 0. );
404 }
405
406 //=================================================================================
407 // function : execute
408 // purpose  :
409 //=================================================================================
410 bool RepairGUI_GlueDlg::execute( ObjectList& objects )
411 {
412   bool aResult = false;
413   objects.clear();
414
415   switch ( getConstructorId() )
416   {
417   case 0:
418     {
419       GEOM::GEOM_Object_var anObj = GEOM::GEOM_IShapesOperations::_narrow
420         ( getOperation() )->MakeGlueFaces( myObject, myTolEdt->value(), true );
421       aResult = !anObj->_is_nil();
422       if ( aResult )
423         objects.push_back( anObj._retn() );
424       break;
425     }
426   case 1:
427     {
428       if ( IsPreview() )
429       {
430         // if this method is used for displaying preview then we must detect glue faces only
431         ObjectList::iterator anIter;
432         for (anIter = myTmpObjs.begin(); anIter != myTmpObjs.end(); ++anIter)
433           objects.push_back( GEOM::GEOM_Object::_duplicate( *anIter ) );
434         return myTmpObjs.size() ? true : false;
435       } // IsPreview
436
437       // Make glue face by list.
438       // Iterate through myTmpObjs and verifies where each object is currently selected or not.
439       QMap<QString, char> selected;
440
441       // Get names of selected objects
442       SALOME_ListIteratorOfListIO it ( selectedIO() );
443       for (; it.More(); it.Next())
444         selected.insert( it.Value()->getName(), 0 );
445
446       // Iterate through result and select objects with names from selection
447       // ObjectList toRemoveFromEnggine;
448       ObjectList toGlue;
449       ObjectList::iterator anIter;
450       for (anIter = myTmpObjs.begin(); anIter != myTmpObjs.end(); ++anIter)
451       {
452         if ( selected.contains( myGeomGUI->getApp()->orb()->object_to_string(*anIter) ) )
453           toGlue.push_back(*anIter);
454       }
455
456       // make glue faces
457       GEOM::ListOfGO_var aListForGlue = new GEOM::ListOfGO();
458       aListForGlue->length( toGlue.size() );
459       ObjectList::iterator anIter3 = toGlue.begin();
460       for ( int i = 0; anIter3 != toGlue.end(); ++anIter3, ++i )
461         aListForGlue[ i ] = *anIter3;
462       GEOM::GEOM_Object_var anObj = GEOM::GEOM_IShapesOperations::_narrow
463         ( getOperation() )->MakeGlueFacesByList( myObject, myTolEdt2->value(), aListForGlue, true );
464
465       aResult = !anObj->_is_nil();
466
467       if ( aResult )
468         objects.push_back( anObj._retn() );
469
470       // Remove from engine useless objects
471       clearTemporary();
472
473       updateButtonState();
474
475       break;
476     } // case 1
477   } // switch
478
479   return aResult;
480 }
481
482 //=================================================================================
483 // function : restoreSubShapes
484 // purpose  :
485 //=================================================================================
486 void RepairGUI_GlueDlg::restoreSubShapes (SALOMEDS::Study_ptr   theStudy,
487                                           SALOMEDS::SObject_ptr theSObject)
488 {
489   if (CheckBoxRestoreSS->isChecked()) {
490     GEOM::find_shape_method aFindMethod = GEOM::FSM_GetInPlace;
491     if (getConstructorId() == 0) // MakeGlueFaces
492       aFindMethod = GEOM::FSM_GetInPlaceByHistory;
493
494     // empty list of arguments means that all arguments should be restored
495     getGeomEngine()->RestoreSubShapesSO(theStudy, theSObject, GEOM::ListOfGO(),
496                                         aFindMethod, /*theInheritFirstArg=*/true);
497   }
498 }
499
500 //================================================================
501 // Function : clearShapeBufferLocal
502 // Purpose  :
503 //================================================================
504 void RepairGUI_GlueDlg::clearShapeBufferLocal( GEOM::GEOM_Object_ptr theObj )
505 {
506   if ( CORBA::is_nil( theObj ) )
507     return;
508
509   CORBA::String_var IOR = myGeomGUI->getApp()->orb()->object_to_string( theObj );
510   TCollection_AsciiString asciiIOR( (char *)( IOR.in() ) );
511   myGeomGUI->GetShapeReader().RemoveShapeFromBuffer( asciiIOR );
512
513   if ( !getStudy() || !( getStudy()->studyDS() ) )
514     return;
515
516   _PTR(Study) aStudy = getStudy()->studyDS();
517   _PTR(SObject) aSObj ( aStudy->FindObjectIOR( string( IOR.in() ) ) );
518   if ( !aSObj )
519     return;
520
521   _PTR(ChildIterator) anIt ( aStudy->NewChildIterator( aSObj ) );
522   for ( anIt->InitEx( true ); anIt->More(); anIt->Next() ) {
523     _PTR(GenericAttribute) anAttr;
524     if ( anIt->Value()->FindAttribute(anAttr, "AttributeIOR") ) {
525       _PTR(AttributeIOR) anIOR ( anAttr );
526       TCollection_AsciiString asciiIOR( (char*)anIOR->Value().c_str() );
527       myGeomGUI->GetShapeReader().RemoveShapeFromBuffer( asciiIOR );
528     }
529   }
530 }
531
532 //================================================================
533 // Function : onAccept
534 // Purpose  : This method should be called from dialog's slots onOk() and onApply()
535 //            It perfroms user input validation, then it
536 //            performs a proper operation and manages transactions, etc.
537 //================================================================
538 bool RepairGUI_GlueDlg::onAcceptLocal()
539 {
540   if ( !getStudy() || !( getStudy()->studyDS() ) )
541     return false;
542
543   _PTR(Study) aStudy = getStudy()->studyDS();
544
545   bool aLocked = aStudy->GetProperties()->IsLocked();
546   if ( aLocked )
547   {
548     MESSAGE("GEOMBase_Helper::onAccept - ActiveStudy is locked");
549     SUIT_MessageBox::warn1 ( (QWidget*)(myGeomGUI->getApp()->desktop()),
550       QObject::tr("WRN_WARNING"), QObject::tr("WRN_STUDY_LOCKED"), QObject::tr("BUT_OK") );
551     return false;
552   }
553
554   QString msg;
555   if ( !isValid( msg ) )
556   {
557     showError( msg );
558     return false;
559   }
560
561   erasePreview( false );
562
563   try
564   {
565     if ( openCommand() )
566     {
567       SUIT_OverrideCursor wc;
568
569       myGeomGUI->getApp()->putInfo( "" );
570       ObjectList objects;
571
572       if ( !execute( objects ) )
573       {
574         wc.suspend();
575         abortCommand();
576         showError();
577       }
578       else
579       {
580         const int nbObjs = objects.size();
581         for ( ObjectList::iterator it = objects.begin(); it != objects.end(); ++it )
582         {
583           QString aName = getNewObjectName();
584           if ( nbObjs > 1 )
585           {
586             if (aName.isEmpty())
587               aName = getPrefix(*it);
588             aName = GEOMBase::GetDefaultName(aName);
589           }
590           else
591           {
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.latin1() );
597           display( *it, false );
598         }
599
600         if ( nbObjs )
601         {
602           commitCommand();
603           updateObjBrowser();
604           myGeomGUI->getApp()->putInfo( QObject::tr("GEOM_PRP_DONE") );
605         }
606         else
607         {
608           abortCommand();
609         }
610
611         // JFA 28.12.2004 BEGIN // To enable warnings
612         if ( !getOperation()->_is_nil() )
613         {
614           if ( !getOperation()->IsDone() )
615           {
616             wc.suspend();
617             QString msgw = QObject::tr( getOperation()->GetErrorCode() );
618             SUIT_MessageBox::warn1((QWidget*)(myGeomGUI->getApp()->desktop()),
619                                    QObject::tr( "WRN_WARNING" ),
620                                    msgw,
621                                    QObject::tr( "BUT_OK" ));
622           }
623         }
624         // JFA 28.12.2004 END
625       }
626     }
627   }
628   catch( const SALOME::SALOME_Exception& e )
629   {
630     SalomeApp_Tools::QtCatchCorbaException( e );
631     abortCommand();
632   }
633
634   updateViewer();
635   activateSelection();
636   updateButtonState();
637
638   return true;
639 }
640
641
642 //=================================================================================
643 // function : onDetect
644 // purpose  :
645 //=================================================================================
646 void RepairGUI_GlueDlg::onDetect()
647 {
648   clearTemporary();
649   QString msg;
650   if ( !isValid( msg ) ) {
651     showError( msg );
652     return;
653   }
654
655   buttonOk->setEnabled( false );
656   buttonApply->setEnabled( false );
657   globalSelection( GEOM_ALLSHAPES );
658
659   GEOM::ListOfGO_var aList = GEOM::GEOM_IShapesOperations::_narrow
660     ( getOperation() )->GetGlueFaces( myObject, myTolEdt2->value() );
661
662   for (int i = 0, n = aList->length(); i < n; i++)
663     myTmpObjs.push_back(GEOM::GEOM_Object::_duplicate(aList[i]));
664
665   if ( myTmpObjs.size() > 0  )
666   {
667     msg = tr( "FACES_FOR_GLUING_ARE_DETECTED" ).arg( myTmpObjs.size() );
668     mySubShapesChk->setChecked( true );
669   }
670   else
671   {
672     msg = tr( "THERE_ARE_NO_FACES_FOR_GLUING" );
673   }
674
675   connect( myGeomGUI->getApp()->selectionMgr(),
676            SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()) );
677   SUIT_MessageBox::info1( this, tr( "GEOM_FREE_BOUNDS_TLT" ), msg, "Close" );
678   updateButtonState();
679   activateSelection();
680 }
681
682 //=================================================================================
683 // function : activateSelection
684 // purpose  : Redisplay preview and Activate selection
685 //=================================================================================
686 void RepairGUI_GlueDlg::activateSelection()
687 {
688   erasePreview(false);
689
690   int anId = getConstructorId();
691   if ( anId == 0 )  // Case of whole gluing
692   {
693     disconnect( myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
694                 this, SLOT(SelectionIntoArgument()) );
695
696     globalSelection( GEOM_ALLSHAPES );
697     if (myObject->_is_nil())
698       SelectionIntoArgument();
699
700     connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
701              this, SLOT(SelectionIntoArgument()) );
702   }
703   else // Second case of gluing
704   {
705     if ( !mySubShapesChk->isChecked() )
706       globalSelection( GEOM_ALLSHAPES );
707     else
708     {
709       displayPreview( true, false, false, 2/*line width*/, 1/*display mode*/, Quantity_NOC_RED );
710      disconnect(myGeomGUI->getApp()->selectionMgr(),
711                 SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()) );
712       globalSelection( GEOM_PREVIEW );
713       connect( myGeomGUI->getApp()->selectionMgr(),
714                SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()) );
715     }
716   }
717   updateViewer();
718 }
719
720 //=================================================================================
721 // function : updateButtonState
722 // purpose  : Update button state
723 //=================================================================================
724 void RepairGUI_GlueDlg::updateButtonState()
725 {
726   int anId = getConstructorId();
727   bool hasMainObj = !myObject->_is_nil();
728   if ( anId == 0 )
729   {
730     buttonOk->setEnabled( hasMainObj );
731     buttonApply->setEnabled( hasMainObj );
732   }
733   else
734   {
735     bool wasSelected = false;
736     SALOME_ListIteratorOfListIO it ( selectedIO() );
737     if (it.More() > 0)
738       wasSelected = true;
739     bool wasDetected = myTmpObjs.size() ? true : false;
740     buttonOk->setEnabled( hasMainObj && wasDetected && wasSelected);
741     buttonApply->setEnabled( hasMainObj && wasDetected && wasSelected);
742     mySubShapesChk->setEnabled( hasMainObj && wasDetected );
743     myDetectBtn->setEnabled( hasMainObj );
744     if ( !hasMainObj || !wasDetected )
745       mySubShapesChk->setChecked( false );
746   }
747 }
748
749 //=================================================================================
750 // function : clearTemporary
751 // purpose  : Remove temporary objects from engine
752 //=================================================================================
753 void RepairGUI_GlueDlg::clearTemporary()
754 {
755   ObjectList::iterator anIter;
756   for (anIter = myTmpObjs.begin(); anIter != myTmpObjs.end(); ++anIter)
757     getGeomEngine()->RemoveObject(*anIter);
758
759   myTmpObjs.clear();
760 }
761
762 //=================================================================================
763 // function : onTolerChanged
764 // purpose  : Remove temporary objects from engine
765 //=================================================================================
766 void RepairGUI_GlueDlg::onTolerChanged( double /*theVal*/ )
767 {
768   clearTemporary();
769   activateSelection();
770   updateButtonState();
771 }
772
773 //=================================================================================
774 // function : onSubShapesChk
775 // purpose  : Update selection mode
776 //=================================================================================
777 void RepairGUI_GlueDlg::onSubShapesChk()
778 {
779   if ( !mySubShapesChk->isChecked() )
780     clearTemporary();
781   activateSelection();
782   updateButtonState();
783 }
784
785 //=================================================================================
786 // function : ClickOnCancel
787 // purpose  : Remove temporary objects from engine and call method of base class
788 //=================================================================================
789 void RepairGUI_GlueDlg::ClickOnCancel()
790 {
791   clearTemporary();
792   GEOMBase_Skeleton::ClickOnCancel();
793 }