Salome HOME
0022097: EDF 2408 SMESH: Hide ID of double node in the function "Merge nodes"
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MergeDlg.cxx
1 // Copyright (C) 2007-2013  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 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI_MergeDlg.cxx
25 // Author : Open CASCADE S.A.S.
26 // SMESH includes
27 //
28 #include "SMESHGUI_MergeDlg.h"
29
30 #include "SMESHGUI.h"
31 #include "SMESHGUI_Utils.h"
32 #include "SMESHGUI_VTKUtils.h"
33 #include "SMESHGUI_MeshUtils.h"
34 #include "SMESHGUI_SpinBox.h"
35
36 #include <SMESH_Actor.h>
37 #include <SMESH_TypeFilter.hxx>
38 #include <SMESH_LogicalFilter.hxx>
39 #include <SMDS_Mesh.hxx>
40
41 // SALOME GUI includes
42 #include <SUIT_Desktop.h>
43 #include <SUIT_ResourceMgr.h>
44 #include <SUIT_Session.h>
45 #include <SUIT_MessageBox.h>
46 #include <SUIT_OverrideCursor.h>
47
48 #include <LightApp_Application.h>
49 #include <LightApp_SelectionMgr.h>
50
51 #include <SVTK_ViewModel.h>
52 #include <SVTK_ViewWindow.h>
53 #include <SALOME_ListIO.hxx>
54
55 // OCCT includes
56 #include <TColStd_MapOfInteger.hxx>
57 #include <TColStd_MapIteratorOfMapOfInteger.hxx>
58
59 // IDL includes
60 #include <SALOMEconfig.h>
61 #include CORBA_SERVER_HEADER(SMESH_Group)
62 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
63
64 // VTK includes
65 #include <vtkUnstructuredGrid.h>
66 #include <vtkRenderer.h>
67 #include <vtkActor2D.h>
68 #include <vtkPoints.h>
69 #include <vtkDataSetMapper.h>
70 #include <vtkMaskPoints.h>
71 #include <vtkSelectVisiblePoints.h>
72 #include <vtkLabeledDataMapper.h>
73 #include <vtkTextProperty.h>
74 #include <vtkIntArray.h>
75 #include <vtkProperty2D.h>
76 #include <vtkPointData.h>
77
78 // Qt includes
79 #include <QApplication>
80 #include <QGroupBox>
81 #include <QLabel>
82 #include <QLineEdit>
83 #include <QListWidget>
84 #include <QPushButton>
85 #include <QRadioButton>
86 #include <QCheckBox>
87 #include <QHBoxLayout>
88 #include <QVBoxLayout>
89 #include <QGridLayout>
90 #include <QKeyEvent>
91 #include <QButtonGroup>
92
93 #define SPACING 6
94 #define MARGIN  11
95
96 namespace SMESH
97 {
98   class TIdPreview
99   { // to display in the viewer IDs of the selected elements
100     SVTK_ViewWindow* myViewWindow;
101
102     vtkUnstructuredGrid* myIdGrid;
103     SALOME_Actor* myIdActor;
104
105     vtkUnstructuredGrid* myPointsNumDataSet;
106     vtkMaskPoints* myPtsMaskPoints;
107     vtkSelectVisiblePoints* myPtsSelectVisiblePoints;
108     vtkLabeledDataMapper* myPtsLabeledDataMapper;
109     vtkTextProperty* aPtsTextProp;
110     bool myIsPointsLabeled;
111     vtkActor2D* myPointLabels;
112
113     std::vector<int> myIDs;
114
115   public:
116     TIdPreview(SVTK_ViewWindow* theViewWindow):
117       myViewWindow(theViewWindow)
118     {
119       myIdGrid = vtkUnstructuredGrid::New();
120
121       // Create and display actor
122       vtkDataSetMapper* aMapper = vtkDataSetMapper::New();
123       aMapper->SetInputData( myIdGrid );
124
125       myIdActor = SALOME_Actor::New();
126       myIdActor->SetInfinitive(true);
127       myIdActor->VisibilityOff();
128       myIdActor->PickableOff();
129
130       myIdActor->SetMapper( aMapper );
131       aMapper->Delete();
132
133       myViewWindow->AddActor(myIdActor);
134
135       //Definition of points numbering pipeline
136       myPointsNumDataSet = vtkUnstructuredGrid::New();
137
138       myPtsMaskPoints = vtkMaskPoints::New();
139       myPtsMaskPoints->SetInputData(myPointsNumDataSet);
140       myPtsMaskPoints->SetOnRatio(1);
141
142       myPtsSelectVisiblePoints = vtkSelectVisiblePoints::New();
143       myPtsSelectVisiblePoints->SetInputConnection(myPtsMaskPoints->GetOutputPort());
144       myPtsSelectVisiblePoints->SelectInvisibleOff();
145       myPtsSelectVisiblePoints->SetTolerance(0.1);
146     
147       myPtsLabeledDataMapper = vtkLabeledDataMapper::New();
148       myPtsLabeledDataMapper->SetInputConnection(myPtsSelectVisiblePoints->GetOutputPort());
149       myPtsLabeledDataMapper->SetLabelModeToLabelScalars();
150     
151       vtkTextProperty* aPtsTextProp = vtkTextProperty::New();
152       aPtsTextProp->SetFontFamilyToTimes();
153       static int aPointsFontSize = 12;
154       aPtsTextProp->SetFontSize(aPointsFontSize);
155       aPtsTextProp->SetBold(1);
156       aPtsTextProp->SetItalic(0);
157       aPtsTextProp->SetShadow(0);
158       myPtsLabeledDataMapper->SetLabelTextProperty(aPtsTextProp);
159       aPtsTextProp->Delete();
160   
161       myIsPointsLabeled = false;
162
163       myPointLabels = vtkActor2D::New();
164       myPointLabels->SetMapper(myPtsLabeledDataMapper);
165       myPointLabels->GetProperty()->SetColor(1,1,1);
166       myPointLabels->SetVisibility(myIsPointsLabeled);
167
168       AddToRender(myViewWindow->getRenderer());
169     }
170
171     void SetPointsData ( SMDS_Mesh* theMesh, 
172                          TColStd_MapOfInteger & theNodesIdMap )
173     {
174       vtkPoints* aPoints = vtkPoints::New();
175       aPoints->SetNumberOfPoints(theNodesIdMap.Extent());
176       myIDs.clear();
177       
178       TColStd_MapIteratorOfMapOfInteger idIter( theNodesIdMap );
179       for( int i = 0; idIter.More(); idIter.Next(), i++ ) {
180         const SMDS_MeshNode* aNode = theMesh->FindNode(idIter.Key());
181         aPoints->SetPoint( i, aNode->X(), aNode->Y(), aNode->Z() );
182         myIDs.push_back(idIter.Key());
183       }
184
185       myIdGrid->SetPoints(aPoints);
186
187       aPoints->Delete();
188
189       myIdActor->GetMapper()->Update();
190     }
191
192     void SetElemsData( TColStd_MapOfInteger & theElemsIdMap, 
193                        std::list<gp_XYZ> & aGrCentersXYZ )
194     {
195       vtkPoints* aPoints = vtkPoints::New();
196       aPoints->SetNumberOfPoints(theElemsIdMap.Extent());
197       myIDs.clear();
198       
199       TColStd_MapIteratorOfMapOfInteger idIter( theElemsIdMap );
200       for( ; idIter.More(); idIter.Next() ) {
201         myIDs.push_back(idIter.Key());
202       }
203
204       gp_XYZ aXYZ;
205       std::list<gp_XYZ>::iterator coordIt = aGrCentersXYZ.begin();
206       for( int i = 0; coordIt != aGrCentersXYZ.end(); coordIt++, i++ ) {
207         aXYZ = *coordIt;
208         aPoints->SetPoint( i, aXYZ.X(), aXYZ.Y(), aXYZ.Z() );
209       }
210       myIdGrid->SetPoints(aPoints);
211       aPoints->Delete();
212       
213       myIdActor->GetMapper()->Update();
214     }
215
216     void AddToRender(vtkRenderer* theRenderer)
217     {
218       myIdActor->AddToRender(theRenderer);
219
220       myPtsSelectVisiblePoints->SetRenderer(theRenderer);
221       theRenderer->AddActor2D(myPointLabels);
222     }
223
224     void RemoveFromRender(vtkRenderer* theRenderer)
225     {
226       myIdActor->RemoveFromRender(theRenderer);
227
228       myPtsSelectVisiblePoints->SetRenderer(theRenderer);
229       theRenderer->RemoveActor(myPointLabels);
230     }
231
232     void SetPointsLabeled( bool theIsPointsLabeled, bool theIsActorVisible = true )
233     {
234       myIsPointsLabeled = theIsPointsLabeled && myIdGrid->GetNumberOfPoints();
235       
236       if ( myIsPointsLabeled ) {
237         myPointsNumDataSet->ShallowCopy(myIdGrid);
238         vtkDataSet *aDataSet = myPointsNumDataSet;
239         int aNbElem = myIDs.size();
240         vtkIntArray *anArray = vtkIntArray::New();
241         anArray->SetNumberOfValues( aNbElem );
242         for ( int i = 0; i < aNbElem; i++ )
243           anArray->SetValue( i, myIDs[i] );
244         aDataSet->GetPointData()->SetScalars( anArray );
245         anArray->Delete();
246         myPtsMaskPoints->SetInputData( aDataSet );
247         myPointLabels->SetVisibility( theIsActorVisible );
248       }
249       else {
250         myPointLabels->SetVisibility( false );
251       }
252     }
253     
254     ~TIdPreview()
255     {
256       RemoveFromRender(myViewWindow->getRenderer());
257
258       myIdGrid->Delete();
259
260       myViewWindow->RemoveActor(myIdActor);
261       myIdActor->Delete();
262
263       //Deleting of points numbering pipeline
264       //---------------------------------------
265       myPointsNumDataSet->Delete();
266       
267       //myPtsLabeledDataMapper->RemoveAllInputs();        //vtk 5.0 porting
268       myPtsLabeledDataMapper->Delete();
269
270       //myPtsSelectVisiblePoints->UnRegisterAllOutputs(); //vtk 5.0 porting
271       myPtsSelectVisiblePoints->Delete();
272
273       //myPtsMaskPoints->UnRegisterAllOutputs();          //vtk 5.0 porting
274       myPtsMaskPoints->Delete();
275
276       myPointLabels->Delete();
277
278 //       myTimeStamp->Delete();
279     }
280   };
281 }
282
283 static const char * IconFirst[] = {
284 "18 10 2 1",
285 "       g None",
286 ".      g #000000",
287 "         .     .  ",
288 "  ..    ..    ..  ",
289 "  ..   ...   ...  ",
290 "  ..  ....  ....  ",
291 "  .. ..... .....  ",
292 "  .. ..... .....  ",
293 "  ..  ....  ....  ",
294 "  ..   ...   ...  ",
295 "  ..    ..    ..  ",
296 "         .     .  "};
297
298 //=================================================================================
299 // class    : SMESHGUI_MergeDlg()
300 // purpose  :
301 //=================================================================================
302 SMESHGUI_MergeDlg::SMESHGUI_MergeDlg (SMESHGUI* theModule, int theAction)
303   : QDialog(SMESH::GetDesktop(theModule)),
304     mySMESHGUI(theModule),
305     mySelectionMgr(SMESH::GetSelectionMgr(theModule)),
306     myAction(theAction)
307 {
308   setModal(false);
309   setAttribute(Qt::WA_DeleteOnClose, true);
310   setWindowTitle(myAction == 1 ? tr("SMESH_MERGE_ELEMENTS") : tr("SMESH_MERGE_NODES"));
311
312   myIdPreview = new SMESH::TIdPreview(SMESH::GetViewWindow( mySMESHGUI ));
313
314   SUIT_ResourceMgr* aResMgr = SMESH::GetResourceMgr( mySMESHGUI );
315   QPixmap IconMergeNodes (aResMgr->loadPixmap("SMESH", tr("ICON_SMESH_MERGE_NODES")));
316   QPixmap IconMergeElems (aResMgr->loadPixmap("SMESH", tr("ICON_DLG_MERGE_ELEMENTS")));
317   QPixmap IconSelect     (aResMgr->loadPixmap("SMESH", tr("ICON_SELECT")));
318   QPixmap IconAdd        (aResMgr->loadPixmap("SMESH", tr("ICON_APPEND")));
319   QPixmap IconRemove     (aResMgr->loadPixmap("SMESH", tr("ICON_REMOVE")));
320
321   setSizeGripEnabled(true);
322
323   QVBoxLayout* DlgLayout = new QVBoxLayout(this);
324   DlgLayout->setSpacing(SPACING);
325   DlgLayout->setMargin(MARGIN);
326
327   /***************************************************************/
328   GroupConstructors = new QGroupBox(myAction == 1 ? 
329                                     tr("SMESH_MERGE_ELEMENTS") : 
330                                     tr("SMESH_MERGE_NODES"), 
331                                     this);
332
333   QButtonGroup* ButtonGroup = new QButtonGroup(this);
334   QHBoxLayout* GroupConstructorsLayout = new QHBoxLayout(GroupConstructors);
335   GroupConstructorsLayout->setSpacing(SPACING);
336   GroupConstructorsLayout->setMargin(MARGIN);
337
338   RadioButton = new QRadioButton(GroupConstructors);
339   RadioButton->setIcon(myAction == 1 ? IconMergeElems : IconMergeNodes);
340   RadioButton->setChecked(true);
341   GroupConstructorsLayout->addWidget(RadioButton);
342   ButtonGroup->addButton(RadioButton, 0);
343
344   /***************************************************************/
345   // Controls for mesh defining
346   GroupMesh = new QGroupBox(tr("SMESH_SELECT_WHOLE_MESH"), this);
347   QHBoxLayout* GroupMeshLayout = new QHBoxLayout(GroupMesh);
348   GroupMeshLayout->setSpacing(SPACING);
349   GroupMeshLayout->setMargin(MARGIN);
350
351   TextLabelName = new QLabel(tr("SMESH_NAME"), GroupMesh);
352   SelectMeshButton = new QPushButton(GroupMesh);
353   SelectMeshButton->setIcon(IconSelect);
354   LineEditMesh = new QLineEdit(GroupMesh);
355   LineEditMesh->setReadOnly(true);
356
357   GroupMeshLayout->addWidget(TextLabelName);
358   GroupMeshLayout->addWidget(SelectMeshButton);
359   GroupMeshLayout->addWidget(LineEditMesh);
360
361   /***************************************************************/
362   // Controls for switch dialog behaviour
363
364   TypeBox = new QGroupBox( tr( "SMESH_MODE" ), this );
365   GroupType = new QButtonGroup( this );
366   QHBoxLayout* aTypeBoxLayout = new QHBoxLayout( TypeBox );
367   aTypeBoxLayout->setMargin( MARGIN );
368   aTypeBoxLayout->setSpacing( SPACING );
369
370   QRadioButton* rb1 = new QRadioButton( tr( "SMESH_AUTOMATIC" ), TypeBox );
371   QRadioButton* rb2 = new QRadioButton( tr( "SMESH_MANUAL" ),   TypeBox );
372   GroupType->addButton( rb1, 0 );
373   GroupType->addButton( rb2, 1 );
374   aTypeBoxLayout->addWidget( rb1 );
375   aTypeBoxLayout->addWidget( rb2 );
376
377   myTypeId = 0;
378
379   /***************************************************************/
380   // Controls for coincident elements detecting
381   GroupCoincident = new QGroupBox(myAction == 1 ? 
382                                   tr("COINCIDENT_ELEMENTS") : 
383                                   tr("COINCIDENT_NODES"), 
384                                   this);
385
386   QVBoxLayout* aCoincidentLayout = new QVBoxLayout(GroupCoincident);
387   aCoincidentLayout->setSpacing(SPACING);
388   aCoincidentLayout->setMargin(MARGIN);
389
390   if (myAction == 0) { // case merge nodes
391     QWidget* foo = new QWidget(GroupCoincident);
392     TextLabelTolerance = new QLabel(tr("SMESH_TOLERANCE"), foo);
393     SpinBoxTolerance = new SMESHGUI_SpinBox(foo);
394     SpinBoxTolerance->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed));
395
396     GroupExclude = new QGroupBox(tr("EXCLUDE_GROUPS"), foo);
397     GroupExclude->setCheckable( true );
398     GroupExclude->setChecked( false );
399     ListExclude = new QListWidget( GroupExclude );
400     QVBoxLayout* GroupExcludeLayout = new QVBoxLayout(GroupExclude);
401     GroupExcludeLayout->setSpacing(SPACING);
402     GroupExcludeLayout->setMargin(MARGIN);
403     GroupExcludeLayout->addWidget(ListExclude);
404
405     QGridLayout* fooLayout = new QGridLayout( foo );
406     fooLayout->setSpacing(SPACING);
407     fooLayout->setMargin(0);
408     fooLayout->addWidget(TextLabelTolerance, 0, 0 );
409     fooLayout->addWidget(SpinBoxTolerance,   0, 1 );
410     fooLayout->addWidget(GroupExclude,       1, 0, 1, 2 );
411     aCoincidentLayout->addWidget(foo);
412   }
413   else {
414     TextLabelTolerance = 0;
415     SpinBoxTolerance = 0;
416     GroupExclude = 0;
417     ListExclude = 0;
418   }
419
420   GroupCoincidentWidget = new QWidget(GroupCoincident);
421   QGridLayout* GroupCoincidentLayout = new QGridLayout(GroupCoincidentWidget);
422   GroupCoincidentLayout->setSpacing(SPACING);
423   GroupCoincidentLayout->setMargin(0);
424
425   ListCoincident = new QListWidget(GroupCoincidentWidget);
426   ListCoincident->setSelectionMode(QListWidget::ExtendedSelection);
427
428   DetectButton      = new QPushButton(tr("DETECT"),           GroupCoincidentWidget);
429   AddGroupButton    = new QPushButton(tr("SMESH_BUT_ADD"),    GroupCoincidentWidget);
430   RemoveGroupButton = new QPushButton(tr("SMESH_BUT_REMOVE"), GroupCoincidentWidget);
431
432   SelectAllCB = new QCheckBox(tr("SELECT_ALL"), GroupCoincidentWidget);
433   ShowIDs = new QCheckBox(myAction == 1 ? tr("SHOW_ELEMS_IDS") : tr("SHOW_NODES_IDS"), GroupCoincidentWidget);
434
435   GroupCoincidentLayout->addWidget(ListCoincident,    0,   0, 4, 2);
436   GroupCoincidentLayout->addWidget(DetectButton,      0,   2);
437   GroupCoincidentLayout->addWidget(AddGroupButton,    2, 2);
438   GroupCoincidentLayout->addWidget(RemoveGroupButton, 3, 2);
439   GroupCoincidentLayout->addWidget(SelectAllCB,       4, 0);
440   GroupCoincidentLayout->addWidget(ShowIDs,           4, 1);
441   GroupCoincidentLayout->setRowMinimumHeight(1, 10);
442   GroupCoincidentLayout->setRowStretch(1, 5);
443
444   aCoincidentLayout->addWidget(GroupCoincidentWidget);
445
446   /***************************************************************/
447   // Controls for editing the selected group
448   GroupEdit = new QGroupBox(tr("EDIT_SELECTED_GROUP"), this);
449   QGridLayout* GroupEditLayout = new QGridLayout(GroupEdit);
450   GroupEditLayout->setSpacing(SPACING);
451   GroupEditLayout->setMargin(MARGIN);
452
453   ListEdit = new QListWidget(GroupEdit);
454   //ListEdit->setRowMode(QListBox::FixedNumber);
455   //ListEdit->setHScrollBarMode(QScrollView::AlwaysOn);
456   //ListEdit->setVScrollBarMode(QScrollView::AlwaysOff);
457   ListEdit->setFlow( QListView::LeftToRight );
458   ListEdit->setSelectionMode(QListWidget::ExtendedSelection);
459
460   AddElemButton = new QPushButton(GroupEdit);
461   AddElemButton->setIcon(IconAdd);
462   RemoveElemButton = new QPushButton(GroupEdit);
463   RemoveElemButton->setIcon(IconRemove);
464   SetFirstButton = new QPushButton(GroupEdit);
465   SetFirstButton->setIcon(QPixmap(IconFirst));
466
467   GroupEditLayout->addWidget(ListEdit,         0, 0, 2, 1);
468   GroupEditLayout->addWidget(AddElemButton,    0, 1);
469   GroupEditLayout->addWidget(RemoveElemButton, 0, 2);
470   GroupEditLayout->addWidget(SetFirstButton,   1, 1, 1, 2);
471
472   /***************************************************************/
473   GroupButtons = new QGroupBox(this);
474   QHBoxLayout* GroupButtonsLayout = new QHBoxLayout(GroupButtons);
475   GroupButtonsLayout->setSpacing(SPACING);
476   GroupButtonsLayout->setMargin(MARGIN);
477
478   buttonOk = new QPushButton(tr("SMESH_BUT_APPLY_AND_CLOSE"), GroupButtons);
479   buttonOk->setAutoDefault(true);
480   buttonOk->setDefault(true);
481   buttonApply = new QPushButton(tr("SMESH_BUT_APPLY"), GroupButtons);
482   buttonApply->setAutoDefault(true);
483   buttonCancel = new QPushButton(tr("SMESH_BUT_CLOSE"), GroupButtons);
484   buttonCancel->setAutoDefault(true);
485   buttonHelp = new QPushButton(tr("SMESH_BUT_HELP"), GroupButtons);
486   buttonHelp->setAutoDefault(true);
487
488   GroupButtonsLayout->addWidget(buttonOk);
489   GroupButtonsLayout->addSpacing(10);
490   GroupButtonsLayout->addWidget(buttonApply);
491   GroupButtonsLayout->addSpacing(10);
492   GroupButtonsLayout->addStretch();
493   GroupButtonsLayout->addWidget(buttonCancel);
494   GroupButtonsLayout->addWidget(buttonHelp);
495
496   /***************************************************************/
497   DlgLayout->addWidget(GroupConstructors);
498   DlgLayout->addWidget(GroupMesh);
499   DlgLayout->addWidget(TypeBox);
500   DlgLayout->addWidget(GroupCoincident);
501   DlgLayout->addWidget(GroupEdit);
502   DlgLayout->addWidget(GroupButtons);
503
504   GroupCoincidentWidget->setVisible( myAction != 0 );
505   GroupCoincident->setVisible( myAction == 0 );
506   //if GroupExclude->setVisible( myAction == 0 );
507   GroupEdit->hide();
508
509   this->resize(10,10);
510
511   ShowIDs->setChecked( true );
512
513   Init(); // Initialisations
514 }
515
516 //=================================================================================
517 // function : ~SMESHGUI_MergeDlg()
518 // purpose  : Destroys the object and frees any allocated resources
519 //=================================================================================
520 SMESHGUI_MergeDlg::~SMESHGUI_MergeDlg()
521 {
522   delete myIdPreview;
523 }
524
525 //=================================================================================
526 // function : Init()
527 // purpose  :
528 //=================================================================================
529 void SMESHGUI_MergeDlg::Init()
530 {
531   if (myAction == 0) {
532     SpinBoxTolerance->RangeStepAndValidator(0.0, COORD_MAX, 0.00001, "len_tol_precision");
533     SpinBoxTolerance->SetValue(1e-05);
534   }
535
536   RadioButton->setChecked(true);
537
538   GroupType->button(0)->setChecked(true);
539
540   myEditCurrentArgument = (QWidget*)LineEditMesh; 
541
542   myActor = 0;
543   mySubMeshOrGroup = SMESH::SMESH_subMesh::_nil();
544
545   mySelector = (SMESH::GetViewWindow( mySMESHGUI ))->GetSelector();
546
547   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
548   myIsBusy = false;
549   
550   /* signals and slots connections */
551   connect(buttonOk,     SIGNAL(clicked()), this, SLOT(ClickOnOk()));
552   connect(buttonCancel, SIGNAL(clicked()), this, SLOT(reject()));
553   connect(buttonApply,  SIGNAL(clicked()), this, SLOT(ClickOnApply()));
554   connect(buttonHelp,   SIGNAL(clicked()), this, SLOT(ClickOnHelp()));
555
556   connect(SelectMeshButton, SIGNAL (clicked()), this, SLOT(SetEditCurrentArgument()));
557   connect(DetectButton, SIGNAL (clicked()), this, SLOT(onDetect()));
558   connect(ListCoincident, SIGNAL (itemSelectionChanged()), this, SLOT(onSelectGroup()));
559   connect(AddGroupButton, SIGNAL (clicked()), this, SLOT(onAddGroup()));
560   connect(RemoveGroupButton, SIGNAL (clicked()), this, SLOT(onRemoveGroup()));
561   connect(SelectAllCB, SIGNAL(toggled(bool)), this, SLOT(onSelectAll(bool)));
562   connect(ShowIDs, SIGNAL(toggled(bool)), this, SLOT(onSelectGroup()));
563   connect(ListEdit, SIGNAL (itemSelectionChanged()), this, SLOT(onSelectElementFromGroup()));
564   connect(AddElemButton, SIGNAL (clicked()), this, SLOT(onAddElement()));
565   connect(RemoveElemButton, SIGNAL (clicked()), this, SLOT(onRemoveElement()));
566   connect(SetFirstButton, SIGNAL( clicked() ), this, SLOT( onSetFirst() ) );
567   connect(GroupType, SIGNAL(buttonClicked(int)), this, SLOT(onTypeChanged(int)));
568
569   connect(mySMESHGUI, SIGNAL (SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
570   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
571   /* to close dialog if study change */
572   connect(mySMESHGUI, SIGNAL (SignalCloseAllDialogs()), this, SLOT(reject()));
573
574   // Init Mesh field from selection
575   SelectionIntoArgument();
576
577   // Update Buttons
578   updateControls();
579   
580   if (myAction == 0)
581     myHelpFileName = "merging_nodes_page.html";
582   else
583     myHelpFileName = "merging_elements_page.html";
584 }
585
586 //=================================================================================
587 // function : FindGravityCenter()
588 // purpose  :
589 //=================================================================================
590 void SMESHGUI_MergeDlg::FindGravityCenter(TColStd_MapOfInteger & theElemsIdMap, 
591                                           std::list< gp_XYZ > & theGrCentersXYZ)
592 {
593   if (!myActor)
594     return;
595
596   SMDS_Mesh* aMesh = 0;
597   aMesh = myActor->GetObject()->GetMesh();
598   if (!aMesh)
599     return;
600
601   int nbNodes;
602
603   TColStd_MapIteratorOfMapOfInteger idIter( theElemsIdMap );
604   for( ; idIter.More(); idIter.Next() ) {
605     const SMDS_MeshElement* anElem = aMesh->FindElement(idIter.Key());
606     if ( !anElem )
607       continue;
608
609     gp_XYZ anXYZ(0., 0., 0.);
610     SMDS_ElemIteratorPtr nodeIt = anElem->nodesIterator();
611     for ( nbNodes = 0; nodeIt->more(); nbNodes++ ) {
612       const SMDS_MeshNode* node = static_cast<const SMDS_MeshNode*>( nodeIt->next() );
613       anXYZ.Add( gp_XYZ( node->X(), node->Y(), node->Z() ) );
614     }
615     anXYZ.Divide( nbNodes );
616     
617     theGrCentersXYZ.push_back( anXYZ );
618   }
619 }
620
621 //=================================================================================
622 // function : ClickOnApply()
623 // purpose  :
624 //=================================================================================
625 bool SMESHGUI_MergeDlg::ClickOnApply()
626 {
627   if (mySMESHGUI->isActiveStudyLocked() || myMesh->_is_nil())
628     return false;
629
630   try {
631     if (myTypeId == 0)
632       onDetect();
633
634     SUIT_OverrideCursor aWaitCursor;
635     SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
636
637     SMESH::long_array_var anIds = new SMESH::long_array;
638     SMESH::array_of_long_array_var aGroupsOfElements = new SMESH::array_of_long_array;
639
640     if ( ListCoincident->count() == 0) {
641       if (myAction == 0)
642         SUIT_MessageBox::warning(this,
643                                  tr("SMESH_WARNING"),
644                                  tr("SMESH_NO_NODES_DETECTED"));
645       else
646         SUIT_MessageBox::warning(this,
647                                  tr("SMESH_WARNING"),
648                                  tr("SMESH_NO_ELEMENTS_DETECTED"));
649       return false;
650     }
651
652     aGroupsOfElements->length(ListCoincident->count());
653
654     int anArrayNum = 0;
655     for (int i = 0; i < ListCoincident->count(); i++) {
656       QStringList aListIds = ListCoincident->item(i)->text().split(" ", QString::SkipEmptyParts);
657
658       anIds->length(aListIds.count());
659       for (int i = 0; i < aListIds.count(); i++)
660         anIds[i] = aListIds[i].toInt();
661
662       aGroupsOfElements[anArrayNum++] = anIds.inout();
663     }
664
665     if( myAction == 0 )
666       aMeshEditor->MergeNodes (aGroupsOfElements.inout());
667     else
668       aMeshEditor->MergeElements (aGroupsOfElements.inout());
669
670     if ( myTypeId == 0 ) {
671       if (myAction == 0 )
672         SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_INFORMATION"),
673                                      tr("SMESH_MERGED_NODES").arg(QString::number(ListCoincident->count()).toLatin1().data()));
674       else
675         SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_INFORMATION"),
676                                      tr("SMESH_MERGED_ELEMENTS").arg(QString::number(ListCoincident->count()).toLatin1().data()));
677     }
678       
679
680   } catch(...) {
681   }
682   
683   ListCoincident->clear();
684   
685   SMESH::UpdateView();
686   SMESHGUI::Modified();
687   
688   return true;
689 }
690
691 //=================================================================================
692 // function : ClickOnOk()
693 // purpose  :
694 //=================================================================================
695 void SMESHGUI_MergeDlg::ClickOnOk()
696 {
697   if (ClickOnApply())
698     reject();
699 }
700
701 //=================================================================================
702 // function : reject()
703 // purpose  :
704 //=================================================================================
705 void SMESHGUI_MergeDlg::reject()
706 {
707   myIdPreview->SetPointsLabeled(false);
708   SMESH::SetPointRepresentation(false);
709   disconnect(mySelectionMgr, 0, this, 0);
710   disconnect(mySMESHGUI, 0, this, 0);
711   mySMESHGUI->ResetState();
712
713   mySelectionMgr->clearFilters();
714   //mySelectionMgr->clearSelected();
715
716   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
717     aViewWindow->SetSelectionMode(ActorSelection);
718
719   QDialog::reject();
720 }
721
722 //=================================================================================
723 // function : ClickOnHelp()
724 // purpose  :
725 //=================================================================================
726 void SMESHGUI_MergeDlg::ClickOnHelp()
727 {
728   LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
729   if (app) 
730     app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""), myHelpFileName);
731   else {
732     QString platform;
733 #ifdef WIN32
734     platform = "winapplication";
735 #else
736     platform = "application";
737 #endif
738     SUIT_MessageBox::warning(this, tr("WRN_WARNING"),
739                              tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
740                              arg(app->resourceMgr()->stringValue("ExternalBrowser", 
741                                                                  platform)).
742                              arg(myHelpFileName));
743   }
744 }
745
746 //=================================================================================
747 // function : onEditGroup()
748 // purpose  :
749 //=================================================================================
750 void SMESHGUI_MergeDlg::onEditGroup()
751 {
752   QList<QListWidgetItem*> selItems = ListCoincident->selectedItems();
753   if ( selItems.count() != 1 ) {
754     ListEdit->clear();
755     return;
756   }
757
758   QStringList aNewIds;
759
760   for (int i = 0; i < ListEdit->count(); i++ )
761     aNewIds.append(ListEdit->item(i)->text());
762
763   ListCoincident->clearSelection();
764   selItems.first()->setText(aNewIds.join(" "));
765   selItems.first()->setSelected(true);
766 }
767
768 //=================================================================================
769 // function : updateControls()
770 // purpose  :
771 //=================================================================================
772 void SMESHGUI_MergeDlg::updateControls()
773 {
774   if (ListEdit->count() == 0)
775     SetFirstButton->setEnabled(false);
776   bool enable = !(myMesh->_is_nil()) && (ListCoincident->count() || (myTypeId == 0));
777   buttonOk->setEnabled(enable);
778   buttonApply->setEnabled(enable);
779 }
780
781 //=================================================================================
782 // function : onDetect()
783 // purpose  :
784 //=================================================================================
785 void SMESHGUI_MergeDlg::onDetect()
786 {
787   if ( myMesh->_is_nil() || LineEditMesh->text().isEmpty() )
788     return;
789
790   try {
791     SUIT_OverrideCursor aWaitCursor;
792     SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
793
794     ListCoincident->clear();
795     ListEdit->clear();
796
797     SMESH::array_of_long_array_var aGroupsArray;
798     SMESH::ListOfIDSources_var aExcludeGroups = new SMESH::ListOfIDSources;
799
800     SMESH::SMESH_IDSource_var src;
801     if ( mySubMeshOrGroup->_is_nil() ) src = SMESH::SMESH_IDSource::_duplicate( myMesh );
802     else src = SMESH::SMESH_IDSource::_duplicate( mySubMeshOrGroup );
803
804     switch (myAction) {
805     case 0 :
806       for ( int i = 0; GroupExclude->isChecked() && i < ListExclude->count(); i++ ) {
807         if ( ListExclude->item( i )->checkState() == Qt::Checked ) {
808           aExcludeGroups->length( aExcludeGroups->length()+1 );
809           aExcludeGroups[ aExcludeGroups->length()-1 ] = SMESH::SMESH_IDSource::_duplicate( myGroups[i] );
810         }
811       }
812       aMeshEditor->FindCoincidentNodesOnPartBut(src.in(),
813                                                 SpinBoxTolerance->GetValue(), 
814                                                 aGroupsArray.out(),
815                                                 aExcludeGroups.in());
816       break;
817     case 1 :
818       aMeshEditor->FindEqualElements(src.in(), aGroupsArray.out());
819       break;
820     }
821     
822     for (int i = 0; i < aGroupsArray->length(); i++) {
823       SMESH::long_array& aGroup = aGroupsArray[i];
824
825       QStringList anIDs;
826       for (int j = 0; j < aGroup.length(); j++)
827         anIDs.append(QString::number(aGroup[j]));
828
829       ListCoincident->addItem(anIDs.join(" "));
830     }
831    } catch(...) {
832   }
833
834   ListCoincident->selectAll();
835   updateControls();
836 }
837
838 //=================================================================================
839 // function : onSelectGroup()
840 // purpose  :
841 //=================================================================================
842 void SMESHGUI_MergeDlg::onSelectGroup()
843 {
844   if (myIsBusy || !myActor)
845     return;
846   myEditCurrentArgument = (QWidget*)ListCoincident;
847
848   myIsBusy = true;
849   ListEdit->clear();
850   
851   TColStd_MapOfInteger anIndices;
852   QList<QListWidgetItem*> selItems = ListCoincident->selectedItems();
853   QListWidgetItem* anItem;
854   QStringList aListIds;
855
856   ListEdit->clear();
857
858   foreach(anItem, selItems) {
859     aListIds = anItem->text().split(" ", QString::SkipEmptyParts);
860     for (int i = 0; i < aListIds.count(); i++)
861       anIndices.Add(aListIds[i].toInt());
862   }
863   
864   if (selItems.count() == 1) {
865     ListEdit->addItems(aListIds);
866     ListEdit->selectAll();
867   }
868
869   mySelector->AddOrRemoveIndex(myActor->getIO(), anIndices, false);
870   SALOME_ListIO aList;
871   aList.Append(myActor->getIO());
872   mySelectionMgr->setSelectedObjects(aList,false);
873   
874   if (ShowIDs->isChecked()) 
875     if (myAction == 0) {
876       myIdPreview->SetPointsData(myActor->GetObject()->GetMesh(), anIndices);
877       myIdPreview->SetPointsLabeled(!anIndices.IsEmpty(), myActor->GetVisibility());
878     }
879     else {
880       std::list< gp_XYZ > aGrCentersXYZ;
881       FindGravityCenter(anIndices, aGrCentersXYZ);
882       myIdPreview->SetElemsData( anIndices, aGrCentersXYZ);
883       myIdPreview->SetPointsLabeled(!anIndices.IsEmpty(), myActor->GetVisibility());
884     }
885   else
886     myIdPreview->SetPointsLabeled(false);
887
888   updateControls();
889   myIsBusy = false;
890 }
891
892 //=================================================================================
893 // function : onSelectAll()
894 // purpose  :
895 //=================================================================================
896 void SMESHGUI_MergeDlg::onSelectAll (bool isToggled)
897 {
898   if ( isToggled )
899     ListCoincident->selectAll();
900   else
901     ListCoincident->clearSelection();
902 }
903
904 //=================================================================================
905 // function : onSelectElementFromGroup()
906 // purpose  :
907 //=================================================================================
908 void SMESHGUI_MergeDlg::onSelectElementFromGroup()
909 {
910   if (myIsBusy || !myActor)
911     return;
912
913   TColStd_MapOfInteger anIndices;
914   QList<QListWidgetItem*> selItems = ListEdit->selectedItems();
915   QListWidgetItem* anItem;
916
917   foreach(anItem, selItems)
918     anIndices.Add(anItem->text().toInt());
919
920   SetFirstButton->setEnabled(selItems.count() == 1);
921
922   mySelector->AddOrRemoveIndex(myActor->getIO(), anIndices, false);
923   SALOME_ListIO aList;
924   aList.Append(myActor->getIO());
925   mySelectionMgr->setSelectedObjects(aList);
926   
927   if (ShowIDs->isChecked())
928     if (myAction == 0) {
929       myIdPreview->SetPointsData(myActor->GetObject()->GetMesh(), anIndices);
930       myIdPreview->SetPointsLabeled(!anIndices.IsEmpty(), myActor->GetVisibility());
931     }
932     else {
933       std::list< gp_XYZ > aGrCentersXYZ;
934       FindGravityCenter(anIndices, aGrCentersXYZ);
935       myIdPreview->SetElemsData(anIndices, aGrCentersXYZ);
936       myIdPreview->SetPointsLabeled(!anIndices.IsEmpty(), myActor->GetVisibility());
937     }
938   else 
939     myIdPreview->SetPointsLabeled(false);
940 }
941
942 //=================================================================================
943 // function : onAddGroup()
944 // purpose  :
945 //=================================================================================
946 void SMESHGUI_MergeDlg::onAddGroup()
947 {
948   if ( myMesh->_is_nil() || LineEditMesh->text().isEmpty() )
949     return;
950
951   QString anIDs = "";
952   int aNbElements = 0;
953   aNbElements = SMESH::GetNameOfSelectedNodes(mySelector, myActor->getIO(), anIDs);
954
955   if (aNbElements < 1)
956     return;
957   
958   ListCoincident->clearSelection();
959   ListCoincident->addItem(anIDs);
960   int nbGroups = ListCoincident->count();
961   if (nbGroups) {
962     ListCoincident->setCurrentRow(nbGroups-1);
963     ListCoincident->item(nbGroups-1)->setSelected(true);
964   }
965   else {
966     // VSR ? this code seems to be never executed!!!
967     ListCoincident->setCurrentRow(0);
968     //ListCoincident->setSelected(0, true); // VSR: no items - no selection
969   }
970
971   updateControls();
972 }
973
974 //=================================================================================
975 // function : onRemoveGroup()
976 // purpose  :
977 //=================================================================================
978 void SMESHGUI_MergeDlg::onRemoveGroup()
979 {
980   if (myEditCurrentArgument != (QWidget*)ListCoincident)
981     return;
982   myIsBusy = true;
983
984   QList<QListWidgetItem*> selItems = ListCoincident->selectedItems();
985   QListWidgetItem* anItem;
986
987   foreach(anItem, selItems)
988     delete anItem;
989
990   ListEdit->clear();
991   myIdPreview->SetPointsLabeled(false);
992   updateControls();
993   SMESH::UpdateView();
994   myIsBusy = false;
995 }
996
997 //=================================================================================
998 // function : onAddElement()
999 // purpose  :
1000 //=================================================================================
1001 void SMESHGUI_MergeDlg::onAddElement()
1002 {
1003   if (!myActor)
1004     return;
1005   myIsBusy = true;
1006
1007   QString aListStr = "";
1008   int aNbNnodes = 0;
1009
1010   aNbNnodes = SMESH::GetNameOfSelectedNodes(mySelector, myActor->getIO(), aListStr);
1011   if (aNbNnodes < 1)
1012     return;
1013
1014   QStringList aNodes = aListStr.split(" ", QString::SkipEmptyParts);
1015
1016   for (QStringList::iterator it = aNodes.begin(); it != aNodes.end(); ++it) {
1017     QList<QListWidgetItem*> found = ListEdit->findItems(*it, Qt::MatchExactly);
1018     if ( found.count() == 0 ) {
1019       QListWidgetItem* anItem = new QListWidgetItem(*it);
1020       ListEdit->addItem(anItem);
1021       anItem->setSelected(true);
1022     }
1023     else {
1024       QListWidgetItem* anItem;
1025       foreach(anItem, found) anItem->setSelected(true);
1026     }
1027   }
1028
1029   myIsBusy = false;
1030   onEditGroup();
1031 }
1032
1033 //=================================================================================
1034 // function : onRemoveElement()
1035 // purpose  :
1036 //=================================================================================
1037 void SMESHGUI_MergeDlg::onRemoveElement()
1038 {
1039   if (myEditCurrentArgument != (QWidget*)ListCoincident)
1040     return;
1041   myIsBusy = true;
1042
1043   QList<QListWidgetItem*> selItems = ListEdit->selectedItems();
1044   QListWidgetItem* anItem;
1045
1046   foreach(anItem, selItems)
1047     delete anItem;
1048   
1049   myIsBusy = false;
1050   onEditGroup();
1051 }
1052
1053 //=================================================================================
1054 // function : onSetFirst()
1055 // purpose  :
1056 //=================================================================================
1057 void SMESHGUI_MergeDlg::onSetFirst()
1058 {
1059   if (myEditCurrentArgument != (QWidget*)ListCoincident)
1060     return;
1061   myIsBusy = true;
1062   
1063   QList<QListWidgetItem*> selItems = ListEdit->selectedItems();
1064   QListWidgetItem* anItem;
1065   
1066   foreach(anItem, selItems) {
1067     ListEdit->takeItem(ListEdit->row(anItem));
1068     ListEdit->insertItem(0, anItem);
1069   }
1070
1071   myIsBusy = false;
1072   onEditGroup();
1073 }
1074
1075 //=================================================================================
1076 // function : SetEditCurrentArgument()
1077 // purpose  :
1078 //=================================================================================
1079 void SMESHGUI_MergeDlg::SetEditCurrentArgument()
1080 {
1081   QPushButton* send = (QPushButton*)sender();
1082
1083   disconnect(mySelectionMgr, 0, this, 0);
1084   mySelectionMgr->clearSelected();
1085   mySelectionMgr->clearFilters();
1086
1087   if (send == SelectMeshButton) {
1088     myEditCurrentArgument = (QWidget*)LineEditMesh;
1089     SMESH::SetPointRepresentation(false);
1090     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
1091       aViewWindow->SetSelectionMode(ActorSelection);
1092     if (myTypeId == 1)
1093       mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
1094   }
1095
1096   myEditCurrentArgument->setFocus();
1097   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
1098   SelectionIntoArgument();
1099 }
1100
1101 //=================================================================================
1102 // function : SelectionIntoArgument()
1103 // purpose  : Called when selection as changed or other case
1104 //=================================================================================
1105 void SMESHGUI_MergeDlg::SelectionIntoArgument()
1106 {
1107   if (myEditCurrentArgument == (QWidget*)LineEditMesh) {
1108     QString aString = "";
1109     LineEditMesh->setText(aString);
1110     
1111     ListCoincident->clear();
1112     ListEdit->clear();
1113     myActor = 0;
1114     QString aCurrentEntry = myEntry;
1115     
1116     int nbSel = SMESH::GetNameOfSelectedIObjects(mySelectionMgr, aString);
1117     if (nbSel != 1) {
1118       myIdPreview->SetPointsLabeled(false);
1119       SMESH::SetPointRepresentation(false);
1120       mySelectionMgr->clearFilters();
1121       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
1122         aViewWindow->SetSelectionMode(ActorSelection);
1123       return;
1124     }
1125
1126     SALOME_ListIO aList;
1127     mySelectionMgr->selectedObjects(aList);
1128     
1129     Handle(SALOME_InteractiveObject) IO = aList.First();
1130     myEntry = IO->getEntry();
1131     myMesh = SMESH::GetMeshByIO(IO);
1132     
1133     if (myMesh->_is_nil())
1134       return;
1135
1136     LineEditMesh->setText(aString);
1137     
1138     myActor = SMESH::FindActorByEntry(IO->getEntry());
1139     if (!myActor)
1140       myActor = SMESH::FindActorByObject(myMesh);
1141     
1142     if ( myActor && myTypeId ==1 ) {
1143       mySubMeshOrGroup = SMESH::SMESH_IDSource::_nil();
1144       mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
1145       
1146       if ((!SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(IO)->_is_nil() || //SUBMESH OR GROUP
1147            !SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(IO)->_is_nil()) &&
1148           !SMESH::IObjectToInterface<SMESH::SMESH_IDSource>(IO)->_is_nil())
1149         mySubMeshOrGroup = SMESH::IObjectToInterface<SMESH::SMESH_IDSource>(IO);
1150       
1151       if (myAction == 0) {
1152         SMESH::SetPointRepresentation(true);
1153         if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
1154           aViewWindow->SetSelectionMode(NodeSelection);
1155       }
1156       else
1157         if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
1158           aViewWindow->SetSelectionMode(CellSelection);
1159     }
1160
1161     // process groups
1162     if ( myAction == 0 && !myMesh->_is_nil() && myEntry != aCurrentEntry ) {
1163       myGroups.clear();
1164       ListExclude->clear();
1165       SMESH::ListOfGroups_var aListOfGroups = myMesh->GetGroups();
1166       for( int i = 0, n = aListOfGroups->length(); i < n; i++ ) {
1167         SMESH::SMESH_GroupBase_var aGroup = aListOfGroups[i];
1168         if ( !aGroup->_is_nil() ) { // && aGroup->GetType() == SMESH::NODE
1169           QString aGroupName( aGroup->GetName() );
1170           if ( !aGroupName.isEmpty() ) {
1171             myGroups.append(SMESH::SMESH_GroupBase::_duplicate(aGroup));
1172             QListWidgetItem* item = new QListWidgetItem( aGroupName );
1173             item->setFlags( Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsUserCheckable );
1174             item->setCheckState( Qt::Unchecked );
1175             ListExclude->addItem( item );
1176           }
1177         }
1178       }
1179     }
1180
1181     updateControls();
1182   }
1183 }
1184
1185 //=================================================================================
1186 // function : DeactivateActiveDialog()
1187 // purpose  :
1188 //=================================================================================
1189 void SMESHGUI_MergeDlg::DeactivateActiveDialog()
1190 {
1191   if (GroupConstructors->isEnabled()) {
1192     GroupConstructors->setEnabled(false);
1193     TypeBox->setEnabled(false);
1194     GroupMesh->setEnabled(false);
1195     GroupCoincident->setEnabled(false);
1196     GroupEdit->setEnabled(false);
1197     GroupButtons->setEnabled(false);
1198     mySMESHGUI->ResetState();
1199     mySMESHGUI->SetActiveDialogBox(0);
1200   }
1201
1202   mySelectionMgr->clearSelected();
1203   disconnect(mySelectionMgr, 0, this, 0);
1204 }
1205
1206 //=================================================================================
1207 // function : ActivateThisDialog()
1208 // purpose  :
1209 //=================================================================================
1210 void SMESHGUI_MergeDlg::ActivateThisDialog()
1211 {
1212   /* Emit a signal to deactivate the active dialog */
1213   mySMESHGUI->EmitSignalDeactivateDialog();
1214   GroupConstructors->setEnabled(true);
1215   TypeBox->setEnabled(true);
1216   GroupMesh->setEnabled(true);
1217   GroupCoincident->setEnabled(true);
1218   GroupEdit->setEnabled(true);
1219   GroupButtons->setEnabled(true);
1220
1221   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
1222   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
1223   SelectionIntoArgument();
1224 }
1225
1226 //=================================================================================
1227 // function : enterEvent()
1228 // purpose  :
1229 //=================================================================================
1230 void SMESHGUI_MergeDlg::enterEvent(QEvent*)
1231 {
1232   if (!GroupConstructors->isEnabled())
1233     ActivateThisDialog();
1234 }
1235
1236 //=================================================================================
1237 // function : keyPressEvent()
1238 // purpose  :
1239 //=================================================================================
1240 void SMESHGUI_MergeDlg::keyPressEvent( QKeyEvent* e)
1241 {
1242   QDialog::keyPressEvent( e );
1243   if ( e->isAccepted() )
1244     return;
1245
1246   if ( e->key() == Qt::Key_F1 ) {
1247     e->accept();
1248     ClickOnHelp();
1249   }
1250 }
1251
1252 //=================================================================================
1253 // function : onTypeChanged()
1254 // purpose  : the type radio button management
1255 //=================================================================================
1256 void SMESHGUI_MergeDlg::onTypeChanged (int id)
1257 {
1258   if (myTypeId == id)
1259     return;
1260
1261   myTypeId = id;
1262   switch (id)
1263   {
1264   case 0: // automatic
1265     myIdPreview->SetPointsLabeled(false);
1266     SMESH::SetPointRepresentation(false);
1267     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
1268       aViewWindow->SetSelectionMode(ActorSelection);
1269     mySelectionMgr->clearFilters();
1270     if (myAction == 0)
1271       GroupCoincidentWidget->hide();
1272     else
1273       GroupCoincident->hide();
1274     GroupEdit->hide();
1275     break;
1276
1277   case 1: // manual
1278     SMESH::UpdateView();
1279
1280     // Costruction of the logical filter
1281     SMESH_TypeFilter* aMeshOrSubMeshFilter = new SMESH_TypeFilter (SMESH::MESHorSUBMESH);
1282     SMESH_TypeFilter* aSmeshGroupFilter    = new SMESH_TypeFilter (SMESH::GROUP);
1283     
1284     QList<SUIT_SelectionFilter*> aListOfFilters;
1285     if (aMeshOrSubMeshFilter) aListOfFilters.append(aMeshOrSubMeshFilter);
1286     if (aSmeshGroupFilter)    aListOfFilters.append(aSmeshGroupFilter);
1287     
1288     myMeshOrSubMeshOrGroupFilter =
1289       new SMESH_LogicalFilter (aListOfFilters, SMESH_LogicalFilter::LO_OR);
1290
1291     if (myAction == 0) {
1292       GroupCoincidentWidget->show();
1293       SMESH::SetPointRepresentation(true);
1294       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
1295         aViewWindow->SetSelectionMode(NodeSelection);
1296     }
1297     else {
1298       GroupCoincident->show();
1299       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
1300         aViewWindow->SetSelectionMode(CellSelection);
1301     }
1302     GroupEdit->show();
1303     break;
1304   }
1305   updateControls();
1306
1307   qApp->processEvents();
1308   updateGeometry();
1309   resize(10,10);
1310
1311   SelectionIntoArgument();
1312 }