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