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