Salome HOME
08fca6b6ae197f2e969ad1998e2113ffc5b0eb09
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MergeDlg.cxx
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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   myEditCurrentArgument = (QWidget*)LineEditMesh;
686
687   SMESH::UpdateView();
688   SMESHGUI::Modified();
689   
690   return true;
691 }
692
693 //=================================================================================
694 // function : ClickOnOk()
695 // purpose  :
696 //=================================================================================
697 void SMESHGUI_MergeDlg::ClickOnOk()
698 {
699   if (ClickOnApply())
700     reject();
701 }
702
703 //=================================================================================
704 // function : reject()
705 // purpose  :
706 //=================================================================================
707 void SMESHGUI_MergeDlg::reject()
708 {
709   myIdPreview->SetPointsLabeled(false);
710   SMESH::SetPointRepresentation(false);
711   disconnect(mySelectionMgr, 0, this, 0);
712   disconnect(mySMESHGUI, 0, this, 0);
713   mySMESHGUI->ResetState();
714
715   mySelectionMgr->clearFilters();
716   //mySelectionMgr->clearSelected();
717
718   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
719     aViewWindow->SetSelectionMode(ActorSelection);
720
721   QDialog::reject();
722 }
723
724 //=================================================================================
725 // function : ClickOnHelp()
726 // purpose  :
727 //=================================================================================
728 void SMESHGUI_MergeDlg::ClickOnHelp()
729 {
730   LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
731   if (app) 
732     app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""), myHelpFileName);
733   else {
734     QString platform;
735 #ifdef WIN32
736     platform = "winapplication";
737 #else
738     platform = "application";
739 #endif
740     SUIT_MessageBox::warning(this, tr("WRN_WARNING"),
741                              tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
742                              arg(app->resourceMgr()->stringValue("ExternalBrowser", 
743                                                                  platform)).
744                              arg(myHelpFileName));
745   }
746 }
747
748 //=================================================================================
749 // function : onEditGroup()
750 // purpose  :
751 //=================================================================================
752 void SMESHGUI_MergeDlg::onEditGroup()
753 {
754   QList<QListWidgetItem*> selItems = ListCoincident->selectedItems();
755   if ( selItems.count() != 1 ) {
756     ListEdit->clear();
757     return;
758   }
759
760   QStringList aNewIds;
761
762   for (int i = 0; i < ListEdit->count(); i++ )
763     aNewIds.append(ListEdit->item(i)->text());
764
765   ListCoincident->clearSelection();
766   selItems.first()->setText(aNewIds.join(" "));
767   selItems.first()->setSelected(true);
768 }
769
770 //=================================================================================
771 // function : updateControls()
772 // purpose  :
773 //=================================================================================
774 void SMESHGUI_MergeDlg::updateControls()
775 {
776   if (ListEdit->count() == 0)
777     SetFirstButton->setEnabled(false);
778   bool enable = !(myMesh->_is_nil()) && (ListCoincident->count() || (myTypeId == 0));
779   buttonOk->setEnabled(enable);
780   buttonApply->setEnabled(enable);
781   DetectButton->setEnabled( !myMesh->_is_nil() );
782 }
783
784 //=================================================================================
785 // function : onDetect()
786 // purpose  :
787 //=================================================================================
788 void SMESHGUI_MergeDlg::onDetect()
789 {
790   if ( myMesh->_is_nil() || LineEditMesh->text().isEmpty() )
791     return;
792
793   try {
794     SUIT_OverrideCursor aWaitCursor;
795     SMESH::SMESH_MeshEditor_var aMeshEditor = myMesh->GetMeshEditor();
796
797     ListCoincident->clear();
798     ListEdit->clear();
799
800     SMESH::array_of_long_array_var aGroupsArray;
801     SMESH::ListOfIDSources_var aExcludeGroups = new SMESH::ListOfIDSources;
802
803     SMESH::SMESH_IDSource_var src;
804     if ( mySubMeshOrGroup->_is_nil() ) src = SMESH::SMESH_IDSource::_duplicate( myMesh );
805     else src = SMESH::SMESH_IDSource::_duplicate( mySubMeshOrGroup );
806
807     switch (myAction) {
808     case 0 :
809       for ( int i = 0; GroupExclude->isChecked() && i < ListExclude->count(); i++ ) {
810         if ( ListExclude->item( i )->checkState() == Qt::Checked ) {
811           aExcludeGroups->length( aExcludeGroups->length()+1 );
812           aExcludeGroups[ aExcludeGroups->length()-1 ] = SMESH::SMESH_IDSource::_duplicate( myGroups[i] );
813         }
814       }
815       aMeshEditor->FindCoincidentNodesOnPartBut(src.in(),
816                                                 SpinBoxTolerance->GetValue(), 
817                                                 aGroupsArray.out(),
818                                                 aExcludeGroups.in());
819       break;
820     case 1 :
821       aMeshEditor->FindEqualElements(src.in(), aGroupsArray.out());
822       break;
823     }
824     
825     for (int i = 0; i < aGroupsArray->length(); i++) {
826       SMESH::long_array& aGroup = aGroupsArray[i];
827
828       QStringList anIDs;
829       for (int j = 0; j < aGroup.length(); j++)
830         anIDs.append(QString::number(aGroup[j]));
831
832       ListCoincident->addItem(anIDs.join(" "));
833     }
834    } catch(...) {
835   }
836
837   ListCoincident->selectAll();
838   updateControls();
839   SMESH::UpdateView();
840 }
841
842 //=================================================================================
843 // function : onSelectGroup()
844 // purpose  :
845 //=================================================================================
846 void SMESHGUI_MergeDlg::onSelectGroup()
847 {
848   if (myIsBusy || !myActor)
849     return;
850
851   if( ListCoincident->count() != ListCoincident->selectedItems().count() )
852     SelectAllCB->setChecked( false );
853
854   myEditCurrentArgument = (QWidget*)ListCoincident;
855
856   myIsBusy = true;
857   ListEdit->clear();
858   
859   TColStd_MapOfInteger anIndices;
860   QList<QListWidgetItem*> selItems = ListCoincident->selectedItems();
861   QListWidgetItem* anItem;
862   QStringList aListIds;
863
864   ListEdit->clear();
865
866   foreach(anItem, selItems) {
867     aListIds = anItem->text().split(" ", QString::SkipEmptyParts);
868     for (int i = 0; i < aListIds.count(); i++)
869       anIndices.Add(aListIds[i].toInt());
870   }
871   
872   if (selItems.count() == 1) {
873     ListEdit->addItems(aListIds);
874     ListEdit->selectAll();
875   }
876
877   mySelector->AddOrRemoveIndex(myActor->getIO(), anIndices, false);
878   SALOME_ListIO aList;
879   aList.Append(myActor->getIO());
880   mySelectionMgr->setSelectedObjects(aList,false);
881   
882   if (ShowIDs->isChecked()) 
883     if (myAction == 0) {
884       myIdPreview->SetPointsData(myActor->GetObject()->GetMesh(), anIndices);
885       myIdPreview->SetPointsLabeled(!anIndices.IsEmpty(), myActor->GetVisibility());
886     }
887     else {
888       std::list< gp_XYZ > aGrCentersXYZ;
889       FindGravityCenter(anIndices, aGrCentersXYZ);
890       myIdPreview->SetElemsData( anIndices, aGrCentersXYZ);
891       myIdPreview->SetPointsLabeled(!anIndices.IsEmpty(), myActor->GetVisibility());
892     }
893   else
894     myIdPreview->SetPointsLabeled(false);
895
896   updateControls();
897   myIsBusy = false;
898 }
899
900 //=================================================================================
901 // function : onSelectAll()
902 // purpose  :
903 //=================================================================================
904 void SMESHGUI_MergeDlg::onSelectAll (bool isToggled)
905 {
906   if ( isToggled )
907     ListCoincident->selectAll();
908   else
909     ListCoincident->clearSelection();
910 }
911
912 //=================================================================================
913 // function : onSelectElementFromGroup()
914 // purpose  :
915 //=================================================================================
916 void SMESHGUI_MergeDlg::onSelectElementFromGroup()
917 {
918   if (myIsBusy || !myActor)
919     return;
920
921   TColStd_MapOfInteger anIndices;
922   QList<QListWidgetItem*> selItems = ListEdit->selectedItems();
923   QListWidgetItem* anItem;
924
925   foreach(anItem, selItems)
926     anIndices.Add(anItem->text().toInt());
927
928   SetFirstButton->setEnabled(selItems.count() == 1);
929
930   mySelector->AddOrRemoveIndex(myActor->getIO(), anIndices, false);
931   SALOME_ListIO aList;
932   aList.Append(myActor->getIO());
933   mySelectionMgr->setSelectedObjects(aList);
934   
935   if (ShowIDs->isChecked())
936     if (myAction == 0) {
937       myIdPreview->SetPointsData(myActor->GetObject()->GetMesh(), anIndices);
938       myIdPreview->SetPointsLabeled(!anIndices.IsEmpty(), myActor->GetVisibility());
939     }
940     else {
941       std::list< gp_XYZ > aGrCentersXYZ;
942       FindGravityCenter(anIndices, aGrCentersXYZ);
943       myIdPreview->SetElemsData(anIndices, aGrCentersXYZ);
944       myIdPreview->SetPointsLabeled(!anIndices.IsEmpty(), myActor->GetVisibility());
945     }
946   else 
947     myIdPreview->SetPointsLabeled(false);
948 }
949
950 //=================================================================================
951 // function : onAddGroup()
952 // purpose  :
953 //=================================================================================
954 void SMESHGUI_MergeDlg::onAddGroup()
955 {
956   if ( myMesh->_is_nil() || LineEditMesh->text().isEmpty() )
957     return;
958
959   QString anIDs = "";
960   int aNbElements = 0;
961   aNbElements = SMESH::GetNameOfSelectedNodes(mySelector, myActor->getIO(), anIDs);
962
963   if (aNbElements < 1)
964     return;
965   
966   ListCoincident->clearSelection();
967   ListCoincident->addItem(anIDs);
968   int nbGroups = ListCoincident->count();
969   if (nbGroups) {
970     ListCoincident->setCurrentRow(nbGroups-1);
971     ListCoincident->item(nbGroups-1)->setSelected(true);
972   }
973   else {
974     // VSR ? this code seems to be never executed!!!
975     ListCoincident->setCurrentRow(0);
976     //ListCoincident->setSelected(0, true); // VSR: no items - no selection
977   }
978
979   updateControls();
980 }
981
982 //=================================================================================
983 // function : onRemoveGroup()
984 // purpose  :
985 //=================================================================================
986 void SMESHGUI_MergeDlg::onRemoveGroup()
987 {
988   if (myEditCurrentArgument != (QWidget*)ListCoincident)
989     return;
990   myIsBusy = true;
991
992   QList<QListWidgetItem*> selItems = ListCoincident->selectedItems();
993   QListWidgetItem* anItem;
994
995   foreach(anItem, selItems)
996     delete anItem;
997
998   ListEdit->clear();
999   myIdPreview->SetPointsLabeled(false);
1000   updateControls();
1001   SMESH::UpdateView();
1002   myIsBusy = false;
1003
1004   if( ListCoincident->count() == 0 ) {
1005     myEditCurrentArgument = (QWidget*)LineEditMesh;
1006     SelectAllCB->setChecked( false );
1007   }
1008 }
1009
1010 //=================================================================================
1011 // function : onAddElement()
1012 // purpose  :
1013 //=================================================================================
1014 void SMESHGUI_MergeDlg::onAddElement()
1015 {
1016   if (!myActor)
1017     return;
1018   myIsBusy = true;
1019
1020   QString aListStr = "";
1021   int aNbNnodes = 0;
1022
1023   aNbNnodes = SMESH::GetNameOfSelectedNodes(mySelector, myActor->getIO(), aListStr);
1024   if (aNbNnodes < 1)
1025     return;
1026
1027   QStringList aNodes = aListStr.split(" ", QString::SkipEmptyParts);
1028
1029   for (QStringList::iterator it = aNodes.begin(); it != aNodes.end(); ++it) {
1030     QList<QListWidgetItem*> found = ListEdit->findItems(*it, Qt::MatchExactly);
1031     if ( found.count() == 0 ) {
1032       QListWidgetItem* anItem = new QListWidgetItem(*it);
1033       ListEdit->addItem(anItem);
1034       anItem->setSelected(true);
1035     }
1036     else {
1037       QListWidgetItem* anItem;
1038       foreach(anItem, found) anItem->setSelected(true);
1039     }
1040   }
1041
1042   myIsBusy = false;
1043   onEditGroup();
1044 }
1045
1046 //=================================================================================
1047 // function : onRemoveElement()
1048 // purpose  :
1049 //=================================================================================
1050 void SMESHGUI_MergeDlg::onRemoveElement()
1051 {
1052   if (myEditCurrentArgument != (QWidget*)ListCoincident)
1053     return;
1054   myIsBusy = true;
1055
1056   QList<QListWidgetItem*> selItems = ListEdit->selectedItems();
1057   QListWidgetItem* anItem;
1058
1059   foreach(anItem, selItems)
1060     delete anItem;
1061   
1062   myIsBusy = false;
1063   onEditGroup();
1064
1065   if( ListCoincident->count() == 0 ) {
1066     myEditCurrentArgument = (QWidget*)LineEditMesh;
1067     SelectAllCB->setChecked( false );
1068   }
1069 }
1070
1071 //=================================================================================
1072 // function : onSetFirst()
1073 // purpose  :
1074 //=================================================================================
1075 void SMESHGUI_MergeDlg::onSetFirst()
1076 {
1077   if (myEditCurrentArgument != (QWidget*)ListCoincident)
1078     return;
1079   myIsBusy = true;
1080   
1081   QList<QListWidgetItem*> selItems = ListEdit->selectedItems();
1082   QListWidgetItem* anItem;
1083   
1084   foreach(anItem, selItems) {
1085     ListEdit->takeItem(ListEdit->row(anItem));
1086     ListEdit->insertItem(0, anItem);
1087   }
1088
1089   myIsBusy = false;
1090   onEditGroup();
1091 }
1092
1093 //=================================================================================
1094 // function : SetEditCurrentArgument()
1095 // purpose  :
1096 //=================================================================================
1097 void SMESHGUI_MergeDlg::SetEditCurrentArgument()
1098 {
1099   QPushButton* send = (QPushButton*)sender();
1100
1101   disconnect(mySelectionMgr, 0, this, 0);
1102   mySelectionMgr->clearSelected();
1103   mySelectionMgr->clearFilters();
1104
1105   if (send == SelectMeshButton) {
1106     myEditCurrentArgument = (QWidget*)LineEditMesh;
1107     SMESH::SetPointRepresentation(false);
1108     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
1109       aViewWindow->SetSelectionMode(ActorSelection);
1110     if (myTypeId == 1)
1111       mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
1112   }
1113
1114   myEditCurrentArgument->setFocus();
1115   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
1116   SelectionIntoArgument();
1117 }
1118
1119 //=================================================================================
1120 // function : SelectionIntoArgument()
1121 // purpose  : Called when selection as changed or other case
1122 //=================================================================================
1123 void SMESHGUI_MergeDlg::SelectionIntoArgument()
1124 {
1125   if (myEditCurrentArgument == (QWidget*)LineEditMesh) {
1126     QString aString = "";
1127     LineEditMesh->setText(aString);
1128
1129     ListCoincident->clear();
1130     ListEdit->clear();
1131     myActor = 0;
1132     myMesh = SMESH::SMESH_Mesh::_nil();
1133     QString aCurrentEntry = myEntry;
1134
1135     int nbSel = SMESH::GetNameOfSelectedIObjects(mySelectionMgr, aString);
1136     if (nbSel != 1) {
1137       myIdPreview->SetPointsLabeled(false);
1138       SMESH::SetPointRepresentation(false);
1139       mySelectionMgr->clearFilters();
1140       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
1141         aViewWindow->SetSelectionMode(ActorSelection);
1142       return;
1143     }
1144
1145     SALOME_ListIO aList;
1146     mySelectionMgr->selectedObjects(aList);
1147
1148     Handle(SALOME_InteractiveObject) IO = aList.First();
1149     myEntry = IO->getEntry();
1150     myMesh = SMESH::GetMeshByIO(IO);
1151
1152     if (myMesh->_is_nil())
1153       return;
1154
1155     LineEditMesh->setText(aString);
1156
1157     myActor = SMESH::FindActorByEntry(IO->getEntry());
1158     if (!myActor)
1159       myActor = SMESH::FindActorByObject(myMesh);
1160
1161     if ( myActor && myTypeId == 1 && mySelector->IsSelectionEnabled() ) {
1162       mySubMeshOrGroup = SMESH::SMESH_IDSource::_nil();
1163       mySelectionMgr->installFilter(myMeshOrSubMeshOrGroupFilter);
1164       
1165       if ((!SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(IO)->_is_nil() || //SUBMESH OR GROUP
1166            !SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(IO)->_is_nil()) &&
1167           !SMESH::IObjectToInterface<SMESH::SMESH_IDSource>(IO)->_is_nil())
1168         mySubMeshOrGroup = SMESH::IObjectToInterface<SMESH::SMESH_IDSource>(IO);
1169       
1170       if (myAction == 0) {
1171         SMESH::SetPointRepresentation(true);
1172         if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
1173           aViewWindow->SetSelectionMode(NodeSelection);
1174       }
1175       else
1176         if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
1177           aViewWindow->SetSelectionMode(CellSelection);
1178     }
1179
1180     // process groups
1181     if ( myAction == 0 && !myMesh->_is_nil() && myEntry != aCurrentEntry ) {
1182       myGroups.clear();
1183       ListExclude->clear();
1184       SMESH::ListOfGroups_var aListOfGroups = myMesh->GetGroups();
1185       for( int i = 0, n = aListOfGroups->length(); i < n; i++ ) {
1186         SMESH::SMESH_GroupBase_var aGroup = aListOfGroups[i];
1187         if ( !aGroup->_is_nil() ) { // && aGroup->GetType() == SMESH::NODE
1188           QString aGroupName( aGroup->GetName() );
1189           if ( !aGroupName.isEmpty() ) {
1190             myGroups.append(SMESH::SMESH_GroupBase::_duplicate(aGroup));
1191             QListWidgetItem* item = new QListWidgetItem( aGroupName );
1192             item->setFlags( Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsUserCheckable );
1193             item->setCheckState( Qt::Unchecked );
1194             ListExclude->addItem( item );
1195           }
1196         }
1197       }
1198     }
1199
1200     updateControls();
1201   }
1202 }
1203
1204 //=================================================================================
1205 // function : DeactivateActiveDialog()
1206 // purpose  :
1207 //=================================================================================
1208 void SMESHGUI_MergeDlg::DeactivateActiveDialog()
1209 {
1210   if (GroupConstructors->isEnabled()) {
1211     GroupConstructors->setEnabled(false);
1212     TypeBox->setEnabled(false);
1213     GroupMesh->setEnabled(false);
1214     GroupCoincident->setEnabled(false);
1215     GroupEdit->setEnabled(false);
1216     GroupButtons->setEnabled(false);
1217     mySMESHGUI->ResetState();
1218     mySMESHGUI->SetActiveDialogBox(0);
1219   }
1220
1221   mySelectionMgr->clearSelected();
1222   disconnect(mySelectionMgr, 0, this, 0);
1223 }
1224
1225 //=================================================================================
1226 // function : ActivateThisDialog()
1227 // purpose  :
1228 //=================================================================================
1229 void SMESHGUI_MergeDlg::ActivateThisDialog()
1230 {
1231   /* Emit a signal to deactivate the active dialog */
1232   mySMESHGUI->EmitSignalDeactivateDialog();
1233   GroupConstructors->setEnabled(true);
1234   TypeBox->setEnabled(true);
1235   GroupMesh->setEnabled(true);
1236   GroupCoincident->setEnabled(true);
1237   GroupEdit->setEnabled(true);
1238   GroupButtons->setEnabled(true);
1239
1240   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
1241   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
1242   SelectionIntoArgument();
1243 }
1244
1245 //=================================================================================
1246 // function : enterEvent()
1247 // purpose  :
1248 //=================================================================================
1249 void SMESHGUI_MergeDlg::enterEvent(QEvent*)
1250 {
1251   if (!GroupConstructors->isEnabled())
1252     ActivateThisDialog();
1253 }
1254
1255 //=================================================================================
1256 // function : keyPressEvent()
1257 // purpose  :
1258 //=================================================================================
1259 void SMESHGUI_MergeDlg::keyPressEvent( QKeyEvent* e)
1260 {
1261   QDialog::keyPressEvent( e );
1262   if ( e->isAccepted() )
1263     return;
1264
1265   if ( e->key() == Qt::Key_F1 ) {
1266     e->accept();
1267     ClickOnHelp();
1268   }
1269 }
1270
1271 //=================================================================================
1272 // function : onTypeChanged()
1273 // purpose  : the type radio button management
1274 //=================================================================================
1275 void SMESHGUI_MergeDlg::onTypeChanged (int id)
1276 {
1277   if (myTypeId == id)
1278     return;
1279
1280   myTypeId = id;
1281   switch (id)
1282   {
1283   case 0: // automatic
1284     myIdPreview->SetPointsLabeled(false);
1285     SMESH::SetPointRepresentation(false);
1286     if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
1287       aViewWindow->SetSelectionMode(ActorSelection);
1288     mySelectionMgr->clearFilters();
1289     if (myAction == 0)
1290       GroupCoincidentWidget->hide();
1291     else
1292       GroupCoincident->hide();
1293     GroupEdit->hide();
1294     break;
1295
1296   case 1: // manual
1297     SMESH::UpdateView();
1298
1299     // Costruction of the logical filter
1300     SMESH_TypeFilter* aMeshOrSubMeshFilter = new SMESH_TypeFilter (SMESH::MESHorSUBMESH);
1301     SMESH_TypeFilter* aSmeshGroupFilter    = new SMESH_TypeFilter (SMESH::GROUP);
1302     
1303     QList<SUIT_SelectionFilter*> aListOfFilters;
1304     if (aMeshOrSubMeshFilter) aListOfFilters.append(aMeshOrSubMeshFilter);
1305     if (aSmeshGroupFilter)    aListOfFilters.append(aSmeshGroupFilter);
1306     
1307     myMeshOrSubMeshOrGroupFilter =
1308       new SMESH_LogicalFilter (aListOfFilters, SMESH_LogicalFilter::LO_OR);
1309
1310     if (myAction == 0) {
1311       GroupCoincidentWidget->show();
1312       SMESH::SetPointRepresentation(true);
1313       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
1314         if( mySelector->IsSelectionEnabled() )
1315           aViewWindow->SetSelectionMode(NodeSelection);
1316     }
1317     else {
1318       GroupCoincident->show();
1319       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
1320         if( mySelector->IsSelectionEnabled() )
1321           aViewWindow->SetSelectionMode(CellSelection);
1322     }
1323     GroupEdit->show();
1324     break;
1325   }
1326   updateControls();
1327
1328   qApp->processEvents();
1329   updateGeometry();
1330   resize(10,10);
1331
1332   SelectionIntoArgument();
1333 }