Salome HOME
fix regression of smesh/3D_mesh_Polyhedrons/A2
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Selection.cxx
1 // Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // SMESH SMESHGUI_Selection
24 // File   : SMESHGUI_Selection.cxx
25 // Author : Alexander SOLOVYOV, Open CASCADE S.A.S.
26 // SMESH includes
27 //
28 #include "SMESHGUI_Selection.h"
29
30 #include "SMESHGUI_Utils.h"
31 #include "SMESHGUI_VTKUtils.h"
32 #include "SMESHGUI_GEOMGenUtils.h"
33 #include "SMESHGUI_ComputeDlg.h"
34
35 #include <SMESH_Type.h>
36 #include <SMESH_Actor.h>
37 #include <SMESH_ScalarBarActor.h>
38
39 // SALOME GUI includes
40 #include <SalomeApp_Study.h>
41 #include <LightApp_VTKSelector.h>
42 #include <SVTK_ViewWindow.h>
43
44 // IDL includes
45 #include <SALOMEconfig.h>
46 #include CORBA_CLIENT_HEADER(SMESH_Gen)
47 #include CORBA_CLIENT_HEADER(SMESH_Mesh)
48 #include CORBA_CLIENT_HEADER(SMESH_Group)
49
50 //=======================================================================
51 //function : SMESHGUI_Selection
52 //purpose  : 
53 //=======================================================================
54 SMESHGUI_Selection::SMESHGUI_Selection()
55 : LightApp_Selection()
56 {
57 }
58
59 //=======================================================================
60 //function : ~SMESHGUI_Selection
61 //purpose  : 
62 //=======================================================================
63 SMESHGUI_Selection::~SMESHGUI_Selection()
64 {
65 }
66
67 //=======================================================================
68 //function : init
69 //purpose  : 
70 //=======================================================================
71 void SMESHGUI_Selection::init( const QString& client, LightApp_SelectionMgr* mgr )
72 {
73   LightApp_Selection::init( client, mgr );
74
75   if( mgr && study() )
76   {
77     SalomeApp_Study* aSStudy = dynamic_cast<SalomeApp_Study*>(study());
78     if (!aSStudy)
79       return;
80     _PTR(Study) aStudy = aSStudy->studyDS();
81
82     for( int i=0, n=count(); i<n; i++ )
83       myTypes.append( typeName( type( entry( i ), aStudy ) ) );
84   }
85 }
86
87 //=======================================================================
88 //function : processOwner
89 //purpose  : 
90 //=======================================================================
91 bool SMESHGUI_Selection::processOwner( const LightApp_DataOwner* ow )
92 {
93   const LightApp_SVTKDataOwner* owner =
94     dynamic_cast<const LightApp_SVTKDataOwner*> ( ow );
95   if( owner )
96     myActors.append( dynamic_cast<SMESH_Actor*>( owner->GetActor() ) );
97   else
98     myActors.append( 0 );
99   return true;
100 }
101
102 //=======================================================================
103 //function : parameter
104 //purpose  : 
105 //=======================================================================
106 QVariant SMESHGUI_Selection::parameter( const int ind, const QString& p ) const
107 {
108   QVariant val;
109   if      ( p=="client" )        val = QVariant( LightApp_Selection::parameter( p ) );
110   else if ( p=="type" )          val = QVariant( myTypes[ind] );
111   else if ( p=="elemTypes" )     val = QVariant( elemTypes( ind ) );
112   else if ( p=="isAutoColor" )   val = QVariant( isAutoColor( ind ) );
113   else if ( p=="numberOfNodes" ) val = QVariant( numberOfNodes( ind ) );
114   else if ( p=="dim" )           val = QVariant( dim( ind ) );
115   else if ( p=="labeledTypes" )  val = QVariant( labeledTypes( ind ) );
116   else if ( p=="shrinkMode" )    val = QVariant( shrinkMode( ind ) );
117   else if ( p=="entityMode" )    val = QVariant( entityMode( ind ) );
118   else if ( p=="controlMode" )   val = QVariant( controlMode( ind ) );
119   else if ( p=="isNumFunctor" )  val = QVariant( isNumFunctor( ind ) );
120   else if ( p=="displayMode" )   val = QVariant( displayMode( ind ) );
121   else if ( p=="isComputable" )  val = QVariant( isComputable( ind ) );
122   else if ( p=="isPreComputable" )  val = QVariant( isPreComputable( ind ) );
123   else if ( p=="hasReference" )  val = QVariant( hasReference( ind ) );
124   else if ( p=="isImported" )    val = QVariant( isImported( ind ) );
125   else if ( p=="facesOrientationMode" ) val = QVariant( facesOrientationMode( ind ) );
126   else if ( p=="groupType" )     val = QVariant( groupType( ind ) );
127   else if ( p=="quadratic2DMode") val =  QVariant(quadratic2DMode(ind));
128   else if ( p=="isDistributionVisible") val = QVariant(isDistributionVisible(ind));
129
130   if( val.isValid() )
131     return val;
132   else
133     return LightApp_Selection::parameter( ind, p );
134 }
135
136 //=======================================================================
137 //function : getVtkOwner
138 //purpose  : 
139 //=======================================================================
140
141 SMESH_Actor* SMESHGUI_Selection::getActor( int ind ) const
142 {
143   if( ind >= 0 && ind < count() )
144     return myActors.isEmpty() ? 0 : myActors.at( ind );
145   else
146     return 0;
147 }
148
149 //=======================================================================
150 //function : elemTypes
151 //purpose  : may return {'Elem0d' 'Edge' 'Face' 'Volume'} at most
152 //=======================================================================
153
154 QList<QVariant> SMESHGUI_Selection::elemTypes( int ind ) const
155 {
156   QList<QVariant> types;
157   SMESH_Actor* actor = getActor( ind );
158   if ( actor ) {
159     TVisualObjPtr object = actor->GetObject();
160     if ( object ) {
161       if ( object->GetNbEntities( SMDSAbs_0DElement )) types.append( "Elem0d" );
162       if ( object->GetNbEntities( SMDSAbs_Edge )) types.append( "Edge" );
163       if ( object->GetNbEntities( SMDSAbs_Face )) types.append( "Face" );
164       if ( object->GetNbEntities( SMDSAbs_Volume )) types.append( "Volume" );
165     }
166   }
167   return types;
168 }
169
170 //=======================================================================
171 //function : labeledTypes
172 //purpose  : may return {'Point' 'Cell'} at most
173 //=======================================================================
174
175 QList<QVariant> SMESHGUI_Selection::labeledTypes( int ind ) const
176 {
177   QList<QVariant> types;
178   SMESH_Actor* actor = getActor( ind );
179   if ( actor ) {
180     if ( actor->GetPointsLabeled()) types.append( "Point" );
181     if ( actor->GetCellsLabeled()) types.append( "Cell" );
182   }
183   return types;
184 }
185
186 //=======================================================================
187 //function : displayMode
188 //purpose  : return SMESH_Actor::EReperesent
189 //=======================================================================
190
191 QString SMESHGUI_Selection::displayMode( int ind ) const
192 {
193   SMESH_Actor* actor = getActor( ind );
194   if ( actor ) {
195     switch( actor->GetRepresentation() ) {
196     case SMESH_Actor::eEdge:    return "eEdge";
197     case SMESH_Actor::eSurface: return "eSurface";
198     case SMESH_Actor::ePoint:   return "ePoint";
199     default: break;
200     }
201   }
202   return "Unknown";
203 }
204
205
206 //=======================================================================
207 //function : quadratic2DMode
208 //purpose  : return SMESH_Actor::EQuadratic2DRepresentation
209 //=======================================================================
210 QString SMESHGUI_Selection::quadratic2DMode( int ind ) const
211 {
212   SMESH_Actor* actor = getActor( ind );
213   if ( actor ) {
214     switch( actor->GetQuadratic2DRepresentation() ) {
215     case SMESH_Actor::eLines:    return "eLines";
216     case SMESH_Actor::eArcs: return "eArcs";
217     default: break;
218     }
219   }
220   return "Unknown";
221 }
222
223 //=======================================================================
224 //function : isDistributionVisible
225 //purpose  : Visible/Invisible distribution of the ScalarBar Actor
226 //=======================================================================
227
228 bool SMESHGUI_Selection::isDistributionVisible(int ind) const {
229   SMESH_Actor* actor = getActor( ind );
230   return (actor && actor->GetScalarBarActor() && actor->GetScalarBarActor()->GetDistributionVisibility());
231
232
233 //=======================================================================
234 //function : shrinkMode
235 //purpose  : return either 'IsSrunk', 'IsNotShrunk' or 'IsNotShrinkable'
236 //=======================================================================
237
238 QString SMESHGUI_Selection::shrinkMode( int ind ) const
239 {
240   SMESH_Actor* actor = getActor( ind );
241   if ( actor && actor->IsShrunkable() ) {
242     if ( actor->IsShrunk() )
243       return "IsShrunk";
244     return "IsNotShrunk";
245   }
246   return "IsNotShrinkable";
247 }
248
249 //=======================================================================
250 //function : entityMode
251 //purpose  : may return {'Elem0d' 'Edge' 'Face' 'Volume'} at most
252 //=======================================================================
253
254 QList<QVariant> SMESHGUI_Selection::entityMode( int ind ) const
255 {
256   QList<QVariant> types;
257   SMESH_Actor* actor = getActor( ind );
258   if ( actor ) {
259     unsigned int aMode = actor->GetEntityMode();
260     if ( aMode & SMESH_Actor::eVolumes    ) types.append( "Volume" );
261     if ( aMode & SMESH_Actor::eFaces      ) types.append( "Face"   );
262     if ( aMode & SMESH_Actor::eEdges      ) types.append( "Edge"   );
263     if ( aMode & SMESH_Actor::e0DElements ) types.append( "Elem0d" );
264   }
265   return types;
266 }
267
268 //=======================================================================
269 //function : controlMode
270 //purpose  : return SMESH_Actor::eControl
271 //=======================================================================
272
273 QString SMESHGUI_Selection::controlMode( int ind ) const
274 {
275   SMESH_Actor* actor = getActor( ind );
276   QString mode = "eNone";
277   if ( actor ) {
278     switch( actor->GetControlMode() ) {
279     case SMESH_Actor::eLength:                mode = "eLength";                break;
280     case SMESH_Actor::eLength2D:              mode = "eLength2D";              break;
281     case SMESH_Actor::eFreeEdges:             mode = "eFreeEdges";             break;
282     case SMESH_Actor::eFreeNodes:             mode = "eFreeNodes";             break;
283     case SMESH_Actor::eFreeBorders:           mode = "eFreeBorders";           break;
284     case SMESH_Actor::eFreeFaces:             mode = "eFreeFaces";             break;
285     case SMESH_Actor::eMultiConnection:       mode = "eMultiConnection";       break;
286     case SMESH_Actor::eMultiConnection2D:     mode = "eMultiConnection2D";     break;
287     case SMESH_Actor::eArea:                  mode = "eArea";                  break;
288     case SMESH_Actor::eVolume3D:              mode = "eVolume3D";              break;
289     case SMESH_Actor::eMaxElementLength2D:    mode = "eMaxElementLength2D";    break;
290     case SMESH_Actor::eMaxElementLength3D:    mode = "eMaxElementLength3D";    break;
291     case SMESH_Actor::eTaper:                 mode = "eTaper";                 break;
292     case SMESH_Actor::eAspectRatio:           mode = "eAspectRatio";           break;
293     case SMESH_Actor::eAspectRatio3D:         mode = "eAspectRatio3D";         break;
294     case SMESH_Actor::eMinimumAngle:          mode = "eMinimumAngle";          break;
295     case SMESH_Actor::eWarping:               mode = "eWarping";               break;
296     case SMESH_Actor::eSkew:                  mode = "eSkew";                  break;
297     case SMESH_Actor::eBareBorderFace:        mode = "eBareBorderFace";        break;
298     case SMESH_Actor::eBareBorderVolume:      mode = "eBareBorderVolume";      break;
299     case SMESH_Actor::eOverConstrainedFace:   mode = "eOverConstrainedFace";   break;
300     case SMESH_Actor::eOverConstrainedVolume: mode = "eOverConstrainedVolume"; break;
301     default:break;
302     }
303   }
304   return mode;
305 }
306
307 bool SMESHGUI_Selection::isNumFunctor( int ind ) const
308 {
309   bool result = false;
310   SMESH_Actor* actor = getActor( ind );
311   if ( actor ) {
312     switch( actor->GetControlMode() ) {
313     case SMESH_Actor::eLength:
314     case SMESH_Actor::eLength2D:
315     case SMESH_Actor::eMultiConnection:
316     case SMESH_Actor::eMultiConnection2D:
317     case SMESH_Actor::eArea:
318     case SMESH_Actor::eVolume3D:
319     case SMESH_Actor::eMaxElementLength2D:
320     case SMESH_Actor::eMaxElementLength3D:
321     case SMESH_Actor::eTaper:
322     case SMESH_Actor::eAspectRatio:
323     case SMESH_Actor::eAspectRatio3D:
324     case SMESH_Actor::eMinimumAngle:
325     case SMESH_Actor::eWarping:
326     case SMESH_Actor::eSkew:
327       result = true;
328       break;
329     default:
330       break;
331     }
332   }
333   return result;
334 }
335
336 //=======================================================================
337 //function : facesOrientationMode
338 //purpose  : 
339 //=======================================================================
340
341 QString SMESHGUI_Selection::facesOrientationMode( int ind ) const
342 {
343   SMESH_Actor* actor = getActor( ind );
344   if ( actor ) {
345     if ( actor->GetFacesOriented() )
346       return "IsOriented";
347     return "IsNotOriented";
348   }
349   return "Unknown";
350 }
351
352 //=======================================================================
353 //function : isAutoColor
354 //purpose  : 
355 //=======================================================================
356
357 bool SMESHGUI_Selection::isAutoColor( int ind ) const
358 {
359   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
360   {
361     _PTR(SObject) sobj = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().data() );
362     CORBA::Object_var obj = SMESH::SObjectToObject( sobj, SMESH::GetActiveStudyDocument() );
363
364     if ( ! CORBA::is_nil( obj )) {
365       SMESH::SMESH_Mesh_var mesh = SMESH::SMESH_Mesh::_narrow( obj );
366       if ( ! mesh->_is_nil() )
367         return mesh->GetAutoColor();
368     }
369   }
370   return false;
371 }
372
373 //=======================================================================
374 //function : numberOfNodes
375 //purpose  : 
376 //=======================================================================
377
378 int SMESHGUI_Selection::numberOfNodes( int ind ) const
379 {
380   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
381   {
382     _PTR(SObject) sobj = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().data() );
383     CORBA::Object_var obj = SMESH::SObjectToObject( sobj, SMESH::GetActiveStudyDocument() );
384
385     if ( ! CORBA::is_nil( obj )) {
386       SMESH::SMESH_Mesh_var mesh = SMESH::SMESH_Mesh::_narrow( obj );
387       if ( ! mesh->_is_nil() )
388         return mesh->NbNodes();
389       SMESH::SMESH_subMesh_var aSubMeshObj = SMESH::SMESH_subMesh::_narrow( obj );
390       if ( !aSubMeshObj->_is_nil() )
391         return aSubMeshObj->GetNumberOfNodes(true);
392       SMESH::SMESH_GroupBase_var aGroupObj = SMESH::SMESH_GroupBase::_narrow( obj );
393       if ( !aGroupObj->_is_nil() )
394         return aGroupObj->Size();
395     }
396   }
397   return 0;
398 }
399
400 //================================================================================
401 /*!
402  * \brief return dimension of elements of the selected object
403  *
404  *  \retval int - 0 for 0D elements, -1 for an empty object (the rest as usual)
405  */
406 //================================================================================
407
408 int SMESHGUI_Selection::dim( int ind ) const
409 {
410   int dim = -1;
411   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
412   {
413     _PTR(SObject) sobj = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().data() );
414     CORBA::Object_var obj = SMESH::SObjectToObject( sobj, SMESH::GetActiveStudyDocument() );
415
416     if ( ! CORBA::is_nil( obj )) {
417       SMESH::SMESH_IDSource_var idSrc = SMESH::SMESH_IDSource::_narrow( obj );
418       if ( ! idSrc->_is_nil() )
419       {
420         SMESH::array_of_ElementType_var types = idSrc->GetTypes();
421         for ( int i = 0; i < types->length(); ++ i)
422           switch ( types[i] ) {
423           case SMESH::EDGE  : dim = std::max( dim, 1 ); break;
424           case SMESH::FACE  : dim = std::max( dim, 2 ); break;
425           case SMESH::VOLUME: dim = std::max( dim, 3 ); break;
426           case SMESH::ELEM0D: dim = std::max( dim, 0 ); break;
427           default:;
428           }
429       }
430     }
431   }
432   return dim;
433 }
434
435 //=======================================================================
436 //function : isComputable
437 //purpose  : 
438 //=======================================================================
439
440 QVariant SMESHGUI_Selection::isComputable( int ind ) const
441 {
442   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
443   {
444 /*    Handle(SALOME_InteractiveObject) io =
445       static_cast<LightApp_DataOwner*>( myDataOwners[ ind ].get() )->IO();
446     if ( !io.IsNull() ) {
447       SMESH::SMESH_Mesh_var mesh = SMESH::GetMeshByIO(io); // m,sm,gr->m
448       if ( !mesh->_is_nil() ) {*/
449         _PTR(SObject) so = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().data() );
450         //FindSObject( mesh );
451         if ( so ) {
452           CORBA::Object_var obj = SMESH::SObjectToObject(so, SMESH::GetActiveStudyDocument());
453           if(!CORBA::is_nil(obj)){
454             SMESH::SMESH_Mesh_var mesh = SMESH::SMESH_Mesh::_narrow( obj );
455             if (!mesh->_is_nil()){
456               if(mesh->HasShapeToMesh()) {
457                 GEOM::GEOM_Object_var shape = SMESH::GetShapeOnMeshOrSubMesh( so );
458                 return QVariant( !shape->_is_nil() );
459               }
460               else
461               {
462                 return QVariant(!mesh->NbFaces()==0);
463               }
464             }
465             else
466             {
467               GEOM::GEOM_Object_var shape = SMESH::GetShapeOnMeshOrSubMesh( so );
468               return QVariant( !shape->_is_nil() );
469             }
470           }
471         }
472 //      }
473 //    }
474   }
475   return QVariant( false );
476 }
477
478 //=======================================================================
479 //function : isPreComputable
480 //purpose  : 
481 //=======================================================================
482
483 QVariant SMESHGUI_Selection::isPreComputable( int ind ) const
484 {
485   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
486   {
487     QMap<int,int> modeMap;
488     _PTR(SObject) pMesh = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().data() );
489     SMESHGUI_PrecomputeOp::getAssignedAlgos( pMesh, modeMap );
490     return QVariant( modeMap.size() > 1 );
491   }
492   return QVariant( false );
493 }
494
495 //=======================================================================
496 //function : hasReference
497 //purpose  : 
498 //=======================================================================
499
500 QVariant SMESHGUI_Selection::hasReference( int ind ) const
501 {
502   return QVariant( isReference( ind ) );
503 }
504
505 //=======================================================================
506 //function : isVisible
507 //purpose  : 
508 //=======================================================================
509
510 QVariant SMESHGUI_Selection::isVisible( int ind ) const
511 {
512   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
513   {
514     QString ent = entry( ind );
515     SMESH_Actor* actor = SMESH::FindActorByEntry( ent.toLatin1().data() );
516     if ( actor && actor->hasIO() ) {
517       if(SVTK_ViewWindow* aViewWindow = SMESH::GetCurrentVtkView())
518         return QVariant( aViewWindow->isVisible( actor->getIO() ) );
519     }
520   }
521   return QVariant( false );
522 }
523
524 //=======================================================================
525 //function : type
526 //purpose  : 
527 //=======================================================================
528
529 int SMESHGUI_Selection::type( const QString& entry, _PTR(Study) study )
530 {
531   _PTR(SObject) obj (study->FindObjectID(entry.toLatin1().data()));
532   if( !obj )
533     return -1;
534
535   _PTR(SObject) ref;
536   if( obj->ReferencedObject( ref ) )
537     obj = ref;
538
539   _PTR(SObject) objFather = obj->GetFather();
540   _PTR(SComponent) objComponent = obj->GetFatherComponent();
541
542   if( objComponent->ComponentDataType()!="SMESH" )
543     return -1;
544
545   if( objComponent->GetIOR()==obj->GetIOR() )
546     return COMPONENT;
547
548   int aLevel = obj->Depth() - objComponent->Depth(),
549       aFTag = objFather->Tag(),
550       anOTag = obj->Tag(),
551       res = -1;
552
553   switch (aLevel)
554   {
555   case 1:
556     if (anOTag >= SMESH::Tag_FirstMeshRoot)
557       res = MESH;
558     break;
559   case 2:
560     switch (aFTag)
561     {
562     case SMESH::Tag_HypothesisRoot:
563       res = HYPOTHESIS;
564       break;
565     case SMESH::Tag_AlgorithmsRoot:
566       res = ALGORITHM;
567       break;
568     }
569     break;
570   case 3:
571     switch (aFTag)
572     {
573     case SMESH::Tag_SubMeshOnVertex:
574       res = SUBMESH_VERTEX;
575       break;
576     case SMESH::Tag_SubMeshOnEdge:
577       res = SUBMESH_EDGE;
578       break;
579     case SMESH::Tag_SubMeshOnFace:
580       res = SUBMESH_FACE;
581       break;
582     case SMESH::Tag_SubMeshOnSolid:
583       res = SUBMESH_SOLID;
584       break;
585     case SMESH::Tag_SubMeshOnCompound:
586       res = SUBMESH_COMPOUND;
587       break;
588     default:
589       if (aFTag >= SMESH::Tag_FirstGroup)
590         res = GROUP;
591       else
592         res = SUBMESH;
593     }
594     break;
595   }
596
597   return res;
598 }
599
600 //=======================================================================
601 //function : typeName
602 //purpose  : 
603 //=======================================================================
604
605 QString SMESHGUI_Selection::typeName( const int t )
606 {
607   switch( t )
608   {
609   case HYPOTHESIS:
610     return "Hypothesis";
611   case ALGORITHM:
612     return "Algorithm";
613   case MESH:
614     return "Mesh";
615   case SUBMESH:
616     return "SubMesh";
617   case MESHorSUBMESH:
618     return "Mesh or submesh";
619   case SUBMESH_VERTEX:
620     return "Mesh vertex";
621   case SUBMESH_EDGE:
622     return "Mesh edge";
623   case SUBMESH_FACE:
624     return "Mesh face";
625   case SUBMESH_SOLID:
626     return "Mesh solid";
627   case SUBMESH_COMPOUND:
628     return "Mesh compound";
629   case GROUP:
630     return "Group";
631   case COMPONENT:
632     return "Component";
633   default:
634     return "Unknown";
635   }
636 }
637
638 bool SMESHGUI_Selection::isImported( const int ind ) const
639 {
640   QString e = entry( ind );
641   _PTR(SObject) SO = SMESH::GetActiveStudyDocument()->FindObjectID( e.toLatin1().constData() );
642   bool res = false;
643   if( SO )
644   {
645     SMESH::SMESH_Mesh_var aMesh = SMESH::SMESH_Mesh::_narrow( SMESH::SObjectToObject( SO ) );
646     if( !aMesh->_is_nil() )
647     {
648       SALOME_MED::MedFileInfo* inf = aMesh->GetMEDFileInfo();
649       res = strlen( (char*)inf->fileName ) > 0;
650     }
651   }
652   return res;
653 }
654
655 //=======================================================================
656 //function : groupType
657 //purpose  : 
658 //=======================================================================
659
660 QString SMESHGUI_Selection::groupType( int ind ) const
661 {
662   QString e = entry( ind );
663   _PTR(SObject) SO = SMESH::GetActiveStudyDocument()->FindObjectID( e.toLatin1().constData() );
664   QString type;
665   if( SO )
666   {
667     CORBA::Object_var obj = SMESH::SObjectToObject( SO );
668   
669     SMESH::SMESH_Group_var aGroup = SMESH::SMESH_Group::_narrow( obj );
670     SMESH::SMESH_GroupOnGeom_var aGroupOnGeom = SMESH::SMESH_GroupOnGeom::_narrow( obj );
671     if( !aGroup->_is_nil() )
672       type = QString( "Group" );
673     else if ( !aGroupOnGeom->_is_nil() )
674       type = QString( "GroupOnGeom" );
675   }
676   return type;
677 }