Salome HOME
Merge changes from 'master' branch.
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_GroupDlg.cxx
1 // Copyright (C) 2007-2016  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_GroupDlg.cxx
25 //  Author : Natalia KOPNOVA, Open CASCADE S.A.S.
26 //  SMESH includes
27 //
28 #include "SMESHGUI_GroupDlg.h"
29
30 #include "SMESHGUI.h"
31 #include "SMESHGUI_Utils.h"
32 #include "SMESHGUI_VTKUtils.h"
33 #include "SMESHGUI_GroupUtils.h"
34 #include "SMESHGUI_FilterUtils.h"
35 #include "SMESHGUI_GEOMGenUtils.h"
36 #include "SMESHGUI_FilterDlg.h"
37 #include "SMESHGUI_ShapeByMeshDlg.h"
38
39 #include <SMESH_TypeFilter.hxx>
40 #include <SMESH_Actor.h>
41 //#include <SMESH_ActorUtils.h>
42 #include <SMESH_LogicalFilter.hxx>
43
44 // SALOME GEOM includes
45 #include <GEOMBase.h>
46 #include <GEOM_SelectionFilter.h>
47 #include <GEOM_wrap.hxx>
48
49 // SALOME GUI includes
50 #include <QtxColorButton.h>
51
52 #include <SUIT_Desktop.h>
53 #include <SUIT_ResourceMgr.h>
54 #include <SUIT_Session.h>
55 #include <SUIT_MessageBox.h>
56 #include <SUIT_OverrideCursor.h>
57
58 #include <SalomeApp_Tools.h>
59 #include <SalomeApp_Application.h>
60 #include <SalomeApp_Study.h>
61 #include <LightApp_SelectionMgr.h>
62
63 #include <SALOME_ListIO.hxx>
64
65 #include <SVTK_ViewWindow.h>
66
67 #include <VTKViewer_Algorithm.h>
68
69 // SALOME KERNEL includes
70 #include <SALOMEDSClient_Study.hxx>
71
72 // VTK Includes
73 #include <vtkRenderer.h>
74 #include <vtkActorCollection.h>
75
76 // OCCT includes
77 #include <TColStd_MapOfInteger.hxx>
78
79 // Qt includes
80 #include <QButtonGroup>
81 #include <QGroupBox>
82 #include <QLabel>
83 #include <QLineEdit>
84 #include <QPushButton>
85 #include <QToolButton>
86 #include <QRadioButton>
87 #include <QCheckBox>
88 #include <QGridLayout>
89 #include <QHBoxLayout>
90 #include <QVBoxLayout>
91 #include <QListWidget>
92 #include <QStackedWidget>
93 #include <QKeyEvent>
94 #include <QMenu>
95
96 // STL includes
97 #include <vector>
98 #include <algorithm>
99 #include <set>
100
101 #define SPACING 6
102 #define MARGIN  11
103
104 enum grpSelectionMode {
105   grpNoSelection       = -1,
106   grpNodeSelection     = 0,
107   grp0DSelection       = 1,
108   grpBallSelection     = 2,
109   grpEdgeSelection     = 3,
110   grpFaceSelection     = 4,
111   grpVolumeSelection   = 5,
112   grpSubMeshSelection  = 6,
113   grpGroupSelection    = 7,
114   grpMeshSelection     = 8,
115   grpGeomSelection     = 9,
116   grpAllSelection      = 10,
117 };
118
119 //=================================================================================
120 // function : SMESHGUI_GroupDlg()
121 // purpose  :
122 //=================================================================================
123 SMESHGUI_GroupDlg::SMESHGUI_GroupDlg( SMESHGUI* theModule,
124                                       SMESH::SMESH_Mesh_ptr theMesh )
125   : QDialog( SMESH::GetDesktop( theModule ) ),
126     mySMESHGUI( theModule ),
127     mySelectionMgr( SMESH::GetSelectionMgr( theModule ) ), myStoredShownEntity(0),
128     mySelector( SMESH::GetViewWindow( theModule )->GetSelector() ),
129     myIsBusy( false ),
130     myNameChanged( false ),
131     myNbChangesOfContents(0),
132     myIsApplyAndClose( false )
133 {
134   initDialog( true );
135   if ( !theMesh->_is_nil() )
136     init( theMesh );
137   else
138   {
139     mySelectSubMesh->setEnabled( false );
140     mySelectGroup->setEnabled( false );
141     myGeomGroupBtn->setEnabled( false );
142     myGeomGroupLine->setEnabled( false );
143   }
144 }
145
146 //=================================================================================
147 // function : SMESHGUI_GroupDlg()
148 // purpose  :
149 //=================================================================================
150 SMESHGUI_GroupDlg::SMESHGUI_GroupDlg( SMESHGUI* theModule,
151                                       SMESH::SMESH_GroupBase_ptr theGroup,
152                                       const bool theIsConvert )
153   : QDialog( SMESH::GetDesktop( theModule ) ),
154     mySMESHGUI( theModule ),
155     mySelectionMgr( SMESH::GetSelectionMgr( theModule ) ), myStoredShownEntity(0),
156     mySelector( SMESH::GetViewWindow( theModule )->GetSelector() ),
157     myIsBusy( false ),
158     myNameChanged( false ),
159     myNbChangesOfContents(0) // just not to use uninitialized variable
160 {
161   initDialog( false );
162   if ( !theGroup->_is_nil() )
163     init( theGroup, theIsConvert );
164   else
165   {
166     mySelectSubMesh->setEnabled( false );
167     mySelectGroup->setEnabled( false );
168
169     myCurrentLineEdit = myMeshGroupLine;
170     setSelectionMode( grpGroupSelection );
171   }
172 }
173
174 //=================================================================================
175 // function : SMESHGUI_GroupDlg()
176 // purpose  :
177 //=================================================================================
178 void SMESHGUI_GroupDlg::initDialog( bool create)
179 {
180   setModal( false );
181   setAttribute( Qt::WA_DeleteOnClose, true );
182
183   myFilterDlg = 0;
184   myCreate = create;
185   myCurrentLineEdit = 0;
186
187   myShapeByMeshOp = 0;
188   myGeomPopup = 0;
189   myGeomObjects = new GEOM::ListOfGO();
190   myGeomObjects->length( 0 );
191
192   QPixmap image0( SMESH::GetResourceMgr( mySMESHGUI )->loadPixmap( "SMESH", tr( "ICON_SELECT" ) ) );
193
194   setWindowTitle( create ? tr( "SMESH_CREATE_GROUP_TITLE" ) : tr( "SMESH_EDIT_GROUP_TITLE" ) );
195   myHelpFileName = create ? "creating_groups_page.html" : "editing_groups_page.html";
196
197   setSizeGripEnabled( true);
198
199   QGridLayout* aMainLayout = new QGridLayout( this );
200   aMainLayout->setMargin( MARGIN );
201   aMainLayout->setSpacing( SPACING );
202
203   /***************************************************************/
204   QLabel* meshGroupLab = new QLabel( create ? tr( "SMESH_MESH" ) : tr( "SMESH_GROUP" ), this );
205   myMeshGroupBtn = new QPushButton( this );
206   myMeshGroupBtn->setIcon( image0 );
207   myMeshGroupLine = new QLineEdit( this );
208   myMeshGroupLine->setReadOnly( true );
209
210   /***************************************************************/
211   QGroupBox* aTypeBox = new QGroupBox( tr( "SMESH_ELEMENTS_TYPE" ), this );
212   myTypeGroup = new QButtonGroup( this );
213   QHBoxLayout* aTypeBoxLayout = new QHBoxLayout( aTypeBox );
214   aTypeBoxLayout->setMargin( MARGIN );
215   aTypeBoxLayout->setSpacing( SPACING );
216
217   QStringList types;
218   types.append( tr( "MESH_NODE" ) );
219   types.append( tr( "SMESH_ELEM0D" ) );
220   types.append( tr( "SMESH_BALL_ELEM" ) );
221   types.append( tr( "SMESH_EDGE" ) );
222   types.append( tr( "SMESH_FACE" ) );
223   types.append( tr( "SMESH_VOLUME" ) );
224   QRadioButton* rb;
225   for ( int i = 0; i < types.count(); i++ )
226   {
227     rb = new QRadioButton( types[i], aTypeBox );
228     myTypeGroup->addButton( rb, i );
229     aTypeBoxLayout->addWidget( rb );
230   }
231   aTypeBox->setEnabled( create );
232   myTypeId = -1;
233
234   /***************************************************************/
235   QLabel* aName = new QLabel( tr( "SMESH_NAME" ), this );
236   aName->setMinimumWidth( 50 );
237   myName = new QLineEdit( this );
238
239   /***************************************************************/
240   QGroupBox* aGrpTypeBox = new QGroupBox( tr( "SMESH_GROUP_TYPE" ), this );
241   myGrpTypeGroup = new QButtonGroup( this );
242   QHBoxLayout* aGrpTypeBoxLayout = new QHBoxLayout( aGrpTypeBox );
243   aGrpTypeBoxLayout->setMargin( MARGIN );
244   aGrpTypeBoxLayout->setSpacing( SPACING );
245
246   QRadioButton* rb1 = new QRadioButton( tr( "SMESH_GROUP_STANDALONE" ), aGrpTypeBox );
247   QRadioButton* rb2 = new QRadioButton( tr( "SMESH_GROUP_GEOMETRY" ),   aGrpTypeBox );
248   QRadioButton* rb3 = new QRadioButton( tr( "SMESH_GROUP_FILTER" ),     aGrpTypeBox );
249   myGrpTypeGroup->addButton( rb1, 0 );
250   myGrpTypeGroup->addButton( rb2, 1 );
251   myGrpTypeGroup->addButton( rb3, 2 );
252   aGrpTypeBoxLayout->addWidget( rb1 );
253   aGrpTypeBoxLayout->addWidget( rb2 );
254   aGrpTypeBoxLayout->addWidget( rb3 );
255   aGrpTypeBox->setEnabled( create );
256   myGrpTypeId = -1;
257
258   /***************************************************************/
259   myWGStack = new QStackedWidget( this );
260   QWidget* wg1 = new QWidget( myWGStack );
261   QWidget* wg2 = new QWidget( myWGStack );
262   QWidget* wg3 = new QWidget( myWGStack );
263
264   /***************************************************************/
265   QGroupBox* aContentBox         = new QGroupBox( tr( "SMESH_CONTENT" ), wg1 );
266   QGridLayout* aContentBoxLayout = new QGridLayout( aContentBox );
267   aContentBoxLayout->setMargin( MARGIN );
268   aContentBoxLayout->setSpacing( SPACING );
269
270   mySelectAll       = new QCheckBox( tr( "SELECT_ALL" ), aContentBox );
271   myAllowElemsModif = new QCheckBox( tr( "ALLOW_ELEM_LIST_MODIF" ), aContentBox );
272
273   myElementsLab = new QLabel( tr( "SMESH_ID_ELEMENTS" ), aContentBox );
274   myElements    = new QListWidget( aContentBox );
275   myElements->setSelectionMode( QListWidget::ExtendedSelection );
276
277   myFilterBtn = new QPushButton( tr( "SMESH_BUT_FILTER" ), aContentBox );
278   myAddBtn    = new QPushButton( tr( "SMESH_BUT_ADD" ), aContentBox );
279   myRemoveBtn = new QPushButton( tr( "SMESH_BUT_REMOVE" ), aContentBox );
280   mySortBtn   = new QPushButton( tr( "SMESH_BUT_SORT" ), aContentBox );
281
282   aContentBoxLayout->addWidget( mySelectAll,       0, 0 );
283   aContentBoxLayout->addWidget( myAllowElemsModif, 1, 0 );
284   aContentBoxLayout->addWidget( myFilterBtn,       1, 1 );
285   aContentBoxLayout->addWidget( myElementsLab,     2, 0 );
286   aContentBoxLayout->addWidget( myElements,        3, 0, 6, 1 );
287   aContentBoxLayout->addWidget( myAddBtn,          3, 1 );
288   aContentBoxLayout->addWidget( myRemoveBtn,       4, 1 );
289   aContentBoxLayout->addWidget( mySortBtn,         8, 1 );
290
291   aContentBoxLayout->setColumnStretch( 0, 1 );
292   aContentBoxLayout->setRowStretch( 3, 1 );
293   aContentBoxLayout->setRowStretch( 6, 1 );
294
295   /***************************************************************/
296   mySelectBox = new QGroupBox( tr( "SMESH_SELECT_FROM" ), wg1 );
297   QGridLayout* mySelectBoxLayout = new QGridLayout( mySelectBox );
298   mySelectBoxLayout->setMargin( MARGIN );
299   mySelectBoxLayout->setSpacing( SPACING );
300
301   mySelectSubMesh = new QCheckBox( tr( "SMESH_SUBMESH" ), mySelectBox );
302   mySubMeshBtn = new QPushButton( mySelectBox );
303   mySubMeshBtn->setIcon( image0 );
304   mySubMeshLine = new QLineEdit( mySelectBox );
305   mySubMeshLine->setReadOnly( true );
306   onSelectSubMesh( false );
307
308   mySelectGroup = new QCheckBox( tr( "SMESH_GROUP" ), mySelectBox );
309   myGroupBtn = new QPushButton( mySelectBox );
310   myGroupBtn->setIcon( image0 );
311   myGroupLine = new QLineEdit( mySelectBox );
312   myGroupLine->setReadOnly( true );
313   onSelectGroup( false );
314
315   mySelectBoxLayout->addWidget( mySelectSubMesh, 0, 0 );
316   mySelectBoxLayout->addWidget( mySubMeshBtn,    0, 1 );
317   mySelectBoxLayout->addWidget( mySubMeshLine,   0, 2 );
318   mySelectBoxLayout->addWidget( mySelectGroup,   1, 0 );
319   mySelectBoxLayout->addWidget( myGroupBtn,      1, 1 );
320   mySelectBoxLayout->addWidget( myGroupLine,     1, 2 );
321
322   /***************************************************************/
323   QVBoxLayout* wg1Layout = new QVBoxLayout( wg1 );
324   wg1Layout->setMargin( 0 );
325   wg1Layout->setSpacing( SPACING );
326   wg1Layout->addWidget( aContentBox );
327   wg1Layout->addWidget( mySelectBox );
328   wg1Layout->setStretchFactor( aContentBox, 10 );
329
330   /***************************************************************/
331   QLabel* geomObject = new QLabel( tr( "SMESH_OBJECT_GEOM" ), wg2 );
332   myGeomGroupBtn = new QToolButton( wg2 );
333   myGeomGroupBtn->setIcon( image0 );
334   myGeomGroupBtn->setCheckable( true );
335   myGeomGroupLine = new QLineEdit( wg2 );
336   myGeomGroupLine->setReadOnly( true ); //VSR ???
337   onSelectGeomGroup( false );
338
339   myGeomGroupBtn->setEnabled( create );
340   myGeomGroupLine->setEnabled( create );
341
342   /***************************************************************/
343   QGridLayout* wg2Layout = new QGridLayout( wg2 );
344   wg2Layout->setMargin( 0 );
345   wg2Layout->setSpacing( SPACING );
346   wg2Layout->addWidget( geomObject,     0, 0 );
347   wg2Layout->addWidget( myGeomGroupBtn, 0, 1 );
348   wg2Layout->addWidget( myGeomGroupLine,0, 2 );
349   wg2Layout->setRowStretch( 1, 5 );
350
351   /***************************************************************/
352   QPushButton * aFilter2 = new QPushButton( tr( "SMESH_BUT_FILTER" ), wg3 );
353   QGridLayout* wg3Layout = new QGridLayout( wg3 );
354   wg3Layout->setMargin( 0 );
355   wg3Layout->setSpacing( SPACING );
356   wg3Layout->addWidget( aFilter2, 0, 0 );
357   wg3Layout->setRowStretch( 1, 5 );
358
359   /***************************************************************/
360   myWGStack->insertWidget( 0, wg1 );
361   myWGStack->insertWidget( 1, wg2 );
362   myWGStack->insertWidget( 2, wg3 );
363
364   /***************************************************************/
365   QGroupBox* aColorBox = new QGroupBox(tr( "SMESH_SET_COLOR" ), this);
366   QHBoxLayout* aColorBoxLayout = new QHBoxLayout(aColorBox);
367   aColorBoxLayout->setMargin(MARGIN);
368   aColorBoxLayout->setSpacing(SPACING);
369
370   QLabel* aColorLab = new QLabel(tr( "SMESH_CHECK_COLOR" ), aColorBox );
371   myColorBtn = new QtxColorButton(aColorBox);
372   myColorBtn->setSizePolicy( QSizePolicy::MinimumExpanding, 
373                              myColorBtn->sizePolicy().verticalPolicy() );
374
375   aColorBoxLayout->addWidget(aColorLab);
376   aColorBoxLayout->addWidget(myColorBtn);
377
378   /***************************************************************/
379
380   QFrame* aButtons = new QFrame(this);
381   aButtons->setFrameStyle( QFrame::Box | QFrame::Sunken );
382   QHBoxLayout* aBtnLayout = new QHBoxLayout(aButtons);
383   aBtnLayout->setMargin(MARGIN);
384   aBtnLayout->setSpacing(SPACING);
385
386   myOKBtn = new QPushButton(tr( "SMESH_BUT_APPLY_AND_CLOSE" ), aButtons);
387   myOKBtn->setAutoDefault(true);
388   myOKBtn->setDefault(true);
389   myApplyBtn = new QPushButton(tr( "SMESH_BUT_APPLY" ), aButtons);
390   myApplyBtn->setAutoDefault(true);
391   myCloseBtn = new QPushButton(tr( "SMESH_BUT_CLOSE" ), aButtons);
392   myCloseBtn->setAutoDefault(true);
393   myHelpBtn = new QPushButton(tr( "SMESH_BUT_HELP" ), aButtons);
394   myHelpBtn->setAutoDefault(true);
395
396   aBtnLayout->addWidget(myOKBtn);
397   aBtnLayout->addSpacing(10);
398   aBtnLayout->addWidget(myApplyBtn);
399   aBtnLayout->addSpacing(10);
400   aBtnLayout->addStretch();
401   aBtnLayout->addWidget(myCloseBtn);
402   aBtnLayout->addWidget(myHelpBtn);
403
404   /***************************************************************/
405   aMainLayout->addWidget(meshGroupLab,    0, 0);
406   aMainLayout->addWidget(myMeshGroupBtn,  0, 1);
407   aMainLayout->addWidget(myMeshGroupLine, 0, 2);
408   aMainLayout->addWidget(aTypeBox,        1, 0, 1, 3);
409   aMainLayout->addWidget(aName,           2, 0);
410   aMainLayout->addWidget(myName,          2, 2);
411   aMainLayout->addWidget(aGrpTypeBox,     3, 0, 1, 3);
412   aMainLayout->addWidget(myWGStack,       4, 0, 1, 3);
413   aMainLayout->addWidget(aColorBox,       5, 0, 1, 3);
414   aMainLayout->addWidget(aButtons,        6, 0, 1, 3);
415
416   /* signals and slots connections */
417   connect(myMeshGroupBtn,  SIGNAL(clicked()),          this, SLOT(setCurrentSelection()));
418   connect(myGrpTypeGroup,  SIGNAL(buttonClicked(int)), this, SLOT(onGrpTypeChanged(int)));
419   connect(myTypeGroup,     SIGNAL(buttonClicked(int)), this, SLOT(onTypeChanged(int)));
420
421   connect(myName,          SIGNAL(textChanged(const QString&)), this, SLOT(onNameChanged(const QString&)));
422   connect(myElements,      SIGNAL(itemSelectionChanged()),      this, SLOT(onListSelectionChanged()));
423
424   connect(myFilterBtn,     SIGNAL(clicked()),     this, SLOT(setFilters()));
425   connect(aFilter2,        SIGNAL(clicked()),     this, SLOT(setFilters()));
426   connect(mySelectAll,     SIGNAL(toggled(bool)), this, SLOT(onSelectAll()));
427   connect(myAllowElemsModif,SIGNAL(toggled(bool)), this, SLOT(onSelectAll()));
428   connect(myAddBtn,        SIGNAL(clicked()),     this, SLOT(onAdd()));
429   connect(myRemoveBtn,     SIGNAL(clicked()),     this, SLOT(onRemove()));
430   connect(mySortBtn,       SIGNAL(clicked()),     this, SLOT(onSort()));
431
432   connect(mySelectSubMesh, SIGNAL(toggled(bool)), this, SLOT(onSelectSubMesh(bool)));
433   connect(mySelectGroup,   SIGNAL(toggled(bool)), this, SLOT(onSelectGroup(bool)));
434   connect(mySubMeshBtn,    SIGNAL(clicked()),     this, SLOT(setCurrentSelection()));
435   connect(myGroupBtn,      SIGNAL(clicked()),     this, SLOT(setCurrentSelection()));
436   connect(myGeomGroupBtn,  SIGNAL(toggled(bool)), this, SLOT(onGeomSelectionButton(bool)));
437
438   connect(myColorBtn,      SIGNAL(changed( QColor )),  this, SLOT(onColorChanged( QColor )));
439
440   connect(myOKBtn,         SIGNAL(clicked()), this, SLOT(onOK()));
441   connect(myApplyBtn,      SIGNAL(clicked()), this, SLOT(onApply()));
442   connect(myCloseBtn,      SIGNAL(clicked()), this, SLOT(reject()));
443   connect(myHelpBtn,       SIGNAL(clicked()), this, SLOT(onHelp()));
444
445   /* Init selection */
446   mySMESHGUI->SetActiveDialogBox(this);
447
448   SalomeApp_Study* aStudy = dynamic_cast<SalomeApp_Study*>( mySMESHGUI->application()->activeStudy() );
449   mySelectionMode = grpNoSelection;
450
451   myMeshFilter    = new SMESH_TypeFilter(SMESH::MESH);
452   mySubMeshFilter = new SMESH_LogicalFilter(QList<SUIT_SelectionFilter*>(),
453                                             SMESH_LogicalFilter::LO_OR,
454                                             /*takeOwnership=*/true);
455   myGroupFilter   = new SMESH_LogicalFilter(QList<SUIT_SelectionFilter*>(),
456                                             SMESH_LogicalFilter::LO_OR,
457                                             /*takeOwnership=*/true);
458   myGeomFilter    = new GEOM_SelectionFilter( aStudy, true );
459
460   connect(mySMESHGUI, SIGNAL(SignalDeactivateActiveDialog()), this, SLOT(onDeactivate()));
461   connect(mySMESHGUI, SIGNAL(SignalCloseAllDialogs()),        this, SLOT(reject()));
462   connect(mySelectionMgr, SIGNAL(currentSelectionChanged()),  this, SLOT(onObjectSelectionChanged()));
463   connect(mySMESHGUI, SIGNAL(SignalVisibilityChanged()),      this, SLOT(onVisibilityChanged()));
464   connect(mySMESHGUI, SIGNAL(SignalActivatedViewManager()),   this, SLOT(onOpenView()));
465   connect(mySMESHGUI, SIGNAL(SignalCloseView()),              this, SLOT(onCloseView()));
466   rb1->setChecked(true); // VSR !!!
467   onGrpTypeChanged(0); // VSR!!!
468
469   if (myMesh->_is_nil() )
470     myTypeGroup->button(0)->setChecked(true);
471
472   onSelectAll(); //updateButtons();
473 }
474
475 //=================================================================================
476 // function : ~SMESHGUI_GroupDlg()
477 // purpose  : Destroys the object and frees any allocated resources
478 //=================================================================================
479 SMESHGUI_GroupDlg::~SMESHGUI_GroupDlg()
480 {
481   // no need to delete child widgets, Qt does it all for us
482   if ( myFilterDlg != 0 ) {
483     myFilterDlg->setParent( 0 );
484     delete myFilterDlg;
485   }
486   if ( myMeshFilter )    delete myMeshFilter;
487   if ( mySubMeshFilter ) delete mySubMeshFilter;
488   if ( myGroupFilter )   delete myGroupFilter;
489   if ( myGeomFilter )    delete myGeomFilter;
490 }
491
492 //=================================================================================
493 // function : GetDefaultName()
494 // purpose  : Get the Group Name if Create new Group
495 //=================================================================================
496 QString SMESHGUI_GroupDlg::GetDefaultName(const QString& theOperation)
497 {
498   QString aName = "";
499
500   // collect all object names of SMESH component
501   _PTR(Study) aStudy = SMESH::getStudy();
502
503   std::set<std::string> aSet;
504   _PTR(SComponent) aMeshCompo (aStudy->FindComponent( "SMESH" ));
505   if (aMeshCompo) {
506     _PTR(ChildIterator) it (aStudy->NewChildIterator(aMeshCompo));
507     _PTR(SObject) obj;
508     for (it->InitEx(true); it->More(); it->Next()) {
509       obj = it->Value();
510       aSet.insert(obj->GetName());
511     }
512   }
513
514   // build a unique name
515   int aNumber = 0;
516   bool isUnique = false;
517   while (!isUnique) {
518     aName = theOperation + "_" + QString::number(++aNumber);
519     isUnique = (aSet.count(std::string(SMESH::toUtf8(aName))) == 0);
520   }
521
522   return aName;
523 }
524
525 void  SMESHGUI_GroupDlg::setDefaultName() const
526 {
527   QString aResName;
528   int i=1;
529   QString aPrefix ="Group_";
530   _PTR(SObject) anObj;
531   do
532   {
533     aResName = aPrefix + QString::number( i++ );
534     anObj = SMESH::getStudy()->FindObject( SMESH::toUtf8(aResName) );
535   }
536   while ( anObj );
537   myName->setText(aResName); 
538 }
539
540 //=================================================================================
541 // function : Init()
542 // purpose  :
543 //=================================================================================
544 void SMESHGUI_GroupDlg::init (SMESH::SMESH_Mesh_ptr theMesh)
545 {
546   mySelectionMgr->installFilter(myMeshFilter);
547
548   /* init data from current selection */
549   restoreShowEntityMode();
550   myMesh = SMESH::SMESH_Mesh::_duplicate(theMesh);
551   setShowEntityMode();
552   myGroup = SMESH::SMESH_Group::_nil();
553   myGroupOnGeom = SMESH::SMESH_GroupOnGeom::_nil();
554   myGroupOnFilter = SMESH::SMESH_GroupOnFilter::_nil();
555
556   // NPAL19389: create a group with a selection in another group
557   // set actor of myMesh, if it is visible, else try
558   // any visible actor of group or submesh of myMesh
559   SetAppropriateActor();
560
561   setDefaultGroupColor();
562   setDefaultName();
563
564
565   SALOME_ListIO aList;
566   mySelectionMgr->selectedObjects( aList );
567   if( !aList.IsEmpty() )
568   {
569     QString aName = aList.First()->getName();
570     myMeshGroupLine->setText(aName);//??????
571     myMeshGroupLine->home( false );
572   }
573
574   myCurrentLineEdit = 0;
575
576   myTypeGroup->button(0)->setChecked(true);
577   onTypeChanged(0);
578 }
579
580 //=================================================================================
581 // function : Init()
582 // purpose  :
583 //=================================================================================
584 void SMESHGUI_GroupDlg::init (SMESH::SMESH_GroupBase_ptr theGroup,
585                               const bool                 theIsConvert)
586 {
587   restoreShowEntityMode();
588   myMesh = theGroup->GetMesh();
589   setShowEntityMode();
590
591   myNameChanged = true;
592   myName->blockSignals(true);
593   myName->setText(SMESH::fromUtf8(theGroup->GetName()));
594   myName->blockSignals(false);
595   myName->home(false);
596
597   SALOMEDS::Color aColor = theGroup->GetColor();
598   setGroupColor( aColor );
599
600   myMeshGroupLine->setText(SMESH::fromUtf8(theGroup->GetName()));
601
602   int aType = 0;
603   switch(theGroup->GetType()) {
604   case SMESH::NODE:   aType = grpNodeSelection;   break;
605   case SMESH::ELEM0D: aType = grp0DSelection;     break;
606   case SMESH::BALL:   aType = grpBallSelection;   break;
607   case SMESH::EDGE:   aType = grpEdgeSelection;   break;
608   case SMESH::FACE:   aType = grpFaceSelection;   break;
609   case SMESH::VOLUME: aType = grpVolumeSelection; break;
610   case SMESH::ALL:
611   case SMESH::NB_ELEMENT_TYPES: break;
612   }
613   myTypeGroup->button(aType)->setChecked(true);
614
615   myGroup         = SMESH::SMESH_Group::_narrow( theGroup );
616   myGroupOnGeom   = SMESH::SMESH_GroupOnGeom::_narrow( theGroup );
617   myGroupOnFilter = SMESH::SMESH_GroupOnFilter::_narrow( theGroup );
618   myFilter        = SMESH::Filter::_nil();
619
620   if (myGroup->_is_nil() && myGroupOnGeom->_is_nil() && myGroupOnFilter->_is_nil() )
621     return;
622
623   // NPAL19389: create a group with a selection in another group
624   // set actor of myMesh, if it is visible, else set
625   // actor of theGroup, if it is visible, else try
626   // any visible actor of group or submesh of myMesh
627   // commented, because an attempt to set selection on not displayed cells leads to error
628   SetAppropriateActor();
629
630   /*  SMESH_Actor* anActor = SMESH::FindActorByObject(myMesh);
631   if ( !anActor )
632     anActor = SMESH::FindActorByObject(theGroup);
633   SMESH::SetPickable(anActor);*/
634
635   int grpType = (!myGroup->_is_nil() ? 0 : (theIsConvert ? 0 : myGroupOnGeom->_is_nil() ? 2 : 1));
636   myGrpTypeGroup->button(grpType)->setChecked(true);
637   onGrpTypeChanged(grpType);
638
639   myTypeId = aType;
640   if ( grpType == 0 ) { // standalone group
641     myCurrentLineEdit = 0;
642     myElements->clear();
643     myAllowElemsModif->setChecked( true );
644
645     setSelectionMode(aType);
646
647     setShowEntityMode(); // depends on myTypeId
648
649     myIdList.clear();
650     if (!theGroup->IsEmpty()) {
651       SMESH::long_array_var anElements = theGroup->GetListOfID();
652       int k = anElements->length();
653       for (int i = 0; i < k; i++) {
654         myIdList.append(anElements[i]);
655         myElements->addItem(QString::number(anElements[i]));
656       }
657       myElements->selectAll();
658     }
659   }
660   else if ( grpType == 1 ) // group on geom
661   {
662     QString aShapeName( "" );
663     _PTR(Study) aStudy = SMESH::getStudy();
664     GEOM::GEOM_Object_var aGroupShape = myGroupOnGeom->GetShape();
665     if (!aGroupShape->_is_nil())
666     {
667       _PTR(SObject) aGroupShapeSO = aStudy->FindObjectID(aGroupShape->GetStudyEntry());
668       if ( aGroupShapeSO )
669         aShapeName = aGroupShapeSO->GetName().c_str();
670     }
671     myGeomGroupLine->setText( aShapeName );
672   }
673   else // group on filter
674   {
675     myFilter = myGroupOnFilter->GetFilter();
676     if ( !myFilter->_is_nil() ) {
677       SMESH::Predicate_var perdicate = myFilter->GetPredicate();
678       if ( perdicate->_is_nil() )
679         myFilter = SMESH::Filter::_nil();
680     }
681   }
682
683   if ( grpType != 0 )
684   {
685     myNameChanged = true;
686     myName->blockSignals(true);
687     myName->setText(SMESH::fromUtf8(theGroup->GetName()));
688     myName->blockSignals(false);
689   }
690
691   onSelectAll(); //updateButtons();
692 }
693
694 //=================================================================================
695 // function : updateButtons()
696 // purpose  :
697 //=================================================================================
698 void SMESHGUI_GroupDlg::updateButtons()
699 {
700   bool enable = !myName->text().trimmed().isEmpty();
701   if ( enable )
702   {
703     if (myGrpTypeId == 0) { // standalone
704       if ( !mySelectAll->isChecked() )
705       {
706         if ( myAllowElemsModif->isChecked() )
707         {
708           enable = ( myElements->count() > 0 );
709         }
710         else if ((enable = !myFilter->_is_nil() ))
711         {
712           SMESH::array_of_ElementType_var types = myFilter->GetTypes();
713           enable = types->length();
714         }
715       }
716       enable = enable && (!myGroup->_is_nil() || !myMesh->_is_nil());
717     }
718     else if (myGrpTypeId == 1) // on geom
719     {
720       if (CORBA::is_nil(myGroupOnGeom)) // creation mode
721         enable = ( myGeomObjects->length() > 0 && !myMesh->_is_nil() );
722     }
723     else if (myGrpTypeId == 2) // on filter
724     {
725       if (( enable = !myFilter->_is_nil() ))
726         if (CORBA::is_nil(myGroupOnFilter) )  // creation mode
727           enable = !myMesh->_is_nil();
728     }
729   }
730
731   bool meshHasGeom = ( myMesh->_is_nil() || myMesh->HasShapeToMesh() );
732   if ( myGrpTypeId != 1 )
733   {
734     myGrpTypeGroup->button(1)->setEnabled( meshHasGeom );
735   }
736   else
737   {
738     myGeomGroupBtn->setEnabled( meshHasGeom );
739     myGeomGroupLine->setEnabled( meshHasGeom );
740   }
741
742   myOKBtn->setEnabled(enable);
743   myApplyBtn->setEnabled(enable);
744 }
745
746 //=================================================================================
747 // function : onNameChanged()
748 // purpose  :
749 //=================================================================================
750 void SMESHGUI_GroupDlg::onNameChanged (const QString& text)
751 {
752   myOldName = myName->text();
753   updateButtons();
754   myNameChanged = !myName->text().trimmed().isEmpty();
755 }
756
757 //=================================================================================
758 // function : onTypeChanged()
759 // purpose  : Group elements type radio button management
760 //=================================================================================
761 void SMESHGUI_GroupDlg::onTypeChanged (int id)
762 {
763   if (myTypeId != id) {
764     myElements->clear();
765     myTypeId = id;
766     if ( myGrpTypeId == 0 && myCurrentLineEdit == 0)
767       setSelectionMode(id);
768     else
769       setSelectionMode( mySelectionMode++ ); // update according to mySelectionMode
770
771     onObjectSelectionChanged();
772     setShowEntityMode();
773   }
774 }
775
776 //=================================================================================
777 // function : onGrpTypeChanged()
778 // purpose  : Group type radio button management
779 //=================================================================================
780 void SMESHGUI_GroupDlg::onGrpTypeChanged (int id)
781 {
782   if (myGrpTypeId != id) {
783     myGrpTypeId = id;
784     myWGStack->setCurrentIndex( id );
785     myName->blockSignals(true);
786     myName->setText(myOldName);
787     myName->blockSignals(false);
788     onSelectGeomGroup(id != 0);
789   }
790   updateButtons();
791 }
792
793 //=================================================================================
794 // function : onColorChanged()
795 // purpose  : Color button management
796 //=================================================================================
797 void SMESHGUI_GroupDlg::onColorChanged(QColor theColor)
798 {
799   updateButtons();
800 }
801
802 //=================================================================================
803 // function : setSelectionMode()
804 // purpose  : Radio button management
805 //=================================================================================
806 void SMESHGUI_GroupDlg::setSelectionMode (int theMode)
807 {
808   // PAL7314
809   if (myMesh->_is_nil())
810     return;
811   SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI );
812   bool isSelectAll = mySelectAll->isChecked() || !myAllowElemsModif->isChecked() || myGrpTypeId != 0;
813   if (mySelectionMode != theMode) {
814     // [PAL10408] mySelectionMgr->clearSelected();
815     mySelectionMgr->clearFilters();
816     SMESH::RemoveFilters();
817
818     if (myActorsList.count() > 0)
819       for (QListIterator<SMESH_Actor*> it( myActorsList ); it.hasNext(); )
820         it.next()->SetPointRepresentation(false);
821     else
822       SMESH::SetPointRepresentation(false);
823
824     switch (theMode) {
825     case grpNodeSelection:
826       if ( myGrpTypeId == 0 ) // standalone
827       {
828         if (myActorsList.count() > 0)
829           for (QListIterator<SMESH_Actor*> it( myActorsList ); it.hasNext(); )
830             it.next()->SetPointRepresentation(true);
831         else
832           SMESH::SetPointRepresentation(true);
833       }
834       if ( aViewWindow ) aViewWindow->SetSelectionMode(isSelectAll ? ActorSelection : NodeSelection);
835       break;
836     case grpEdgeSelection:
837       if ( aViewWindow ) aViewWindow->SetSelectionMode(isSelectAll ? ActorSelection : EdgeSelection);
838       break;
839     case grpBallSelection:
840       if ( aViewWindow ) aViewWindow->SetSelectionMode(isSelectAll ? ActorSelection : BallSelection);
841       break;
842     case grp0DSelection:
843       if ( aViewWindow ) aViewWindow->SetSelectionMode(isSelectAll ? ActorSelection : Elem0DSelection);
844       break;
845     case grpFaceSelection:
846       if ( aViewWindow ) aViewWindow->SetSelectionMode(isSelectAll ? ActorSelection : FaceSelection);
847       break;
848     case grpVolumeSelection:
849       if ( aViewWindow ) aViewWindow->SetSelectionMode(isSelectAll ? ActorSelection : VolumeSelection);
850       break;
851     case grpSubMeshSelection: {
852
853       SMESH_TypeFilter* f = 0;
854       switch (myTypeId) {
855       case grpNodeSelection:   f = new SMESH_TypeFilter(SMESH::SUBMESH); break;
856       case grpEdgeSelection:   f = new SMESH_TypeFilter(SMESH::SUBMESH_EDGE); break;
857       case grpFaceSelection:   f = new SMESH_TypeFilter(SMESH::SUBMESH_FACE); break;
858       case grpVolumeSelection: f = new SMESH_TypeFilter(SMESH::SUBMESH_SOLID); break;
859       default:                 f = new SMESH_TypeFilter(SMESH::SUBMESH);
860       }
861       QList<SUIT_SelectionFilter*> filtList;
862       filtList.append( f );
863       filtList.append( new SMESH_TypeFilter(SMESH::SUBMESH_COMPOUND));
864       mySubMeshFilter->setFilters( filtList );
865
866       mySelectionMgr->installFilter( mySubMeshFilter );
867
868       if ( aViewWindow ) aViewWindow->SetSelectionMode(ActorSelection);
869       break;
870     }
871     case grpGroupSelection: {
872
873       SMESH_TypeFilter* f = 0;
874       switch (myTypeId) {
875       case grpNodeSelection:   f = new SMESH_TypeFilter(SMESH::GROUP_NODE);   break;
876       case grp0DSelection:     f = new SMESH_TypeFilter(SMESH::GROUP_0D);     break;
877       case grpBallSelection:   f = new SMESH_TypeFilter(SMESH::GROUP_BALL);   break;
878       case grpEdgeSelection:   f = new SMESH_TypeFilter(SMESH::GROUP_EDGE);   break;
879       case grpFaceSelection:   f = new SMESH_TypeFilter(SMESH::GROUP_FACE);   break;
880       case grpVolumeSelection: f = new SMESH_TypeFilter(SMESH::GROUP_VOLUME); break;
881       default:                 f = new SMESH_TypeFilter(SMESH::GROUP);
882       }
883       QList<SUIT_SelectionFilter*> filtList;
884       filtList.append( f );
885       myGroupFilter->setFilters( filtList );
886
887       mySelectionMgr->installFilter(myGroupFilter);
888       if ( aViewWindow ) aViewWindow->SetSelectionMode(ActorSelection);
889       break;
890     }
891     case grpMeshSelection:
892       mySelectionMgr->installFilter(myMeshFilter);
893       if ( aViewWindow ) aViewWindow->SetSelectionMode(ActorSelection);
894       break;
895     case grpGeomSelection:
896       mySelectionMgr->installFilter(myGeomFilter);
897       if ( aViewWindow ) aViewWindow->SetSelectionMode(ActorSelection);
898       break;
899     default:
900       if ( aViewWindow ) aViewWindow->SetSelectionMode(ActorSelection);
901       break;
902     }
903     if ( aViewWindow ) aViewWindow->Repaint();
904     mySelectionMode = theMode;
905   }
906 }
907
908 //=================================================================================
909 // function : onApply()
910 // purpose  :
911 //=================================================================================
912 bool SMESHGUI_GroupDlg::onApply()
913 {
914   if (SMESHGUI::isStudyLocked())
915     return false;
916
917   if (myName->text().trimmed().isEmpty())
918     return false;
919
920   SMESH::ElementType aType = SMESH::ALL;
921   switch (myTypeId) {
922   case grpNodeSelection:   aType = SMESH::NODE;   break;
923   case grp0DSelection:     aType = SMESH::ELEM0D; break;
924   case grpBallSelection:   aType = SMESH::BALL;   break;
925   case grpEdgeSelection:   aType = SMESH::EDGE;   break;
926   case grpFaceSelection:   aType = SMESH::FACE;   break;
927   case grpVolumeSelection: aType = SMESH::VOLUME; break;
928   }
929
930   bool anIsOk = false;
931   QStringList anEntryList;
932
933   SMESH::SMESH_GroupBase_var resultGroup;
934   bool isCreation = false, isConversion = false;
935     
936   SUIT_OverrideCursor wc;
937
938   if (myGrpTypeId == 0)  // standalone
939   {
940     if (!mySelectAll->isChecked() && !myElements->count() && myAllowElemsModif->isChecked())
941       return false;
942
943     mySelectionMgr->clearSelected();
944
945     if (myGroup->_is_nil()) { // creation or conversion
946       // check if group on geometry is not null
947       if (!myGroupOnGeom->_is_nil() || !myGroupOnFilter->_is_nil()) {
948         if (myMesh->_is_nil())
949           return false;
950         if ( myGroupOnGeom->_is_nil() )
951           myGroup = myMesh->ConvertToStandalone( myGroupOnFilter );
952         else
953           myGroup = myMesh->ConvertToStandalone( myGroupOnGeom );
954
955         myGroupOnGeom   = SMESH::SMESH_GroupOnGeom::_nil();
956         myGroupOnFilter = SMESH::SMESH_GroupOnFilter::_nil();
957         isConversion    = true;
958       }
959     }
960
961     if (myGroup->_is_nil()) { // creation
962       if (myMesh->_is_nil())
963         return false;
964
965       myGroup = SMESH::AddGroup(myMesh, aType, myName->text());
966
967       resultGroup = SMESH::SMESH_GroupBase::_narrow( myGroup );
968       isCreation = true;
969
970       if ( mySelectAll->isChecked() ) {
971         // select all
972         myGroup->AddFrom(myMesh.in());
973       }
974       else {
975         // select manually
976
977         if ( !myFilter->_is_nil() &&
978              ( myNbChangesOfContents == 1 || !myAllowElemsModif->isChecked()))
979         {
980           myGroup->AddFrom( myFilter );
981         }
982         else
983         {
984           SMESH::long_array_var anIdList = new SMESH::long_array;
985           int i, k = myElements->count();
986           anIdList->length(k);
987           for (i = 0; i < k; i++) {
988             anIdList[i] = myElements->item(i)->text().toInt();
989           }
990           myGroup->Add(anIdList.inout());
991         }
992       }
993
994
995     } else { // edition
996
997       resultGroup = SMESH::SMESH_GroupBase::_narrow( myGroup );
998       isCreation = false;
999
1000       if ( mySelectAll->isChecked() ) {
1001         // select all
1002         myGroup->Clear();
1003         myGroup->AddFrom(myMesh.in());
1004       }
1005       else {
1006         QList<int> aAddList;
1007         
1008         int i, total = myElements->count();
1009         for (i = 0; i < total; i++) {
1010           int anId = myElements->item(i)->text().toInt();
1011           int idx = myIdList.indexOf(anId);
1012           if ( idx == -1 )
1013             aAddList.append(anId);
1014           else
1015             myIdList.removeAt(idx);
1016         }
1017         if (!aAddList.empty()) {
1018           SMESH::long_array_var anIdList = new SMESH::long_array;
1019           int added = aAddList.count();
1020           anIdList->length(added);
1021           for (i = 0; i < added; i++)
1022             anIdList[i] = aAddList[i];
1023           myGroup->Add(anIdList.inout());
1024         }
1025         if (!myIdList.empty()) {
1026           SMESH::long_array_var anIdList = new SMESH::long_array;
1027           int removed = myIdList.count();
1028           anIdList->length(removed);
1029           for (i = 0; i < removed; i++)
1030             anIdList[i] = myIdList[i];
1031           myGroup->Remove(anIdList.inout());
1032         }
1033         /* init for next operation */
1034         myIdList.clear();
1035         for (i = 0; i < total; i++) {
1036           myIdList.append(myElements->item(i)->text().toInt());
1037         }
1038       }
1039     }
1040
1041     anIsOk = true;
1042   }
1043   else if (myGrpTypeId == 1) // on geom object
1044   {
1045     if (CORBA::is_nil(myGroupOnGeom)) { // creation
1046       if (myMesh->_is_nil() || !myGeomObjects->length())
1047         return false;
1048
1049       _PTR(Study) aStudy = SMESH::getStudy();
1050
1051       if (myGeomObjects->length() == 1) {
1052         myGroupOnGeom = myMesh->CreateGroupFromGEOM(aType,
1053                                                     SMESH::toUtf8(myName->text()),
1054                                                     myGeomObjects[0]);
1055       }
1056       else {
1057         SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
1058         if ( aSMESHGen->_is_nil() )
1059           return false;
1060
1061         // create a geometry group
1062         GEOM::GEOM_Gen_var geomGen = SMESH::GetGEOMGen();
1063
1064         if (geomGen->_is_nil())
1065           return false;
1066
1067         GEOM::GEOM_IGroupOperations_wrap op = geomGen->GetIGroupOperations();
1068         if (op->_is_nil())
1069           return false;
1070
1071         // check and add all selected GEOM objects: they must be
1072         // a sub-shapes of the main GEOM and must be of one type
1073         TopAbs_ShapeEnum aGroupType = TopAbs_SHAPE;
1074         for ( int i =0; i < (int)myGeomObjects->length(); i++) {
1075           TopAbs_ShapeEnum aSubShapeType = (TopAbs_ShapeEnum)myGeomObjects[i]->GetShapeType();
1076           if (i == 0)
1077             aGroupType = aSubShapeType;
1078           else if (aSubShapeType != aGroupType) {
1079             aGroupType = TopAbs_SHAPE;
1080             break;
1081           }
1082         }
1083
1084         GEOM::GEOM_Object_var  aMeshShape = myMesh->GetShapeToMesh();
1085         GEOM::GEOM_Object_wrap aGroupVar = op->CreateGroup(aMeshShape, aGroupType);
1086         op->UnionList(aGroupVar, myGeomObjects);
1087
1088         if (op->IsDone()) {
1089           // publish the GEOM group in study
1090           QString aNewGeomGroupName ( "Auto_group_for_" );
1091           aNewGeomGroupName += myName->text();
1092           SALOMEDS::SObject_var aNewGroupSO =
1093             geomGen->AddInStudy(aGroupVar,
1094                                 SMESH::toUtf8(aNewGeomGroupName), aMeshShape);
1095         }
1096
1097         myGroupOnGeom = myMesh->CreateGroupFromGEOM(aType,
1098                                                     SMESH::toUtf8(myName->text()),
1099                                                     aGroupVar);
1100       }
1101       resultGroup = SMESH::SMESH_GroupBase::_narrow( myGroupOnGeom );
1102       isCreation = true;
1103
1104     }
1105     else { // edition
1106
1107       resultGroup = SMESH::SMESH_GroupBase::_narrow( myGroupOnGeom );
1108       isCreation = false;
1109     }      
1110     anIsOk = true;
1111   }
1112   if (myGrpTypeId == 2) // group on filter
1113   {
1114     if ( myFilter->_is_nil() ) return false;
1115
1116     if (CORBA::is_nil(myGroupOnFilter)) // creation
1117     {
1118       if (myMesh->_is_nil())
1119         return false;
1120
1121       myGroupOnFilter = myMesh->CreateGroupFromFilter(aType,
1122                                                       SMESH::toUtf8(myName->text()),
1123                                                       myFilter);
1124       resultGroup = SMESH::SMESH_GroupBase::_narrow( myGroupOnFilter );
1125       isCreation = true;
1126     }
1127     else
1128     {
1129       myGroupOnFilter->SetFilter( myFilter );
1130
1131       resultGroup = SMESH::SMESH_GroupBase::_narrow( myGroupOnFilter );
1132       isCreation = false;
1133     }
1134     anIsOk = true;
1135   }
1136
1137   if ( anIsOk )
1138   {
1139     SALOMEDS::Color aColor = getGroupColor();
1140     resultGroup->SetColor(aColor);
1141
1142     _PTR(SObject) aMeshGroupSO = SMESH::FindSObject( resultGroup );
1143     if( aMeshGroupSO )
1144       anEntryList.append( aMeshGroupSO->GetID().c_str() );
1145
1146     resultGroup->SetName(SMESH::toUtf8(myName->text().trimmed()));
1147
1148     if ( isCreation )
1149     {
1150       SMESH::setFileType ( aMeshGroupSO, "COULEURGROUP" );
1151
1152       /* init for the next operation */
1153       setDefaultName();
1154       myElements->clear();
1155       myGroup         = SMESH::SMESH_Group::_nil();
1156       myGroupOnGeom   = SMESH::SMESH_GroupOnGeom::_nil();
1157       myGroupOnFilter = SMESH::SMESH_GroupOnFilter::_nil();
1158       myFilter        = SMESH::Filter::_nil();
1159
1160       setDefaultGroupColor(); // reset color for case if 'auto-color' feature is enabled.
1161     }
1162     else
1163     {
1164       if ( aMeshGroupSO )
1165       {
1166         if ( SMESH_Actor *anActor = SMESH::FindActorByEntry(aMeshGroupSO->GetID().c_str()))
1167         {
1168           Handle(SALOME_InteractiveObject) anIO = anActor->getIO();
1169           if ( isConversion ) { // need to reset TVisualObj and actor
1170             SMESH::RemoveVisualObjectWithActors( anIO->getEntry(), true );
1171             SMESH::Update( anIO,true);
1172             myActorsList.clear();
1173             anActor = SMESH::FindActorByEntry( anIO->getEntry() );
1174             if ( !anActor ) return false;
1175             myActorsList.append( anActor );
1176           }
1177           anActor->setName(SMESH::toUtf8(myName->text()));
1178           QColor c;
1179           int delta;
1180           switch ( myTypeId ) {
1181           case grpNodeSelection:   anActor->SetNodeColor( aColor.R, aColor.G, aColor.B ); break;
1182           case grp0DSelection:     anActor->Set0DColor  ( aColor.R, aColor.G, aColor.B ); break;
1183           case grpBallSelection:   anActor->SetBallColor( aColor.R, aColor.G, aColor.B ); break;
1184           case grpEdgeSelection:   anActor->SetEdgeColor( aColor.R, aColor.G, aColor.B ); break;
1185           case grpVolumeSelection: 
1186             SMESH::GetColor("SMESH", "volume_color", c , delta, "255,0,170|-100");
1187             anActor->SetVolumeColor( aColor.R, aColor.G, aColor.B, delta ); break;          
1188             break;
1189           case grpFaceSelection:   
1190           default:
1191             SMESH::GetColor("SMESH", "fill_color", c , delta, "0,170,255|-100");
1192             anActor->SetSufaceColor( aColor.R, aColor.G, aColor.B, delta ); break;          
1193             break;
1194           }
1195           // update a visible group accoding to a changed contents
1196           if ( !isConversion && anActor->GetVisibility() )
1197           {
1198             SMESH::Update( anIO, true );
1199             SMESH::RepaintCurrentView();
1200           }
1201         }
1202       }
1203     }
1204     SMESHGUI::Modified();
1205     mySMESHGUI->updateObjBrowser(true);
1206     mySelectionMgr->clearSelected();
1207
1208     if( LightApp_Application* anApp =
1209         dynamic_cast<LightApp_Application*>( SUIT_Session::session()->activeApplication() ) )
1210       myObjectToSelect = anApp->browseObjects( anEntryList, isApplyAndClose() );
1211   }
1212   return anIsOk;
1213 }
1214
1215 //=================================================================================
1216 // function : onOK()
1217 // purpose  :
1218 //=================================================================================
1219 void SMESHGUI_GroupDlg::onOK()
1220 {
1221   setIsApplyAndClose( true );
1222   if ( onApply() )
1223     reject();
1224   setIsApplyAndClose( false );
1225
1226   if ( myFilterDlg ) myFilterDlg->UnRegisterFilters();
1227 }
1228
1229 //=================================================================================
1230 // function : onListSelectionChanged()
1231 // purpose  : Called when selection in element list is changed
1232 //=================================================================================
1233 void SMESHGUI_GroupDlg::onListSelectionChanged()
1234 {
1235   //MESSAGE( "SMESHGUI_GroupDlg::onListSelectionChanged(); myActorsList.count() = " << myActorsList.count());
1236   if( myIsBusy || myActorsList.count() == 0 ) return;
1237   myIsBusy = true;
1238
1239   if (myCurrentLineEdit == 0) {
1240     mySelectionMgr->clearSelected();
1241     TColStd_MapOfInteger aIndexes;
1242     QList<QListWidgetItem*> selItems = myElements->selectedItems();
1243     QListWidgetItem* anItem;
1244     foreach(anItem, selItems) aIndexes.Add(anItem->text().toInt());
1245     mySelector->AddOrRemoveIndex(myActorsList.first()->getIO(), aIndexes, false);
1246     SALOME_ListIO aList;
1247     aList.Append(myActorsList.first()->getIO());
1248     mySelectionMgr->setSelectedObjects(aList,false);
1249   }
1250   myIsBusy = false;
1251 }
1252
1253 //=================================================================================
1254 // function : onObjectSelectionChanged()
1255 // purpose  : Called when selection in 3D view or ObjectBrowser is changed
1256 //=================================================================================
1257 void SMESHGUI_GroupDlg::onObjectSelectionChanged()
1258 {
1259   if ( myIsBusy || !isEnabled()) return;
1260   if (myCurrentLineEdit == myGeomGroupLine && !myGeomGroupBtn->isChecked()) return;
1261
1262   myIsBusy = true;
1263
1264   SALOME_ListIO aList;
1265   mySelectionMgr->selectedObjects( aList );
1266
1267   int aNbSel = aList.Extent();
1268   myElements->clearSelection();
1269
1270   if (myCurrentLineEdit)
1271   {
1272     myCurrentLineEdit->setText( "" );
1273     QString aString = "";
1274
1275     if (myCurrentLineEdit == myMeshGroupLine)
1276     {
1277       mySelectSubMesh->setEnabled(false);
1278       mySelectGroup->setEnabled(false);
1279       myGroupLine->setText( "" );
1280       mySubMeshLine->setText( "" );
1281
1282       myGeomGroupBtn->setEnabled(false);
1283       myGeomGroupLine->setEnabled(false);
1284       myGeomGroupLine->setText( "" );
1285       myGeomObjects = new GEOM::ListOfGO();
1286       myGeomObjects->length(0);
1287
1288       if (myGeomGroupBtn->isChecked())
1289         myGeomGroupBtn->setChecked(false);
1290       if (!myCreate)
1291         myName->setText( "" );
1292
1293       myElements->clear();
1294
1295       if (aNbSel != 1 ) {
1296         myGroup = SMESH::SMESH_Group::_nil();
1297         myGroupOnGeom = SMESH::SMESH_GroupOnGeom::_nil();
1298         restoreShowEntityMode();
1299         myMesh = SMESH::SMESH_Mesh::_nil();
1300         updateGeomPopup();
1301         updateButtons();
1302         myIsBusy = false;
1303         return;
1304       }
1305       Handle(SALOME_InteractiveObject) IO = aList.First();
1306
1307       if (myCreate) {
1308         restoreShowEntityMode();
1309         myMesh = SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(IO);
1310         setShowEntityMode();
1311         updateGeomPopup();
1312         if (myMesh->_is_nil())
1313         {
1314           updateButtons();
1315           myIsBusy = false;
1316           return;
1317         }
1318
1319         if ( myFilterDlg && !myMesh->_is_nil()){
1320           myFilterDlg->SetMesh( myMesh );
1321         }
1322         myGroup = SMESH::SMESH_Group::_nil();
1323
1324         // NPAL19389: create a group with a selection in another group
1325         // set actor of myMesh, if it is visible, else try
1326         // any visible actor of group or submesh of myMesh
1327         SetAppropriateActor();
1328
1329         setDefaultGroupColor();
1330         if (myName->text().isEmpty())
1331           setDefaultName();
1332
1333         aString = aList.First()->getName();
1334         myMeshGroupLine->setText(aString);
1335         myMeshGroupLine->home( false );
1336
1337         mySelectSubMesh->setEnabled(true);
1338         mySelectGroup->setEnabled(true);
1339         myGeomGroupBtn->setEnabled(true);
1340         myGeomGroupLine->setEnabled(true);
1341         updateButtons();
1342       }
1343       else {
1344         SMESH::SMESH_GroupBase_var aGroup = SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(IO);
1345         if (aGroup->_is_nil())
1346         {
1347           myIsBusy = false;
1348           return;
1349         }
1350         myIsBusy = false;
1351
1352         myGroup = SMESH::SMESH_Group::_nil();
1353         myGroupOnGeom = SMESH::SMESH_GroupOnGeom::_nil();
1354
1355         init(aGroup);
1356         myIsBusy = true;
1357         mySelectSubMesh->setEnabled(true);
1358         mySelectGroup->setEnabled(true);
1359       }
1360       myCurrentLineEdit = 0;
1361       myIsBusy = false;
1362       if (!myCreate)
1363         return;
1364
1365       if (myGrpTypeId == 0)
1366       {
1367         if (myTypeId == -1)
1368           onTypeChanged(0);
1369         else
1370         {
1371           myElements->clear();
1372           setSelectionMode(myTypeId);
1373         }
1374       }
1375
1376       myIsBusy = false;
1377       return;
1378
1379     }
1380     else if (myCurrentLineEdit == myGeomGroupLine)
1381     {
1382       myGeomObjects = new GEOM::ListOfGO();
1383
1384       // The mesh SObject
1385       _PTR(SObject) aMeshSO = SMESH::FindSObject(myMesh);
1386
1387       if (aNbSel == 0 || !aMeshSO)
1388       {
1389         myGeomObjects->length(0);
1390         updateButtons();
1391         myIsBusy = false;
1392         return;
1393       }
1394
1395       myGeomObjects->length(aNbSel);
1396
1397       GEOM::GEOM_Object_var aGeomGroup;
1398       int i = 0;
1399
1400       SALOME_ListIteratorOfListIO anIt (aList);
1401       for (; anIt.More(); anIt.Next())
1402       {
1403         aGeomGroup = GEOMBase::ConvertIOinGEOMObject(anIt.Value());
1404
1405         // Check if the object is a geometry group
1406         if (CORBA::is_nil(aGeomGroup))
1407           continue;
1408
1409         // Check if group constructed on the same shape as a mesh or on its child
1410
1411         // The main shape of the group
1412         GEOM::GEOM_Object_var aGroupMainShape;
1413         if (aGeomGroup->GetType() == 37) {
1414           GEOM::GEOM_IGroupOperations_wrap anOp =
1415             SMESH::GetGEOMGen()->GetIGroupOperations();
1416           aGroupMainShape = anOp->GetMainShape(aGeomGroup);
1417           // aGroupMainShape is an existing servant => GEOM_Object_var not GEOM_Object_wrap
1418         }
1419         else {
1420           aGroupMainShape = aGeomGroup;
1421           aGroupMainShape->Register();
1422         }
1423         _PTR(SObject) aGroupMainShapeSO =
1424           SMESH::getStudy()->FindObjectID(aGroupMainShape->GetStudyEntry());
1425
1426         _PTR(SObject) anObj, aRef;
1427         bool isRefOrSubShape = false;
1428         if (aMeshSO->FindSubObject(1, anObj) &&  anObj->ReferencedObject(aRef)) {
1429           if (aRef->GetID() == aGroupMainShapeSO->GetID()) {
1430             isRefOrSubShape = true;
1431           } else {
1432             _PTR(SObject) aFather = aGroupMainShapeSO->GetFather();
1433             _PTR(SComponent) aComponent = aGroupMainShapeSO->GetFatherComponent();
1434             while (!isRefOrSubShape && aFather->GetID() != aComponent->GetID()) {
1435               if (aRef->GetID() == aFather->GetID())
1436                 isRefOrSubShape = true;
1437               else
1438                 aFather = aFather->GetFather();
1439             }
1440           }
1441         }
1442         if (isRefOrSubShape)
1443           myGeomObjects[i++] = aGeomGroup;
1444       }
1445
1446       myGeomObjects->length(i);
1447       if ( i == 0 )
1448         {
1449           myIsBusy = false;
1450           return;
1451         }
1452
1453       aNbSel = i;
1454     }
1455
1456     if (aNbSel >= 1) {
1457       if (aNbSel > 1) {
1458         if (myCurrentLineEdit == mySubMeshLine)
1459           aString = tr( "SMESH_SUBMESH_SELECTED" ).arg(aNbSel);
1460         else if (myCurrentLineEdit == myGroupLine)
1461           aString = tr( "SMESH_GROUP_SELECTED" ).arg(aNbSel);
1462         else if (myCurrentLineEdit == myGeomGroupLine)
1463           aString = tr( "%1 Objects" ).arg(aNbSel);
1464       }
1465       else {
1466         aString = aList.First()->getName();
1467       }
1468     }
1469
1470     myCurrentLineEdit->setText(aString);
1471     myCurrentLineEdit->home(false);
1472     // 07.06.2008 skl for IPAL19574:
1473     // change name of group only if it is empty
1474     if( myName->text().trimmed().isEmpty() || !myNameChanged ) {
1475       myOldName = myName->text();
1476       myName->blockSignals(true);
1477       myName->setText(aString);
1478       myName->blockSignals(false);
1479     }
1480
1481     updateButtons();
1482   }
1483   else // !myCurrentLineEdit: local selection of nodes or elements
1484   {
1485     if (aNbSel == 1 && myActorsList.count() > 0 )
1486     {
1487       // NPAL19389: create a group with a selection in another group
1488       // Switch myActor to the newly selected one, if the last
1489       // is visible and belongs to group or submesh of myMesh
1490       /*      Handle(SALOME_InteractiveObject) curIO = myActor->getIO();
1491       Handle(SALOME_InteractiveObject) selIO = aList.First();
1492       if (curIO->hasEntry() && selIO->hasEntry()) {
1493         const char* selEntry = selIO->getEntry();
1494         if (strcmp(curIO->getEntry(), selEntry) != 0) {
1495           // different objects: selected and myActor
1496           SVTK_ViewWindow* aViewWindow = SMESH::GetCurrentVtkView();
1497           if (aViewWindow && aViewWindow->isVisible(selIO)) {
1498             // newly selected actor is visible
1499
1500             // mesh entry
1501             _PTR(SObject) aSObject = SMESH::FindSObject(myMesh);
1502             if (aSObject) {
1503               CORBA::String_var meshEntry = aSObject->GetID().c_str();
1504               int len = strlen(meshEntry);
1505
1506               if (strncmp(selEntry, meshEntry, len) == 0) {
1507                 // selected object is myMesh or a part of it
1508                 SMESH_Actor* anActor = SMESH::FindActorByEntry(selEntry);
1509                 if (anActor) {
1510                   myActor = anActor;
1511                   SMESH::SetPickable(myActor);
1512                 }
1513               }
1514             }
1515           }
1516         }
1517       }*/
1518       // NPAL19389 END
1519
1520       QString aListStr = "";
1521       int aNbItems = 0;
1522       if (myTypeId == 0) {
1523         QListIterator<SMESH_Actor*> it( myActorsList );
1524         while ( it.hasNext() ) {
1525           QString tmpStr;
1526           aNbItems += SMESH::GetNameOfSelectedNodes(mySelector, it.next()->getIO(), tmpStr);
1527           aListStr += tmpStr;
1528         }
1529       } else {
1530         QListIterator<SMESH_Actor*> it( myActorsList );
1531         while ( it.hasNext() ) {
1532           QString tmpStr;
1533           aNbItems += SMESH::GetNameOfSelectedElements(mySelector, it.next()->getIO(), tmpStr);
1534           aListStr += tmpStr;
1535         }
1536       }
1537       if (aNbItems > 0) {
1538         QListWidgetItem* anItem;
1539         QList<QListWidgetItem*> listItemsToSel;
1540         QStringList anElements = aListStr.split( " ", QString::SkipEmptyParts);
1541         for (QStringList::iterator it = anElements.begin(); it != anElements.end(); ++it) {
1542           QList<QListWidgetItem*> found = myElements->findItems(*it, Qt::MatchExactly);
1543           foreach(anItem, found)
1544             if (!anItem->isSelected())
1545               listItemsToSel.push_back(anItem);
1546         }
1547         bool blocked = myElements->signalsBlocked();
1548         myElements->blockSignals(true);
1549         foreach(anItem, listItemsToSel) anItem->setSelected(true);
1550         myElements->blockSignals(blocked);
1551         onListSelectionChanged();
1552         listItemsToSel.clear();
1553       }
1554     }
1555   }
1556   
1557   if (myActorsList.count() == 0) {
1558     if (!myGroup->_is_nil()) {
1559       SMESH_Actor* anActor = SMESH::FindActorByObject(myGroup);
1560       if ( anActor )
1561         myActorsList.append( anActor  );
1562     }
1563     else if(!myGroupOnGeom->_is_nil()) {
1564       SMESH_Actor* anActor = SMESH::FindActorByObject(myGroupOnGeom);
1565       if ( anActor )
1566         myActorsList.append( anActor );
1567     }
1568     else {
1569       SMESH_Actor* anActor = SMESH::FindActorByObject( myMesh );
1570       if ( anActor )
1571         myActorsList.append( anActor );
1572     }
1573   }
1574
1575   // somehow, if we display the mesh, while selecting from another actor,
1576   // the mesh becomes pickable, and there is no way to select any element
1577   if (myActorsList.count() > 0) {
1578     QListIterator<SMESH_Actor*> it( myActorsList );
1579     while ( it.hasNext() ) {
1580       SMESH_Actor* anActor = it.next();
1581       if ( IsActorVisible(anActor) )
1582         anActor->SetPickable(true);
1583     }
1584   }
1585
1586   myIsBusy = false;
1587 }
1588
1589 //=================================================================================
1590 // function : onSelectAll()
1591 // purpose  : Called when "Select all" is checked
1592 //=================================================================================
1593 void SMESHGUI_GroupDlg::onSelectAll()
1594 {
1595   bool noElemsModif = ( mySelectAll->isChecked() || !myAllowElemsModif->isChecked() );
1596
1597   myElementsLab->setEnabled( !noElemsModif );
1598   myElements->setEnabled   ( !noElemsModif );
1599   myFilterBtn->setEnabled  ( !noElemsModif );
1600   myAddBtn->setEnabled     ( !noElemsModif );
1601   myRemoveBtn->setEnabled  ( !noElemsModif );
1602   mySortBtn->setEnabled    ( !noElemsModif );
1603   mySelectBox->setEnabled  ( !noElemsModif );
1604   myAllowElemsModif->setEnabled( !mySelectAll->isChecked() );
1605   if ( noElemsModif ) mySMESHGUI->ResetState();
1606   else                mySMESHGUI->SetState(800);
1607
1608   int selMode     = mySelectionMode;
1609   mySelectionMode = grpNoSelection;
1610   setSelectionMode( selMode );
1611   updateButtons();
1612 }
1613
1614 //=================================================================================
1615 // function : onSelectSubMesh()
1616 // purpose  : Called when selection in 3D view or ObjectBrowser is changed
1617 //=================================================================================
1618 void SMESHGUI_GroupDlg::onSelectSubMesh(bool on)
1619 {
1620   if (on) {
1621     if (mySelectGroup->isChecked()) {
1622       mySelectGroup->setChecked(false);
1623     }
1624     //VSR: else if (mySelectGeomGroup->isChecked()) {
1625     //VSR:   mySelectGeomGroup->setChecked(false);
1626     //VSR: }
1627     myCurrentLineEdit = mySubMeshLine;
1628     setSelectionMode(grpSubMeshSelection);
1629   }
1630   else {
1631     mySubMeshLine->setText( "" );
1632     myCurrentLineEdit = 0;
1633     if (myTypeId != -1)
1634       setSelectionMode(myTypeId);
1635   }
1636   mySubMeshBtn->setEnabled(on);
1637   mySubMeshLine->setEnabled(on);
1638 }
1639
1640
1641 //=================================================================================
1642 // function : (onSelectGroup)
1643 // purpose  : Called when selection in 3D view or ObjectBrowser is changed
1644 //=================================================================================
1645 void SMESHGUI_GroupDlg::onSelectGroup(bool on)
1646 {
1647   if (on) {
1648     if (mySelectSubMesh->isChecked()) {
1649       mySelectSubMesh->setChecked(false);
1650     }
1651     myCurrentLineEdit = myGroupLine;
1652     setSelectionMode(grpGroupSelection);
1653   }
1654   else {
1655     myGroupLine->setText( "" );
1656     myCurrentLineEdit = 0;
1657     if (myTypeId != -1)
1658       setSelectionMode(myTypeId);
1659   }
1660   myGroupBtn->setEnabled(on);
1661   myGroupLine->setEnabled(on);
1662 }
1663
1664
1665 //=================================================================================
1666 // function : (onSelectGeomGroup)
1667 // purpose  : Called when group type changed. on == "on geometry" or "on filter"
1668 //=================================================================================
1669 void SMESHGUI_GroupDlg::onSelectGeomGroup(bool on)
1670 {
1671   if (on) {
1672     if (mySelectSubMesh->isChecked()) {
1673       mySelectSubMesh->setChecked(false);
1674     }
1675     else if (mySelectGroup->isChecked()) {
1676       mySelectGroup->setChecked(false);
1677     }
1678     if ( myGrpTypeId == 1 ) { // on geometry
1679       myCurrentLineEdit = myGeomGroupLine;
1680       updateGeomPopup();
1681     }
1682     else { // on filter
1683       myCurrentLineEdit = 0;
1684     }
1685     setSelectionMode(grpAllSelection);
1686   }
1687   else {
1688     myGeomGroupBtn->setChecked(false);
1689     myGeomObjects->length(0);
1690     myGeomGroupLine->setText( "" );
1691     myCurrentLineEdit = 0;
1692     if (myTypeId != -1)
1693       setSelectionMode( myTypeId );
1694   }
1695 }
1696
1697 //=================================================================================
1698 // function : setCurrentSelection()
1699 // purpose  :
1700 //=================================================================================
1701 void SMESHGUI_GroupDlg::setCurrentSelection()
1702 {
1703   QPushButton* send = (QPushButton*)sender();
1704   myCurrentLineEdit = 0;
1705   if (send == myMeshGroupBtn) {
1706     disconnect(myMeshGroupBtn, SIGNAL(clicked()), this, SLOT(setCurrentSelection()));
1707     mySelectionMgr->clearSelected();
1708     if (myCreate)
1709       setSelectionMode(grpMeshSelection);
1710     else
1711       setSelectionMode(grpGroupSelection);
1712     connect(myMeshGroupBtn, SIGNAL(clicked()), this, SLOT(setCurrentSelection()));
1713     myCurrentLineEdit = myMeshGroupLine;
1714     onObjectSelectionChanged();
1715   }
1716   else if (send == mySubMeshBtn) {
1717     myCurrentLineEdit = mySubMeshLine;
1718     onObjectSelectionChanged();
1719   }
1720   else if (send == myGroupBtn) {
1721     myCurrentLineEdit = myGroupLine;
1722     onObjectSelectionChanged();
1723   }
1724 }
1725
1726
1727 //=================================================================================
1728 // function : setFilters()
1729 // purpose  : SLOT. Called when "Filter" button pressed.
1730 //=================================================================================
1731 void SMESHGUI_GroupDlg::setFilters()
1732 {
1733   if(myMesh->_is_nil()) {
1734     SUIT_MessageBox::critical(this,
1735                               tr("SMESH_ERROR"),
1736                               tr("NO_MESH_SELECTED"));
1737    return;
1738   }
1739
1740   SMESH::ElementType aType = SMESH::ALL;
1741   switch ( myTypeId )
1742   {
1743     case grpNodeSelection:   aType = SMESH::NODE;   break;
1744     case grp0DSelection:     aType = SMESH::ELEM0D; break;
1745     case grpBallSelection:   aType = SMESH::BALL;   break;
1746     case grpEdgeSelection:   aType = SMESH::EDGE;   break;
1747     case grpFaceSelection:   aType = SMESH::FACE;   break;
1748     case grpVolumeSelection: aType = SMESH::VOLUME; break;
1749     default:                 return;
1750   }
1751
1752   if ( myFilterDlg == 0 )
1753   {
1754     myFilterDlg = new SMESHGUI_FilterDlg( mySMESHGUI, aType );
1755     connect( myFilterDlg, SIGNAL( Accepted() ), SLOT( onFilterAccepted() ) );
1756   }
1757   else
1758     myFilterDlg->Init( aType );
1759
1760   if ( !myGroupOnFilter->_is_nil() )
1761   {
1762     myFilterDlg->SetFilter( myFilter, aType );
1763     myFilterDlg->Init( aType );
1764   }
1765
1766   bool isStandalone = ( sender() == myFilterBtn );
1767   myFilterDlg->SetEnabled( /*setInViewer=*/isStandalone,
1768                            /*diffSources=*/isStandalone );
1769   myFilterDlg->SetMesh( myMesh );
1770   myFilterDlg->SetGroup( myGroupOnFilter );
1771   myFilterDlg->SetSelection();
1772   myFilterDlg->SetSourceWg( myElements, false );
1773
1774   myFilterDlg->show();
1775 }
1776
1777 //=================================================================================
1778 // function : onFilterAccepted()
1779 // purpose  : SLOT. Called when Filter dlg closed with OK button.
1780 //            Uncheck "Select submesh" and "Select group" checkboxes
1781 //=================================================================================
1782 void SMESHGUI_GroupDlg::onFilterAccepted()
1783 {
1784   if ( mySelectSubMesh->isChecked() || mySelectGroup->isChecked() )
1785   {
1786     mySelectionMode = myTypeId;
1787     mySelectSubMesh->setChecked( false );
1788     mySelectGroup->setChecked( false );
1789   }
1790   // get a filter from myFilterDlg
1791   myFilter = myFilterDlg->GetFilter();
1792   if ( !myFilter->_is_nil() ) {
1793     SMESH::Predicate_var perdicate = myFilter->GetPredicate();
1794     if ( perdicate->_is_nil() )
1795       myFilter = SMESH::Filter::_nil();
1796   }
1797   // set mesh to myFilter
1798   if ( !myFilter->_is_nil() ) {
1799     SMESH::SMESH_Mesh_var mesh = myMesh;
1800     if ( mesh->_is_nil() ) {
1801       if ( !myGroup->_is_nil() )
1802         mesh = myGroup->GetMesh();
1803       else if ( !myGroupOnGeom->_is_nil() )
1804         mesh = myGroupOnGeom->GetMesh();
1805       else if ( !myGroupOnFilter->_is_nil() )
1806         mesh = myGroupOnFilter->GetMesh();
1807     }
1808     myFilter->SetMesh( mesh );
1809
1810     // highlight ids if selection changed in the Viewer (IPAL52924)
1811     myCurrentLineEdit = 0;
1812     onObjectSelectionChanged();
1813   }
1814
1815   updateButtons();
1816 }
1817
1818 //=================================================================================
1819 // function : onAdd()
1820 // purpose  :
1821 //=================================================================================
1822 void SMESHGUI_GroupDlg::onAdd()
1823 {
1824   SALOME_ListIO aList;
1825   mySelectionMgr->selectedObjects( aList );
1826
1827   int aNbSel = aList.Extent();
1828
1829   if (aNbSel == 0 || myActorsList.count() == 0 || myMesh->_is_nil()) return;
1830
1831   SUIT_OverrideCursor wc;
1832
1833   myIsBusy = true;
1834   int sizeBefore = myElements->count();
1835
1836   SMESH::ElementType aType = SMESH::ALL;
1837   switch(myTypeId) {
1838   case grpNodeSelection:
1839     aType = SMESH::NODE;
1840     mySelector->SetSelectionMode(NodeSelection);
1841     break;
1842   case grpBallSelection:
1843     aType = SMESH::BALL;
1844     mySelector->SetSelectionMode(BallSelection);
1845     break;
1846   case grp0DSelection:
1847     aType = SMESH::ELEM0D;
1848     mySelector->SetSelectionMode(Elem0DSelection);
1849     break;
1850   case grpEdgeSelection:
1851     aType = SMESH::EDGE;
1852     mySelector->SetSelectionMode(EdgeSelection);
1853     break;
1854   case grpFaceSelection:
1855     aType = SMESH::FACE;
1856     mySelector->SetSelectionMode(FaceSelection);
1857     break;
1858   case grpVolumeSelection:
1859     aType = SMESH::VOLUME;
1860     mySelector->SetSelectionMode(VolumeSelection);
1861     break;
1862   default:
1863     mySelector->SetSelectionMode(ActorSelection);
1864   }
1865
1866   QListWidgetItem* anItem = 0;
1867   QList<QListWidgetItem*> listItemsToSel;
1868
1869   if (myCurrentLineEdit == 0) {
1870     //if (aNbSel != 1) { myIsBusy = false; return; }
1871     QString aListStr = "";
1872     int aNbItems = 0;
1873     if (myTypeId == 0) {
1874       QListIterator<SMESH_Actor*> it( myActorsList );
1875       while ( it.hasNext() ) {
1876         QString tmpStr;
1877         aNbItems += SMESH::GetNameOfSelectedNodes(mySelector, it.next()->getIO(), tmpStr);
1878         aListStr += tmpStr;
1879       }
1880     }
1881     else {
1882       QListIterator<SMESH_Actor*> it( myActorsList );
1883       while ( it.hasNext() ) {
1884         QString tmpStr;
1885         aNbItems += SMESH::GetNameOfSelectedElements(mySelector, it.next()->getIO(), tmpStr);
1886         aListStr += tmpStr;
1887       }
1888     }
1889     if (aNbItems > 0) {
1890       QStringList anElements = aListStr.split( " ", QString::SkipEmptyParts);
1891       for (QStringList::iterator it = anElements.begin(); it != anElements.end(); ++it) {
1892         QList<QListWidgetItem*> found = myElements->findItems(*it, Qt::MatchExactly);
1893         if (found.count() == 0) {
1894           anItem = new QListWidgetItem(*it);
1895           myElements->addItem(anItem);
1896           if (!anItem->isSelected())
1897             listItemsToSel.push_back(anItem);
1898         }
1899         else {
1900           foreach(anItem, found)
1901             if (!anItem->isSelected())
1902               listItemsToSel.push_back(anItem);
1903         }
1904       }
1905       bool blocked = myElements->signalsBlocked();
1906       myElements->blockSignals(true);
1907       foreach(anItem, listItemsToSel) anItem->setSelected(true);
1908       myElements->blockSignals(blocked);
1909       onListSelectionChanged();
1910       listItemsToSel.clear();
1911     }
1912   } else if (myCurrentLineEdit == mySubMeshLine) {
1913     //SALOME_ListIteratorOfListIO anIt (mySelectionMgr->StoredIObjects());
1914
1915     SALOME_ListIO aList;
1916     mySelectionMgr->selectedObjects( aList );
1917
1918     SALOME_ListIteratorOfListIO anIt (aList);
1919     for ( ; anIt.More(); anIt.Next()) {
1920       SMESH::SMESH_subMesh_var aSubMesh =
1921         SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(anIt.Value());
1922       if (!aSubMesh->_is_nil()) {
1923         // check if mesh is the same
1924         if (aSubMesh->GetFather()->GetId() == myMesh->GetId()) {
1925           try {
1926             SMESH::long_array_var anElements = aSubMesh->GetElementsByType(aType);
1927             int k = anElements->length();
1928             for (int i = 0; i < k; i++) {
1929               QString aText = QString::number(anElements[i]);
1930               QList<QListWidgetItem*> found = myElements->findItems(aText, Qt::MatchExactly);
1931               if (found.count() == 0) {
1932                 anItem = new QListWidgetItem(aText);
1933                 myElements->addItem(anItem);
1934                 if (!anItem->isSelected())
1935                   listItemsToSel.push_back(anItem);
1936               }
1937               else {
1938                 foreach(anItem, found)
1939                   if (!anItem->isSelected())
1940                     listItemsToSel.push_back(anItem);
1941               }
1942             }
1943             bool blocked = myElements->signalsBlocked();
1944             myElements->blockSignals(true);
1945             foreach(anItem, listItemsToSel) anItem->setSelected(true);
1946             myElements->blockSignals(blocked);
1947             onListSelectionChanged();
1948             listItemsToSel.clear();
1949           }
1950           catch (const SALOME::SALOME_Exception& ex) {
1951             SalomeApp_Tools::QtCatchCorbaException(ex);
1952           }
1953         }
1954       }
1955     }
1956     mySelectSubMesh->setChecked(false);
1957     myIsBusy = false;
1958     onListSelectionChanged();
1959
1960   } else if (myCurrentLineEdit == myGroupLine) {
1961     //SALOME_ListIteratorOfListIO anIt (mySelectionMgr->StoredIObjects());
1962     SALOME_ListIO aList;
1963     mySelectionMgr->selectedObjects( aList );
1964
1965     SALOME_ListIteratorOfListIO anIt (aList);
1966     for ( ; anIt.More(); anIt.Next()) {
1967       SMESH::SMESH_GroupBase_var aGroup =
1968         SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(anIt.Value());
1969       if (!aGroup->_is_nil()) {
1970         // check if mesh is the same
1971         if (aGroup->GetType() == aType && aGroup->GetMesh()->GetId() == myMesh->GetId()) {
1972           SMESH::long_array_var anElements = aGroup->GetListOfID();
1973           int k = anElements->length();
1974           for (int i = 0; i < k; i++) {
1975             QString aText = QString::number(anElements[i]);
1976             QList<QListWidgetItem*> found = myElements->findItems(aText, Qt::MatchExactly);
1977             if (found.count() == 0) {
1978               anItem = new QListWidgetItem(aText);
1979               myElements->addItem(anItem);
1980               if (!anItem->isSelected())
1981                 listItemsToSel.push_back(anItem);
1982             }
1983             else {
1984               foreach(anItem, found)
1985                 if (!anItem->isSelected())
1986                   listItemsToSel.push_back(anItem);
1987             }
1988           }
1989           bool blocked = myElements->signalsBlocked();
1990           myElements->blockSignals(true);
1991           foreach(anItem, listItemsToSel) anItem->setSelected(true);
1992           myElements->blockSignals(blocked);
1993           onListSelectionChanged();
1994           listItemsToSel.clear();
1995         }
1996       }
1997     }
1998     mySelectGroup->setChecked(false);
1999     myIsBusy = false;
2000     onListSelectionChanged();
2001
2002   } else if (myCurrentLineEdit == myGeomGroupLine && myGeomObjects->length() == 1) {
2003     GEOM::GEOM_IGroupOperations_wrap aGroupOp =
2004       SMESH::GetGEOMGen()->GetIGroupOperations();
2005
2006     SMESH::ElementType aGroupType = SMESH::ALL;
2007     switch(aGroupOp->GetType(myGeomObjects[0])) {
2008     case TopAbs_VERTEX: aGroupType = SMESH::NODE; break;
2009     case TopAbs_EDGE:   aGroupType = SMESH::EDGE; break;
2010     case TopAbs_FACE:   aGroupType = SMESH::FACE; break;
2011     case TopAbs_SOLID:  aGroupType = SMESH::VOLUME; break;
2012     default: myIsBusy = false; return;
2013     }
2014
2015     if (aGroupType == aType) {
2016       _PTR(SObject) aGroupSO =
2017         //SMESH::getStudy()->FindObjectIOR(SMESH::getStudy()->ConvertObjectToIOR(myGeomGroup));
2018         SMESH::getStudy()->FindObjectID(myGeomObjects[0]->GetStudyEntry());
2019       // Construct filter
2020       SMESH::FilterManager_var aFilterMgr = SMESH::GetFilterManager();
2021       SMESH::Filter_var aFilter = aFilterMgr->CreateFilter();
2022       SMESH::BelongToGeom_var aBelongToGeom = aFilterMgr->CreateBelongToGeom();
2023       aBelongToGeom->SetGeom(myGeomObjects[0]);
2024       aBelongToGeom->SetShapeName(aGroupSO->GetName().c_str());
2025       aBelongToGeom->SetElementType(aType);
2026       aFilter->SetPredicate(aBelongToGeom);
2027
2028       SMESH::long_array_var anElements = aFilter->GetElementsId(myMesh);
2029
2030       int k = anElements->length();
2031       for (int i = 0; i < k; i++) {
2032         QString aText = QString::number(anElements[i]);
2033         QList<QListWidgetItem*> found = myElements->findItems(aText, Qt::MatchExactly);
2034         if (found.count() == 0) {
2035           anItem = new QListWidgetItem(aText);
2036           myElements->addItem(anItem);
2037           if (!anItem->isSelected())
2038             listItemsToSel.push_back(anItem);
2039         }
2040         else {
2041           foreach(anItem, found)
2042             if (!anItem->isSelected())
2043               listItemsToSel.push_back(anItem);
2044         }
2045       }
2046       bool blocked = myElements->signalsBlocked();
2047       myElements->blockSignals(true);
2048       foreach(anItem, listItemsToSel) anItem->setSelected(true);
2049       myElements->blockSignals(blocked);
2050       onListSelectionChanged();
2051       listItemsToSel.clear();
2052     }
2053
2054     //VSR: mySelectGeomGroup->setChecked(false);
2055     myIsBusy = false;
2056     onListSelectionChanged();
2057   }
2058   myIsBusy = false;
2059   if ( sizeBefore < myElements->count() )
2060     ++myNbChangesOfContents;
2061   //  mySelectionMgr->clearSelected();
2062   updateButtons();
2063 }
2064
2065 //=================================================================================
2066 // function : onRemove()
2067 // purpose  :
2068 //=================================================================================
2069 void SMESHGUI_GroupDlg::onRemove()
2070 {
2071   myIsBusy = true;
2072   int sizeBefore = myElements->count();
2073
2074   if (myCurrentLineEdit == 0) {
2075     QList<QListWidgetItem*> selItems = myElements->selectedItems();
2076     QListWidgetItem* item;
2077     foreach(item, selItems) delete item;
2078   } else {
2079     SALOME_ListIO aList;
2080     mySelectionMgr->selectedObjects( aList );
2081
2082     int aNbSel = aList.Extent();
2083
2084     if (aNbSel == 0) { myIsBusy = false; return; }
2085
2086     SMESH::ElementType aType = SMESH::ALL;
2087     switch(myTypeId) {
2088     case grpNodeSelection:   aType = SMESH::NODE;   break;
2089     case grp0DSelection:     aType = SMESH::ELEM0D; break;
2090     case grpBallSelection:   aType = SMESH::BALL;   break;
2091     case grpEdgeSelection:   aType = SMESH::EDGE;   break;
2092     case grpFaceSelection:   aType = SMESH::FACE;   break;
2093     case grpVolumeSelection: aType = SMESH::VOLUME; break;
2094     }
2095
2096     if (myCurrentLineEdit == mySubMeshLine) {
2097       //SALOME_ListIteratorOfListIO anIt (mySelectionMgr->StoredIObjects());
2098       SALOME_ListIO aList;
2099       mySelectionMgr->selectedObjects( aList );
2100
2101       SALOME_ListIteratorOfListIO anIt (aList);
2102       for ( ; anIt.More(); anIt.Next()) {
2103         SMESH::SMESH_subMesh_var aSubMesh = SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(anIt.Value());
2104         if (!aSubMesh->_is_nil()) {
2105           // check if mesh is the same
2106           if (aSubMesh->GetFather()->GetId() == myMesh->GetId()) {
2107             if (aType == SMESH::NODE) {
2108               try {
2109                 SMESH::long_array_var anElements = aSubMesh->GetNodesId();
2110                 int k = anElements->length();
2111                 for (int i = 0; i < k; i++) {
2112                   QList<QListWidgetItem*> found = 
2113                     myElements->findItems(QString::number(anElements[i]), Qt::MatchExactly);
2114                   QListWidgetItem* anItem;
2115                   foreach(anItem, found) delete anItem;
2116                 }
2117               }
2118               catch (const SALOME::SALOME_Exception& ex) {
2119                 SalomeApp_Tools::QtCatchCorbaException(ex);
2120               }
2121             }
2122             else {
2123               try {
2124                 SMESH::long_array_var anElements = aSubMesh->GetElementsId();
2125                 int k = anElements->length();
2126                 for (int i = 0; i < k; i++) {
2127                   QList<QListWidgetItem*> found = 
2128                     myElements->findItems(QString::number(anElements[i]), Qt::MatchExactly);
2129                   QListWidgetItem* anItem;
2130                   foreach(anItem, found) delete anItem;
2131                 }
2132               }
2133               catch (const SALOME::SALOME_Exception& ex) {
2134                 SalomeApp_Tools::QtCatchCorbaException(ex);
2135               }
2136             }
2137           }
2138         }
2139       }
2140     }
2141     else if (myCurrentLineEdit == myGroupLine) {
2142       SALOME_ListIO aList;
2143       mySelectionMgr->selectedObjects( aList );
2144
2145       SALOME_ListIteratorOfListIO anIt (aList);
2146       for ( ; anIt.More(); anIt.Next()) {
2147         SMESH::SMESH_Group_var aGroup = SMESH::IObjectToInterface<SMESH::SMESH_Group>(anIt.Value());
2148         if (!aGroup->_is_nil()) {
2149           // check if mesh is the same
2150           if (aGroup->GetType() == aType && aGroup->GetMesh()->GetId() == myMesh->GetId()) {
2151             SMESH::long_array_var anElements = aGroup->GetListOfID();
2152             int k = anElements->length();
2153             for (int i = 0; i < k; i++) {
2154               QList<QListWidgetItem*> found = 
2155                 myElements->findItems(QString::number(anElements[i]), Qt::MatchExactly);
2156               QListWidgetItem* anItem;
2157               foreach(anItem, found) delete anItem;
2158             }
2159           }
2160         }
2161       }
2162     }
2163   }
2164   myIsBusy = false;
2165   if ( sizeBefore > myElements->count() )
2166     myNbChangesOfContents += 2; // it's used to detect that "Add" was only once
2167   updateButtons();
2168 }
2169
2170 //=================================================================================
2171 // function : onSort()
2172 // purpose  :
2173 //=================================================================================
2174 void SMESHGUI_GroupDlg::onSort()
2175 {
2176   // PAL5412: sorts items in ascending by "string" value
2177   // myElements->sort(true);
2178   // myElements->update();
2179   int i, k = myElements->count();
2180   if (k > 0) {
2181     myIsBusy = true;
2182     QList<int> aSelected;
2183     std::vector<int> anArray(k);
2184     //    QMemArray<int> anArray(k);
2185     // fill the array
2186     for (i = 0; i < k; i++) {
2187       int id = myElements->item(i)->text().toInt();
2188       anArray[i] = id;
2189       if (myElements->item(i)->isSelected())
2190         aSelected.append(id);
2191     }
2192     // sort & update list
2193     std::sort(anArray.begin(), anArray.end());
2194     //    anArray.sort();
2195     myElements->clear();
2196     QListWidgetItem* anItem;
2197     QList<QListWidgetItem*> listItemsToSel;
2198     for (i = 0; i < k; i++) {
2199       anItem = new QListWidgetItem(QString::number(anArray[i]));
2200       myElements->addItem(anItem);
2201       if (aSelected.contains(anArray[i]))
2202         listItemsToSel.push_back(anItem);
2203     }
2204     bool blocked = myElements->signalsBlocked();
2205     myElements->blockSignals(true);
2206     foreach(anItem, listItemsToSel) anItem->setSelected(true);
2207     myElements->blockSignals(blocked);
2208     listItemsToSel.clear();
2209     myIsBusy = false;
2210   }
2211 }
2212
2213 //=================================================================================
2214 // function : onVisibilityChanged()
2215 // purpose  :
2216 //=================================================================================
2217 void SMESHGUI_GroupDlg::onVisibilityChanged()
2218 {
2219   SetAppropriateActor();
2220 }
2221
2222 //=================================================================================
2223 // function : SMESHGUI_GroupDlg::reject
2224 // purpose  : SLOT called when "Close" button pressed. Close dialog
2225 //=================================================================================
2226 void SMESHGUI_GroupDlg::reject()
2227 {
2228   if (SMESH::GetCurrentVtkView()) {
2229     SMESH::RemoveFilters(); // PAL6938 -- clean all mesh entity filters
2230     SMESH::SetPointRepresentation(false);
2231     SMESH::SetPickable();
2232     restoreShowEntityMode();
2233   }
2234
2235   if( isApplyAndClose() && !myObjectToSelect.isEmpty() ) {
2236     SUIT_DataOwnerPtrList aList;
2237     aList.append( new LightApp_DataOwner( myObjectToSelect ) );
2238     mySelectionMgr->setSelected( aList );
2239   }
2240   else
2241     mySelectionMgr->clearSelected();
2242   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
2243     aViewWindow->SetSelectionMode(ActorSelection);
2244   mySelectionMgr->clearFilters();
2245   mySMESHGUI->ResetState();
2246
2247   QDialog::reject();
2248
2249   if ( myFilterDlg ) myFilterDlg->UnRegisterFilters();
2250 }
2251
2252 //=================================================================================
2253 // function : onOpenView()
2254 // purpose  :
2255 //=================================================================================
2256 void SMESHGUI_GroupDlg::onOpenView()
2257 {
2258   if ( mySelector ) {
2259     SMESH::SetPointRepresentation(false);
2260   }
2261   else {
2262     mySelector = SMESH::GetViewWindow( mySMESHGUI )->GetSelector();
2263     mySMESHGUI->EmitSignalDeactivateDialog();
2264     setEnabled(true);
2265   }
2266 }
2267
2268 //=================================================================================
2269 // function : onCloseView()
2270 // purpose  :
2271 //=================================================================================
2272 void SMESHGUI_GroupDlg::onCloseView()
2273 {
2274   onDeactivate();
2275   mySelector = 0;
2276 }
2277
2278 //=================================================================================
2279 // function : onHelp()
2280 // purpose  :
2281 //=================================================================================
2282 void SMESHGUI_GroupDlg::onHelp()
2283 {
2284   LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
2285   if (app)
2286   {
2287     app->onHelpContextModule
2288       ( mySMESHGUI ? app->moduleName( mySMESHGUI->moduleName() ) : QString(""), myHelpFileName );
2289   }
2290   else
2291   {
2292 #ifdef WIN32
2293     QString platform = "winapplication";
2294 #else
2295     QString platform = "application";
2296 #endif
2297     SUIT_MessageBox::warning(this, tr( "WRN_WARNING" ),
2298                              tr( "EXTERNAL_BROWSER_CANNOT_SHOW_PAGE" ).
2299                              arg(app->resourceMgr()->stringValue( "ExternalBrowser", platform)).
2300                              arg(myHelpFileName));
2301   }
2302 }
2303
2304 //=================================================================================
2305 // function : SMESHGUI_GroupDlg::onDeactivate
2306 // purpose  : SLOT called when dialog must be deativated
2307 //=================================================================================
2308 void SMESHGUI_GroupDlg::onDeactivate()
2309 {
2310   mySMESHGUI->ResetState();
2311   setEnabled(false);
2312 }
2313
2314 //=================================================================================
2315 // function : SMESHGUI_GroupDlg::enterEvent
2316 // purpose  : Event filter
2317 //=================================================================================
2318 void SMESHGUI_GroupDlg::enterEvent (QEvent*)
2319 {
2320   if (!isEnabled()) {
2321     SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI );
2322     if ( aViewWindow && !mySelector) {
2323       mySelector = aViewWindow->GetSelector();
2324     }
2325     mySMESHGUI->EmitSignalDeactivateDialog();
2326     setEnabled(true);
2327     mySelectionMode = grpNoSelection;
2328     setSelectionMode(myTypeId);
2329     mySMESHGUI->SetActiveDialogBox(this);
2330     if ( mySelectBox->isEnabled() ) mySMESHGUI->SetState(800);
2331     else                            mySMESHGUI->ResetState();
2332   }
2333 }
2334
2335 //=================================================================================
2336 // function : keyPressEvent()
2337 // purpose  :
2338 //=================================================================================
2339 void SMESHGUI_GroupDlg::keyPressEvent( QKeyEvent* e )
2340 {
2341   QDialog::keyPressEvent( e );
2342   if ( e->isAccepted() )
2343     return;
2344
2345   if ( e->key() == Qt::Key_F1 )
2346   {
2347     e->accept();
2348     onHelp();
2349   }
2350 }
2351
2352 //================================================================================
2353 /*!
2354  * \brief Enable showing of the popup when Geometry selection btn is clicked
2355  * \param enable - true to enable
2356  */
2357 //================================================================================
2358
2359 enum { DIRECT_GEOM_INDEX = 0, GEOM_BY_MESH_INDEX };
2360
2361 void SMESHGUI_GroupDlg::updateGeomPopup()
2362 {
2363   bool enable = false;
2364
2365   if ( !myMesh->_is_nil() )
2366     enable = myMesh->NbEdges() > 0;
2367
2368   if ( myGeomGroupBtn )
2369   {
2370     disconnect( myGeomGroupBtn, SIGNAL( toggled(bool) ), this, SLOT( onGeomSelectionButton(bool) ));
2371     if ( enable ) {
2372       if ( !myGeomPopup ) {
2373         myGeomPopup = new QMenu(this);
2374         myActions[myGeomPopup->addAction( tr( "DIRECT_GEOM_SELECTION" ) )] = DIRECT_GEOM_INDEX;
2375         myActions[myGeomPopup->addAction( tr( "GEOM_BY_MESH_ELEM_SELECTION" ) )] = GEOM_BY_MESH_INDEX;
2376         connect( myGeomPopup, SIGNAL( triggered( QAction* ) ), SLOT( onGeomPopup( QAction* ) ) );
2377       }
2378       connect( myGeomGroupBtn, SIGNAL( toggled(bool) ), this, SLOT( onGeomSelectionButton(bool) ));
2379     }
2380   }
2381 }
2382
2383
2384 //=================================================================================
2385 // function : onGeomSelectionButton()
2386 // purpose  :
2387 //=================================================================================
2388 void SMESHGUI_GroupDlg::onGeomSelectionButton(bool isBtnOn)
2389 {
2390   if ( myGeomPopup && isBtnOn )
2391   {
2392     myCurrentLineEdit = myGeomGroupLine;
2393     QAction* a = myGeomPopup->exec( QCursor::pos() );
2394     if (!a || myActions[a] == DIRECT_GEOM_INDEX)
2395       setSelectionMode(grpGeomSelection);
2396   }
2397   else if (!isBtnOn)
2398   {
2399     myCurrentLineEdit = 0;
2400     setSelectionMode(grpAllSelection);
2401   }
2402 }
2403
2404 //=================================================================================
2405 // function : onGeomPopup()
2406 // purpose  :
2407 //=================================================================================
2408 void SMESHGUI_GroupDlg::onGeomPopup( QAction* a )
2409 {
2410   int index = myActions[a];
2411   if ( index == GEOM_BY_MESH_INDEX )
2412   {
2413     mySelectionMode = grpNoSelection;
2414     if ( !myShapeByMeshOp ) {
2415       myShapeByMeshOp = new SMESHGUI_ShapeByMeshOp(true);
2416       connect(myShapeByMeshOp, SIGNAL(committed(SUIT_Operation*)),
2417               SLOT(onPublishShapeByMeshDlg(SUIT_Operation*)));
2418       connect(myShapeByMeshOp, SIGNAL(aborted(SUIT_Operation*)),
2419               SLOT(onCloseShapeByMeshDlg(SUIT_Operation*)));
2420     }
2421     // set mesh object to SMESHGUI_ShapeByMeshOp and start it
2422     if ( !myMesh->_is_nil() ) {
2423       myIsBusy = true;
2424       hide(); // stop processing selection
2425       myIsBusy = false;
2426       myShapeByMeshOp->setModule( mySMESHGUI );
2427       myShapeByMeshOp->setStudy( 0 ); // it's really necessary
2428       myShapeByMeshOp->SetMesh( myMesh );
2429       myShapeByMeshOp->start();
2430     }
2431   }
2432 }
2433
2434 //================================================================================
2435 /*!
2436  * \brief SLOT. Is called when Ok is pressed in SMESHGUI_ShapeByMeshDlg
2437  */
2438 //================================================================================
2439
2440 void SMESHGUI_GroupDlg::onPublishShapeByMeshDlg(SUIT_Operation* op)
2441 {
2442   if ( myShapeByMeshOp == op ) {
2443     mySMESHGUI->getApp()->updateObjectBrowser();
2444     show();
2445     // Select a found geometry object
2446     GEOM::GEOM_Object_var aGeomVar = myShapeByMeshOp->GetShape();
2447     if ( !aGeomVar->_is_nil() )
2448     {
2449       QString ID = aGeomVar->GetStudyEntry();
2450       if ( _PTR(SObject) aGeomSO = SMESH::getStudy()->FindObjectID( ID.toLatin1().data() )) {
2451         SALOME_ListIO anIOList;
2452         Handle(SALOME_InteractiveObject) anIO = new SALOME_InteractiveObject
2453           ( aGeomSO->GetID().c_str(), "SMESH", aGeomSO->GetName().c_str() );
2454         anIOList.Append( anIO );
2455         mySelectionMgr->setSelectedObjects( anIOList, false );
2456         onObjectSelectionChanged();
2457       }
2458     }
2459   }
2460 }
2461
2462 //================================================================================
2463 /*!
2464  * \brief SLOT. Is called when Close is pressed in SMESHGUI_ShapeByMeshDlg
2465  */
2466 //================================================================================
2467
2468 void SMESHGUI_GroupDlg::onCloseShapeByMeshDlg(SUIT_Operation* op)
2469 {
2470   if ( myShapeByMeshOp == op )
2471   {
2472     show();
2473     setSelectionMode(grpGeomSelection);
2474   }
2475 }
2476
2477 //=================================================================================
2478 // function : setGroupColor()
2479 // purpose  :
2480 //=================================================================================
2481 void SMESHGUI_GroupDlg::setGroupColor( const SALOMEDS::Color& theColor )
2482 {
2483   QColor aQColor( (int)( theColor.R * 255.0 ),
2484                   (int)( theColor.G * 255.0 ),
2485                   (int)( theColor.B * 255.0 ) );
2486   setGroupQColor( aQColor );
2487 }
2488
2489 //=================================================================================
2490 // function : getGroupColor()
2491 // purpose  :
2492 //=================================================================================
2493 SALOMEDS::Color SMESHGUI_GroupDlg::getGroupColor() const
2494 {
2495   QColor aQColor = getGroupQColor();
2496
2497   SALOMEDS::Color aColor;
2498   aColor.R = (float)aQColor.red() / 255.0;
2499   aColor.G = (float)aQColor.green() / 255.0;
2500   aColor.B = (float)aQColor.blue() / 255.0;
2501
2502   return aColor;
2503 }
2504
2505 //=================================================================================
2506 // function : setGroupQColor()
2507 // purpose  :
2508 //=================================================================================
2509 void SMESHGUI_GroupDlg::setGroupQColor( const QColor& theColor )
2510 {
2511   if( theColor.isValid() )
2512     myColorBtn->setColor( theColor );
2513 }
2514
2515 //=================================================================================
2516 // function : getGroupQColor()
2517 // purpose  :
2518 //=================================================================================
2519 QColor SMESHGUI_GroupDlg::getGroupQColor() const
2520 {
2521   return myColorBtn->color();
2522 }
2523
2524 //=================================================================================
2525 // function : setDefaultGroupColor()
2526 // purpose  :
2527 //=================================================================================
2528 void SMESHGUI_GroupDlg::setDefaultGroupColor()
2529 {
2530   if( myMesh->_is_nil() )
2531     return;
2532
2533   bool isAutoColor = myMesh->GetAutoColor();
2534
2535   QColor aQColor = myColorBtn->color();
2536   if( !isAutoColor )
2537   {
2538     if ( !aQColor.isValid() ) {
2539       int r = 0, g = 0, b = 0;
2540       SMESH::GetColor( "SMESH", "default_grp_color", r, g, b, QColor( 255, 170, 0 ) );
2541       aQColor.setRgb( r, g, b );
2542     }
2543   }
2544   else
2545   {
2546 #ifdef SIMPLE_AUTOCOLOR   // simplified algorithm for auto-colors
2547     SALOMEDS::Color aColor = SMESHGUI::getPredefinedUniqueColor();
2548 #else                     // old algorithm  for auto-colors
2549     SMESH::ListOfGroups aListOfGroups = *myMesh->GetGroups();
2550
2551     QList<SALOMEDS::Color> aReservedColors;
2552     for( int i = 0, n = aListOfGroups.length(); i < n; i++ )
2553     {
2554       SMESH::SMESH_GroupBase_var aGroupObject = aListOfGroups[i];
2555       SALOMEDS::Color aReservedColor = aGroupObject->GetColor();
2556       aReservedColors.append( aReservedColor );
2557     }
2558
2559     SALOMEDS::Color aColor = SMESHGUI::getUniqueColor( aReservedColors );
2560 #endif                    // SIMPLE_AUTOCOLOR
2561
2562     aQColor.setRgb( (int)( aColor.R * 255.0 ),
2563                     (int)( aColor.G * 255.0 ),
2564                     (int)( aColor.B * 255.0 ) );
2565
2566   }
2567
2568   setGroupQColor( aQColor );
2569 }
2570
2571 //=================================================================================
2572 // function : SetAppropriateActor()
2573 // purpose  : Find more appropriate of visible actors, set it to myActor, allow picking
2574 //            NPAL19389: create a group with a selection in another group.
2575 //            if mesh actor is not visible - find any first visible group or sub-mesh
2576 //=================================================================================
2577 bool SMESHGUI_GroupDlg::SetAppropriateActor()
2578 {
2579   bool isActor = false;
2580   myActorsList.clear();
2581
2582   if (myMesh->_is_nil()) return false;
2583
2584   SVTK_ViewWindow* aViewWindow = SMESH::GetCurrentVtkView();
2585
2586   if (myGrpTypeGroup->checkedId() > 0) {   // try current group on geometry actor
2587     SMESH_Actor* anActor = 0;
2588     if (!myGroupOnGeom->_is_nil())
2589       anActor = SMESH::FindActorByObject(myGroupOnGeom);
2590     if (!myGroupOnFilter->_is_nil())
2591       anActor = SMESH::FindActorByObject(myGroupOnFilter);
2592     if (anActor && anActor->hasIO())
2593     {
2594       isActor = true;
2595       if (aViewWindow && !aViewWindow->isVisible(anActor->getIO()))
2596         isActor = false;
2597       else
2598         myActorsList.append(anActor);
2599     }
2600     return anActor;
2601   }
2602   else {
2603     // try mesh actor
2604     SMESH_Actor* anActor = SMESH::FindActorByObject(myMesh);
2605     if (anActor && anActor->hasIO()) {
2606       isActor = true;
2607       if (aViewWindow && !aViewWindow->isVisible(anActor->getIO()))
2608         isActor = false;
2609       else
2610         myActorsList.append(anActor);
2611     }
2612
2613     // try group actor
2614     SMESH_Actor* aGroupActor = 0;
2615     if (!isActor && !myGroup->_is_nil()) {
2616       aGroupActor = SMESH::FindActorByObject(myGroup);
2617       if (aGroupActor && aGroupActor->hasIO())
2618         myActorsList.append(aGroupActor);
2619     }
2620
2621     // try any visible actor of group or sub-mesh of current mesh
2622     if (aViewWindow) {
2623       // mesh entry
2624       _PTR(SObject) aSObject = SMESH::FindSObject(myMesh);
2625       if (aSObject) {
2626         CORBA::String_var meshEntry = aSObject->GetID().c_str();
2627         int len = strlen(meshEntry);
2628
2629         // iterate on all actors in current view window, search for
2630         // any visible actor, that belongs to group or submesh of current mesh
2631         VTK::ActorCollectionCopy aCopy(aViewWindow->getRenderer()->GetActors());
2632         vtkActorCollection *aCollection = aCopy.GetActors();
2633         int nbItems = aCollection->GetNumberOfItems();
2634         for (int i=0; i<nbItems && !isActor; i++)
2635         {
2636           SMESH_Actor *anActor = dynamic_cast<SMESH_Actor*>(aCollection->GetItemAsObject(i));
2637           if (anActor && anActor->hasIO()) {
2638             Handle(SALOME_InteractiveObject) anIO = anActor->getIO();
2639             if (aViewWindow->isVisible(anIO)) {
2640               if (anIO->hasEntry() && strncmp(anIO->getEntry(), meshEntry, len) == 0 && !myActorsList.contains(anActor) )
2641                 myActorsList.append(anActor);
2642             }
2643           }
2644         }
2645       }
2646     }
2647
2648     // Show a standalone group if nothing else is visible (IPAL52227)
2649     if ( myActorsList.count() == 1 &&
2650          myActorsList[0] == aGroupActor &&
2651          aViewWindow && !aViewWindow->isVisible(aGroupActor->getIO()))
2652       SMESH::UpdateView( aViewWindow, SMESH::eDisplay, aGroupActor->getIO()->getEntry() );
2653   }
2654
2655
2656   if (myActorsList.count() > 0) {
2657     QListIterator<SMESH_Actor*> it( myActorsList );
2658     while ( it.hasNext() ) {
2659       SMESH_Actor* anActor = it.next();
2660       if ( IsActorVisible(anActor) )
2661         anActor->SetPickable(true);
2662     }
2663   }
2664
2665   return ( isActor || (myActorsList.count() > 0) );
2666 }
2667
2668 //=======================================================================
2669 //function : setShowEntityMode
2670 //purpose  : make shown only entity corresponding to my type
2671 //=======================================================================
2672 void SMESHGUI_GroupDlg::setShowEntityMode()
2673 {
2674   if ( !myMesh->_is_nil() ) {
2675     if ( SMESH_Actor* actor = SMESH::FindActorByObject(myMesh) ) {
2676       if (!myStoredShownEntity)
2677         myStoredShownEntity = actor->GetEntityMode();
2678       switch ( myTypeId ) {
2679       case grpNodeSelection:   restoreShowEntityMode();                          break;
2680       case grp0DSelection:     actor->SetEntityMode( SMESH_Actor::e0DElements ); break;
2681       case grpBallSelection:   actor->SetEntityMode( SMESH_Actor::eBallElem );   break;
2682       case grpEdgeSelection:   actor->SetEntityMode( SMESH_Actor::eEdges );      break;
2683       case grpFaceSelection:   actor->SetEntityMode( SMESH_Actor::eFaces );      break;
2684       case grpVolumeSelection: actor->SetEntityMode( SMESH_Actor::eVolumes );    break;
2685       }
2686     }
2687   }
2688 }
2689
2690 //=======================================================================
2691 //function : restoreShowEntityMode
2692 //purpose  : restore ShowEntity mode of myActor
2693 //=======================================================================
2694 void SMESHGUI_GroupDlg::restoreShowEntityMode()
2695 {
2696   if ( myStoredShownEntity && !myMesh->_is_nil() ) {
2697     if ( SMESH_Actor* actor = SMESH::FindActorByObject(myMesh) ) {
2698       actor->SetEntityMode(myStoredShownEntity);
2699     }
2700   }
2701   myStoredShownEntity = 0;
2702 }
2703
2704 //=======================================================================
2705 //function : IsActorVisible
2706 //purpose  : return visibility of the actor
2707 //=======================================================================
2708 bool SMESHGUI_GroupDlg::IsActorVisible( SMESH_Actor* theActor )
2709 {
2710   SVTK_ViewWindow* aViewWindow = SMESH::GetCurrentVtkView();
2711   if (theActor && aViewWindow)
2712     return aViewWindow->isVisible(theActor->getIO());
2713   return false;
2714 }
2715
2716 //================================================================
2717 //function : setIsApplyAndClose
2718 //purpose  : Set value of the flag indicating that the dialog is
2719 //           accepted by Apply & Close button
2720 //================================================================
2721 void SMESHGUI_GroupDlg::setIsApplyAndClose( const bool theFlag )
2722 {
2723   myIsApplyAndClose = theFlag;
2724 }
2725
2726 //================================================================
2727 //function : isApplyAndClose
2728 //purpose  : Get value of the flag indicating that the dialog is
2729 //           accepted by Apply & Close button
2730 //================================================================
2731 bool SMESHGUI_GroupDlg::isApplyAndClose() const
2732 {
2733   return myIsApplyAndClose;
2734 }