Salome HOME
Copyright update 2022
[modules/geom.git] / src / GEOMGUI / GEOMGUI_Selection.cxx
index 0aa1da20ae232d6838bdd125d459acbe79f4c308..2b11f63fe45d3b8a79362297d92d95920854aa63 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -6,7 +6,7 @@
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
 // File   : GEOMGUI_Selection.cxx
 // Author : Alexander SOLOVYOV, Open CASCADE S.A.S. (alexander.solovyov@opencascade.com)
 
 #include "GEOMGUI_Selection.h"
+#include <GEOMGUI_DimensionProperty.h>
+#include <GEOMGUI_AnnotationAttrs.h>
+#include <GEOMGUI_AnnotationMgr.h>
 
 #include "GeometryGUI.h"
 #include "GEOM_Displayer.h"
@@ -40,6 +44,7 @@
 #include <SUIT_Desktop.h>
 #include <SUIT_ViewWindow.h>
 #include <SUIT_ViewManager.h>
+#include <SUIT_ResourceMgr.h>
 
 #include <SALOME_Prs.h>
 #include <SALOME_InteractiveObject.hxx>
@@ -62,7 +67,6 @@
 #include <AIS_InteractiveObject.hxx>
 #include <AIS_ListOfInteractive.hxx>
 #include <AIS_GraphicTool.hxx>
-#include <AIS_Drawer.hxx>
 #include <Aspect_TypeOfFacingModel.hxx>
 #include <Prs3d_ShadingAspect.hxx>
 #include<Graphic3d_MaterialAspect.hxx>
     else \
       str = QString(); }
 
-#define VTK_DISPLAY_MODE_TO_STRING( str, dm ) { \
-    if ( dm == 0 ) \
-      str = QString( "Wireframe" ); \
-    else if ( dm == 1 )    \
-      str = QString( "Shading" ); \
-    else if ( dm == 3 )    \
-      str = QString( "ShadingWithEdges" ); \
-    else \
-      str = QString(); }
-
 #define USE_VISUAL_PROP_MAP
 
+#ifdef USE_VISUAL_PROP_MAP
+  #define VTK_DISPLAY_MODE_TO_STRING( str, dm ) { \
+      if ( dm == 0 ) \
+        str = QString( "Wireframe" ); \
+      else if ( dm == 1 )    \
+        str = QString( "Shading" ); \
+      else if ( dm == 2 )    \
+        str = QString( "ShadingWithEdges" ); \
+      else \
+        str = QString(); }
+#else
+  #define VTK_DISPLAY_MODE_TO_STRING( str, dm ) { \
+      if ( dm == 0 ) \
+        str = QString( "Wireframe" ); \
+      else if ( dm == 1 )    \
+        str = QString( "Shading" ); \
+      else if ( dm == 3 )    \
+        str = QString( "ShadingWithEdges" ); \
+      else \
+        str = QString(); }
+#endif
+
 GEOMGUI_Selection::GEOMGUI_Selection()
 : LightApp_Selection()
 {
@@ -115,11 +131,11 @@ void GEOMGUI_Selection::init( const QString& context, LightApp_SelectionMgr* sel
     for ( int idx = 0; idx < count(); idx++ ) {
       QString anEntry = entry( idx );
       if ( study && !anEntry.isEmpty() ) {
-       _PTR(SObject) aSO( study->FindObjectID( anEntry.toStdString() ) );
-       if ( aSO ) {
-         CORBA::Object_var varObj = GeometryGUI::ClientSObjectToObject( aSO );
-         myObjects[idx] = GEOM::GEOM_Object::_narrow( varObj );
-       }
+        _PTR(SObject) aSO( study->FindObjectID( anEntry.toStdString() ) );
+        if ( GeometryGUI::IsInGeomComponent( aSO )) {
+          CORBA::Object_var varObj = GeometryGUI::ClientSObjectToObject( aSO );
+          myObjects[idx] = GEOM::GEOM_BaseObject::_narrow( varObj );
+        }
       }
     }
   }
@@ -137,6 +153,8 @@ QVariant GEOMGUI_Selection::parameter( const QString& p ) const
     v = hasImported();
   else if ( p == "allImported" )
     v = allImported();
+  else if (p == "annotationsCount")
+    v = annotationsCount();
   else
     v = LightApp_Selection::parameter( p );
   return v;
@@ -156,10 +174,18 @@ QVariant GEOMGUI_Selection::parameter( const int idx, const QString& p ) const
     v = isAutoColor( idx );
   else if ( p == "isVectorsMode" )
     v = isVectorsMode( idx );
+  else if ( p == "isVerticesMode" )
+    v = isVerticesMode( idx );
+  else if ( p == "isNameMode" )
+    v = isNameMode( idx );
   else if ( p == "topLevel" )
     v = topLevel( idx );
+  else if ( p == "autoBringToFront" )
+    v = autoBringToFront( idx );
   else if ( p == "hasChildren" )
     v = hasChildren( idx );
+  else if ( p == "nbChildren" )
+    v = nbChildren(idx);
   else if ( p == "hasConcealedChildren" )
     v = hasConcealedChildren( idx );
   else if ( p == "hasDisclosedChildren" )
@@ -170,6 +196,18 @@ QVariant GEOMGUI_Selection::parameter( const int idx, const QString& p ) const
     v = isImported( idx );
   else if ( p == "isPhysicalMaterial" )
     v = isPhysicalMaterial(idx);
+  else if ( p == "isFolder" )
+    v = isFolder(idx);
+  else if ( p == "hasHiddenDimensions" )
+    v = hasHiddenDimensions(idx);
+  else if ( p == "hasVisibleDimensions" )
+    v = hasVisibleDimensions(idx);
+  else if ( p == "hasHiddenAnnotations" )
+    v = hasHiddenAnnotations(idx);
+  else if ( p == "hasVisibleAnnotations" )
+    v = hasVisibleAnnotations(idx);
+  else if ( p == "matMenu" )
+    v = SUIT_Session::session()->resourceMgr()->booleanValue( "Geometry", "predef_materials", false );
   else
     v = LightApp_Selection::parameter( idx, p );
 
@@ -179,6 +217,9 @@ QVariant GEOMGUI_Selection::parameter( const int idx, const QString& p ) const
 // the method to skip temporary objects from selection (called from LightApp)
 bool GEOMGUI_Selection::processOwner( const LightApp_DataOwner* theOwner )
 {
+  if ( theOwner->entry().contains( GEOMGUI_AnnotationMgr::GetEntrySeparator() ) ) {
+    myAnnotationEntries.append( theOwner->entry() );
+  }
   return !theOwner->entry().contains("_");
 }
 
@@ -186,18 +227,24 @@ QString GEOMGUI_Selection::typeName( const int index ) const
 {
   if ( isComponent( index ) )
     return "Component";
+  if ( isFolder( index ) )
+    return "Folder";
 
   static QString aGroup( "Group" );
   static QString aShape( "Shape" );
+  static QString aField( "Field" );
+  static QString aFieldStep( "FieldStep" );
   static QString anUnknown( "Unknown" );
 
-  GEOM::GEOM_Object_var anObj = getObject( index );
+  GEOM::GEOM_BaseObject_var anObj = getBaseObject( index );
   if ( !CORBA::is_nil( anObj ) ) {
     const int aGeomType = anObj->GetType();
-    if ( aGeomType == GEOM_GROUP )
-      return aGroup;
-    else
-      return aShape;
+    switch ( aGeomType ) {
+    case GEOM_GROUP     : return aGroup;
+    case GEOM_FIELD     : return aField;
+    case GEOM_FIELD_STEP: return aFieldStep;
+    default             : return aShape;
+    }
   }
   return anUnknown;
 }
@@ -213,27 +260,20 @@ int GEOMGUI_Selection::typeId( const int index ) const
 
 bool GEOMGUI_Selection::isVisible( const int index ) const
 {
-  bool res = false;
-
 #ifdef USE_VISUAL_PROP_MAP
-  bool found = false;
-  QVariant v = visibleProperty( entry( index ), VISIBILITY_PROP );
-  if ( v.canConvert( QVariant::Bool ) ) {
-    res = v.toBool();
-    found = true;
-  }
-
-  if ( !found ) {
+  QVariant v = visibleProperty( entry( index ), GEOM::propertyName( GEOM::Visibility ) );
+  if ( v.canConvert( QVariant::Bool ) )
+    return v.toBool();
 #endif
-    GEOM::GEOM_Object_var obj = getObject( index );
-    SALOME_View* view = GEOM_Displayer::GetActiveView();
-    if ( !CORBA::is_nil( obj ) && view ) {
-      Handle(SALOME_InteractiveObject) io = new SALOME_InteractiveObject( entry( index ).toLatin1().constData(), "GEOM", "TEMP_IO" );
-      res = view->isVisible( io );
-    }
-#ifdef USE_VISUAL_PROP_MAP
+
+  bool res = false;
+
+  GEOM::GEOM_Object_var obj = getObject( index );
+  SALOME_View* view = GEOM_Displayer::GetActiveView();
+  if ( !CORBA::is_nil( obj ) && view ) {
+    Handle(SALOME_InteractiveObject) io = new SALOME_InteractiveObject( entry( index ).toUtf8().constData(), "GEOM", "TEMP_IO" );
+    res = view->isVisible( io );
   }
-#endif
 
   return res;
 }
@@ -248,10 +288,28 @@ bool GEOMGUI_Selection::isAutoColor( const int index ) const
 
 bool GEOMGUI_Selection::isImported( const int index ) const
 {
+  bool result = false;
   GEOM::GEOM_Object_var obj = getObject( index );
-  if ( !CORBA::is_nil( obj ) )
-    return obj->GetType() == GEOM_IMPORT;
-  return false;
+  if ( !CORBA::is_nil( obj ) && obj->GetType() == GEOM_IMPORT )
+  {
+    QString fileName;
+    GEOM::CreationInformationSeq_var info = obj->GetCreationInformation();
+    if ( info->length() > 0 )
+    {
+      for ( uint i = 0, nb = info->length(); i < nb; ++i )
+      {
+        GEOM::CreationInformation iInfo = info[i];
+        for ( uint j = 0; j < iInfo.params.length(); ++j )
+        {
+          QString param = (char*)(CORBA::String_var)(iInfo.params[j].name);
+          if ( param == "File name" )
+            fileName = (char*)(CORBA::String_var)(iInfo.params[j].value);
+        }
+      }
+    }
+    result = !fileName.isEmpty() && !fileName.toLower().endsWith(".xao");
+  }
+  return result;
 }
 
 bool GEOMGUI_Selection::hasImported() const
@@ -288,8 +346,9 @@ QString GEOMGUI_Selection::displayMode( const int index ) const
 {
   QString res;
   QString viewType = activeViewType();
+  
 #ifdef USE_VISUAL_PROP_MAP
-  QVariant v = visibleProperty( entry( index ), DISPLAY_MODE_PROP );
+  QVariant v = visibleProperty( entry( index ), GEOM::propertyName( GEOM::DisplayMode ) );
   if ( v.canConvert( QVariant::Int ) ) {
     int dm = v.toInt();
     if ( viewType == OCCViewer_Viewer::Type() ) {
@@ -297,132 +356,210 @@ QString GEOMGUI_Selection::displayMode( const int index ) const
     } else if ( viewType == SVTK_Viewer::Type() ) {
       VTK_DISPLAY_MODE_TO_STRING( res, dm );
     }
+    return res;
   }
-
-  if ( res.isEmpty() ) {
 #endif
-    SALOME_View* view = GEOM_Displayer::GetActiveView();
-    if ( view /*fix for 9320==>*/&& ( viewType == OCCViewer_Viewer::Type() || viewType == SVTK_Viewer::Type() ) ) {
-      SALOME_Prs* prs = view->CreatePrs( entry( index ).toLatin1().constData() );
-      if ( prs ) {
-       if ( viewType == OCCViewer_Viewer::Type() ) { // assuming OCC
-         SOCC_Prs* occPrs = (SOCC_Prs*) prs;
-         AIS_ListOfInteractive lst;
-         occPrs->GetObjects( lst );
-         if ( lst.Extent() ) {
-           Handle(AIS_InteractiveObject) io = lst.First();
-           if ( !io.IsNull() ) {
-        int dm;
-        Handle(GEOM_AISShape) aSh = Handle(GEOM_AISShape)::DownCast(io);
-        if(!aSh.IsNull()) {
-          dm = aSh->isTopLevel() ? aSh->prevDisplayMode() : aSh->DisplayMode();
-        } else {
-          dm = io->DisplayMode();
+
+  SALOME_View* view = GEOM_Displayer::GetActiveView();
+  if ( view /*fix for 9320==>*/&& ( viewType == OCCViewer_Viewer::Type() || viewType == SVTK_Viewer::Type() ) ) {
+    SALOME_Prs* prs = view->CreatePrs( entry( index ).toUtf8().constData() );
+    if ( prs ) {
+      if ( viewType == OCCViewer_Viewer::Type() ) { // assuming OCC
+        SOCC_Prs* occPrs = (SOCC_Prs*) prs;
+        AIS_ListOfInteractive lst;
+        occPrs->GetObjects( lst );
+        if ( lst.Extent() ) {
+          Handle(AIS_InteractiveObject) io = lst.First();
+          if ( !io.IsNull() ) {
+            int dm;
+            Handle(GEOM_AISShape) aSh = Handle(GEOM_AISShape)::DownCast(io);
+            if(!aSh.IsNull()) {
+              dm = aSh->isTopLevel() ? aSh->prevDisplayMode() : aSh->DisplayMode();
+            } else {
+              dm = io->DisplayMode();
+            }
+            OCC_DISPLAY_MODE_TO_STRING( res, dm );
+            if ( res.isEmpty() ) { // return default display mode of AIS_InteractiveContext
+              OCCViewer_Viewer* occViewer = (OCCViewer_Viewer*)SUIT_Session::session()->activeApplication()->
+                desktop()->activeWindow()->getViewManager()->getViewModel();
+              Handle(AIS_InteractiveContext) ic = occViewer->getAISContext();
+              dm = ic->DisplayMode();
+              OCC_DISPLAY_MODE_TO_STRING( res, dm );
+            }
+          }
         }
-             OCC_DISPLAY_MODE_TO_STRING( res, dm );
-             if ( res.isEmpty() ) { // return default display mode of AIS_InteractiveContext
-               OCCViewer_Viewer* occViewer = (OCCViewer_Viewer*)SUIT_Session::session()->activeApplication()->
-                 desktop()->activeWindow()->getViewManager()->getViewModel();
-               Handle(AIS_InteractiveContext) ic = occViewer->getAISContext();
-               dm = ic->DisplayMode();
-               OCC_DISPLAY_MODE_TO_STRING( res, dm );
-             }
-           }
-         }
-       }
-  else if ( viewType == SVTK_Viewer::Type() ) { // assuming VTK
-         SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( prs );
-         vtkActorCollection* lst = vtkPrs ? vtkPrs->GetObjects() : 0;
-         if ( lst ) {
-           lst->InitTraversal();
-           vtkActor* actor = lst->GetNextActor();
-           if ( actor ) {
-             SALOME_Actor* salActor = dynamic_cast<SALOME_Actor*>( actor );
-             if ( salActor ) {
-               int dm = salActor->getDisplayMode();
-               VTK_DISPLAY_MODE_TO_STRING( res, dm );
-             } // if ( salome actor )
-           } // if ( actor )
-         } // if ( lst == vtkPrs->GetObjects() )
-       } // if VTK
       }
+      else if ( viewType == SVTK_Viewer::Type() ) { // assuming VTK
+        SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( prs );
+        vtkActorCollection* lst = vtkPrs ? vtkPrs->GetObjects() : 0;
+        if ( lst ) {
+          lst->InitTraversal();
+          vtkActor* actor = lst->GetNextActor();
+          if ( actor ) {
+            SALOME_Actor* salActor = dynamic_cast<SALOME_Actor*>( actor );
+            if ( salActor ) {
+              int dm = salActor->getDisplayMode();
+              VTK_DISPLAY_MODE_TO_STRING( res, dm );
+            } // if ( salome actor )
+          } // if ( actor )
+        } // if ( lst == vtkPrs->GetObjects() )
+      } // if VTK
     }
-
-#ifdef USE_VISUAL_PROP_MAP
   }
-#endif
 
   return res;
 }
 
-bool GEOMGUI_Selection::isVectorsMode( const int index ) const
+bool GEOMGUI_Selection::autoBringToFront( const int /*index*/ ) const
 {
-  bool res = false;
+  return SUIT_Session::session()->resourceMgr()->booleanValue( "Geometry", "auto_bring_to_front", false );
+}
 
+bool GEOMGUI_Selection::isVectorsMode( const int index ) const
+{
 #ifdef USE_VISUAL_PROP_MAP
-  bool found = false;
-  QVariant v = visibleProperty( entry( index ), VECTOR_MODE_PROP );
-  if ( v.canConvert( QVariant::Bool ) ) {
-    res = v.toBool();
-    found = true;
+  QVariant v = visibleProperty( entry( index ), GEOM::propertyName( GEOM::EdgesDirection ) );
+  if ( v.canConvert( QVariant::Bool ) )
+    return v.toBool();
+#endif
+
+  bool res = false;
+  
+  SALOME_View* view = GEOM_Displayer::GetActiveView();
+  QString viewType = activeViewType();
+  if ( view && ( viewType == OCCViewer_Viewer::Type() || viewType == SVTK_Viewer::Type() ) ) {
+    SALOME_Prs* prs = view->CreatePrs( entry( index ).toUtf8().constData() );
+    if ( prs ) {
+      if ( viewType == OCCViewer_Viewer::Type() ) { // assuming OCC
+        SOCC_Prs* occPrs = (SOCC_Prs*) prs;
+        AIS_ListOfInteractive lst;
+        occPrs->GetObjects( lst );
+        if ( lst.Extent() ) {
+          Handle(AIS_InteractiveObject) io = lst.First();
+          if ( !io.IsNull() ) {
+            Handle(GEOM_AISShape) aSh = Handle(GEOM_AISShape)::DownCast(io);
+            if ( !aSh.IsNull() )
+              res = aSh->isShowVectors();
+          }
+        }
+      }
+      else if ( viewType == SVTK_Viewer::Type() ) { // assuming VTK
+        SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( prs );
+        vtkActorCollection* lst = vtkPrs ? vtkPrs->GetObjects() : 0;
+        if ( lst ) {
+          lst->InitTraversal();
+          vtkActor* actor = lst->GetNextActor();
+          if ( actor ) {
+            GEOM_Actor* aGeomActor = GEOM_Actor::SafeDownCast(actor);
+            if ( aGeomActor )
+              res = aGeomActor->GetVectorMode();
+            }
+        }
+      }
+    }
   }
 
-  if ( !found ) {
+  return res;
+}
+
+bool GEOMGUI_Selection::isVerticesMode( const int index ) const
+{
+#ifdef USE_VISUAL_PROP_MAP
+  QVariant v = visibleProperty( entry( index ), GEOM::propertyName( GEOM::Vertices ) );
+  if ( v.canConvert( QVariant::Bool ) )
+    return v.toBool();
 #endif
-    SALOME_View* view = GEOM_Displayer::GetActiveView();
-    QString viewType = activeViewType();
-    if ( view && ( viewType == OCCViewer_Viewer::Type() || viewType == SVTK_Viewer::Type() ) ) {
-      SALOME_Prs* prs = view->CreatePrs( entry( index ).toLatin1().constData() );
-      if ( prs ) {
-       if ( viewType == OCCViewer_Viewer::Type() ) { // assuming OCC
-         SOCC_Prs* occPrs = (SOCC_Prs*) prs;
-         AIS_ListOfInteractive lst;
-         occPrs->GetObjects( lst );
-         if ( lst.Extent() ) {
-           Handle(AIS_InteractiveObject) io = lst.First();
-           if ( !io.IsNull() ) {
-             Handle(GEOM_AISShape) aSh = Handle(GEOM_AISShape)::DownCast(io);
-             if ( !aSh.IsNull() )
-               res = aSh->isShowVectors();
-           }
-         }
-       } else if ( viewType == SVTK_Viewer::Type() ) { // assuming VTK
-         SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( prs );
-         vtkActorCollection* lst = vtkPrs ? vtkPrs->GetObjects() : 0;
-         if ( lst ) {
-           lst->InitTraversal();
-           vtkActor* actor = lst->GetNextActor();
-           if ( actor ) {
-             GEOM_Actor* aGeomActor = GEOM_Actor::SafeDownCast(actor);
-             if ( aGeomActor )
-               res = aGeomActor->GetVectorMode();
-           }
-         }
-       }
+
+  bool res = false;
+  
+  SALOME_View* view = GEOM_Displayer::GetActiveView();
+  QString viewType = activeViewType();
+  if ( view && ( viewType == OCCViewer_Viewer::Type() || viewType == SVTK_Viewer::Type() ) ) {
+    SALOME_Prs* prs = view->CreatePrs( entry( index ).toUtf8().constData() );
+    if ( prs ) {
+      if ( viewType == OCCViewer_Viewer::Type() ) { // assuming OCC
+        SOCC_Prs* occPrs = (SOCC_Prs*) prs;
+        AIS_ListOfInteractive lst;
+        occPrs->GetObjects( lst );
+        if ( lst.Extent() ) {
+          Handle(AIS_InteractiveObject) io = lst.First();
+          if ( !io.IsNull() ) {
+            Handle(GEOM_AISShape) aSh = Handle(GEOM_AISShape)::DownCast(io);
+            if ( !aSh.IsNull() )
+              res = aSh->isShowVertices();
+          }
+        }
+      }
+      else if ( viewType == SVTK_Viewer::Type() ) { // assuming VTK
+        SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( prs );
+        vtkActorCollection* lst = vtkPrs ? vtkPrs->GetObjects() : 0;
+        if ( lst ) {
+          lst->InitTraversal();
+          vtkActor* actor = lst->GetNextActor();
+          if ( actor ) {
+            GEOM_Actor* aGeomActor = GEOM_Actor::SafeDownCast(actor);
+            if ( aGeomActor )
+              res = aGeomActor->GetVerticesMode();
+            }
+        }
       }
     }
-#ifdef USE_VISUAL_PROP_MAP
   }
-#endif
 
   return res;
 }
 
-bool GEOMGUI_Selection::hasChildren( const _PTR(SObject)& obj )
+bool GEOMGUI_Selection::isNameMode( const int index ) const
 {
-  bool ok = false;
-  if ( obj ) {
-    _PTR(ChildIterator) it ( obj->GetStudy()->NewChildIterator( obj ) );
-    for ( ; it->More() && !ok; it->Next() ) {
-      _PTR(SObject) child = it->Value();
-      if ( child ) {
-        _PTR(SObject) refObj;
-        if ( child->ReferencedObject( refObj ) ) continue; // omit references
-        if ( child->GetName() != "" ) ok = true;
+#ifdef USE_VISUAL_PROP_MAP
+  QVariant v = visibleProperty( entry( index ), GEOM::propertyName( GEOM::ShowName ) );
+  if ( v.canConvert( QVariant::Bool ) )
+    return v.toBool();
+#endif
+
+  bool res = false;
+
+  SALOME_View* view = GEOM_Displayer::GetActiveView();
+  QString viewType = activeViewType();
+  if ( view && ( viewType == OCCViewer_Viewer::Type() || viewType == SVTK_Viewer::Type() ) ) {
+    SALOME_Prs* prs = view->CreatePrs( entry( index ).toUtf8().constData() );
+    if ( prs ) {
+      if ( viewType == OCCViewer_Viewer::Type() ) { // assuming OCC
+        SOCC_Prs* occPrs = (SOCC_Prs*) prs;
+        AIS_ListOfInteractive lst;
+        occPrs->GetObjects( lst );
+        if ( lst.Extent() ) {
+          Handle(AIS_InteractiveObject) io = lst.First();
+          if ( !io.IsNull() ) {
+            Handle(GEOM_AISShape) aSh = Handle(GEOM_AISShape)::DownCast(io);
+            if ( !aSh.IsNull() )
+              res = aSh->isShowName();
+          }
+        }
+      }
+      else if ( viewType == SVTK_Viewer::Type() ) { // assuming VTK
+        SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( prs );
+        vtkActorCollection* lst = vtkPrs ? vtkPrs->GetObjects() : 0;
+        if ( lst ) {
+          lst->InitTraversal();
+          vtkActor* actor = lst->GetNextActor();
+          if ( actor ) {
+            GEOM_Actor* aGeomActor = GEOM_Actor::SafeDownCast(actor);
+            if ( aGeomActor )
+              res = aGeomActor->GetNameMode();
+            }
+        }
       }
     }
   }
-  return ok;
+
+  return res;
+}
+
+bool GEOMGUI_Selection::hasChildren( const _PTR(SObject)& obj )
+{
+  // as soon as Use Case browser data tree was added
+  return obj ? SalomeApp_Application::getStudy()->GetUseCaseBuilder()->HasChildren( obj ) : false;
 }
 
 bool GEOMGUI_Selection::expandable( const _PTR(SObject)& obj )
@@ -447,6 +584,17 @@ bool GEOMGUI_Selection::isCompoundOfVertices( GEOM::GEOM_Object_ptr obj )
   return ret;
 }
 
+bool GEOMGUI_Selection::isFolder( const _PTR(SObject)& obj )
+{
+  bool ret = false;
+  _PTR(GenericAttribute) anAttr;
+  if ( obj && obj->FindAttribute(anAttr, "AttributeLocalID") ) {
+    _PTR(AttributeLocalID) aLocalID( anAttr );
+    ret = aLocalID->Value() == 999;
+  }
+  return ret;
+}
+
 bool GEOMGUI_Selection::hasChildren( const int index ) const
 {
   bool ok = false;
@@ -463,6 +611,25 @@ bool GEOMGUI_Selection::hasChildren( const int index ) const
   return ok;
 }
 
+int GEOMGUI_Selection::nbChildren( const int index ) const
+{
+  int nb = 0;
+  SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( study() );
+
+  if ( appStudy ) {
+    QString anEntry = entry( index );
+    _PTR(Study) study = appStudy->studyDS();
+    if ( study && !anEntry.isEmpty() ) {
+      _PTR(SObject) aSO( study->FindObjectID( anEntry.toStdString() ) );
+      if ( aSO && study->GetUseCaseBuilder()->IsUseCaseNode(aSO) ) {
+        _PTR(UseCaseIterator) it = study->GetUseCaseBuilder()->GetUseCaseIterator( aSO );
+        for (it->Init(false); it->More(); it->Next()) nb++;
+      }
+    }
+  }
+  return nb;
+}
+
 bool GEOMGUI_Selection::hasConcealedChildren( const int index ) const
 {
   bool OK = false;
@@ -521,7 +688,15 @@ GEOM::GEOM_Object_ptr GEOMGUI_Selection::getObject( const int index ) const
 {
   GEOM::GEOM_Object_var o;
   if ( 0 <= index && index < myObjects.size() )
-    o = GEOM::GEOM_Object::_duplicate( myObjects[index] );
+    o = GEOM::GEOM_Object::_narrow( myObjects[index] );
+  return o._retn();
+}
+
+GEOM::GEOM_BaseObject_ptr GEOMGUI_Selection::getBaseObject( const int index ) const
+{
+  GEOM::GEOM_BaseObject_var o;
+  if ( 0 <= index && index < myObjects.size() )
+    o = GEOM::GEOM_BaseObject::_duplicate( myObjects[index] );
   return o._retn();
 }
 
@@ -548,94 +723,214 @@ QString GEOMGUI_Selection::selectionMode() const
   return "";
 }
 
-bool GEOMGUI_Selection::topLevel( const int index ) const {
+bool GEOMGUI_Selection::topLevel( const int index ) const
+{
+#ifdef USE_VISUAL_PROP_MAP
+  QVariant v = visibleProperty( entry( index ), GEOM::propertyName( GEOM::TopLevel ) );
+  if ( v.canConvert<bool>() )
+    return v.toBool();
+#endif
+
   bool res = false;
 
-#ifdef USE_VISUAL_PROP_MAP
-  bool found = false;
-  QVariant v = visibleProperty( entry( index ), TOP_LEVEL_PROP );
-  if ( v.canConvert<bool>() ) {
-    res = v.toBool();
-    found = true;
+  SALOME_View* view = GEOM_Displayer::GetActiveView();
+  QString viewType = activeViewType();
+  if ( view && viewType == OCCViewer_Viewer::Type() ) {
+    SALOME_Prs* prs = view->CreatePrs( entry( index ).toUtf8().constData() );
+    if ( prs ) {
+      if ( viewType == OCCViewer_Viewer::Type() ) { // assuming OCC
+        SOCC_Prs* occPrs = (SOCC_Prs*) prs;
+        AIS_ListOfInteractive lst;
+        occPrs->GetObjects( lst );
+        if ( lst.Extent() ) {
+          Handle(AIS_InteractiveObject) io = lst.First();
+          if ( !io.IsNull() ) {
+            Handle(GEOM_AISShape) aSh = Handle(GEOM_AISShape)::DownCast(io);
+            if ( !aSh.IsNull() )
+              res = (bool)aSh->isTopLevel();
+          }
+        }
+      }
+    }
   }
+  return res;
+}
 
-  if ( !found ) {
+bool GEOMGUI_Selection::isPhysicalMaterial( const int idx ) const
+{
+#ifdef USE_VISUAL_PROP_MAP
+  QVariant v = visibleProperty( entry( idx ), GEOM::propertyName( GEOM::Material ) );
+  if ( v.canConvert<QString>() ) {
+    Material_Model material;
+    material.fromProperties( v.toString() );
+    return material.isPhysical();
+  }
 #endif
-    SALOME_View* view = GEOM_Displayer::GetActiveView();
-    QString viewType = activeViewType();
-    if ( view && viewType == OCCViewer_Viewer::Type() ) {
-      SALOME_Prs* prs = view->CreatePrs( entry( index ).toLatin1().constData() );
-      if ( prs ) {
-       if ( viewType == OCCViewer_Viewer::Type() ) { // assuming OCC
-         SOCC_Prs* occPrs = (SOCC_Prs*) prs;
-         AIS_ListOfInteractive lst;
-         occPrs->GetObjects( lst );
-         if ( lst.Extent() ) {
-           Handle(AIS_InteractiveObject) io = lst.First();
-           if ( !io.IsNull() ) {
-             Handle(GEOM_AISShape) aSh = Handle(GEOM_AISShape)::DownCast(io);
-             if ( !aSh.IsNull() )
-               res = (bool)aSh->isTopLevel();
-           }
-         }
-       }
+
+  bool res = false;
+  
+  SALOME_View* view = GEOM_Displayer::GetActiveView();
+  QString viewType = activeViewType();
+  if ( view ) {
+    SALOME_Prs* prs = view->CreatePrs( entry( idx ).toUtf8().constData() );
+    if ( prs ) {
+      if ( viewType == OCCViewer_Viewer::Type() ) { // assuming OCC
+        SOCC_Prs* occPrs = (SOCC_Prs*) prs;
+        AIS_ListOfInteractive lst;
+        occPrs->GetObjects( lst );
+        if ( lst.Extent() ) {
+          Handle(AIS_InteractiveObject) io = lst.First();
+          if ( !io.IsNull() ) {
+            Handle(GEOM_AISShape) aSh = Handle(GEOM_AISShape)::DownCast(io);
+            if ( !aSh.IsNull() )
+              res = (bool) aSh->Attributes()->ShadingAspect()->
+                Material(Aspect_TOFM_BOTH_SIDE).MaterialType( Graphic3d_MATERIAL_PHYSIC );
+          }
+        }
+      }
+      else if ( viewType == SVTK_Viewer::Type() ) { // assuming VTK
+        SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( prs );
+        vtkActorCollection* lst = vtkPrs ? vtkPrs->GetObjects() : 0;
+        if ( lst ) {
+          lst->InitTraversal();
+          vtkActor* actor = lst->GetNextActor();
+          if ( actor ) {
+            GEOM_Actor* aGeomGActor = GEOM_Actor::SafeDownCast( actor );
+            if ( aGeomGActor ) {
+              GEOM_VTKPropertyMaterial* mat  = GEOM_VTKPropertyMaterial::SafeDownCast(aGeomGActor->GetProperty());
+              if ( mat )
+                res = mat->GetPhysical();
+            } // if ( salome actor )
+          } // if ( actor )
+        } // if ( lst == vtkPrs->GetObjects() )
       }
     }
   }
+
   return res;
 }
 
-bool GEOMGUI_Selection::isPhysicalMaterial( const int idx ) const{
-   bool res = false;
+bool GEOMGUI_Selection::isFolder( const int index ) const
+{
+  bool res = false;
+  SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( study() );
 
-#ifdef USE_VISUAL_PROP_MAP
-   bool found = false;
-   QVariant v = visibleProperty( entry( idx ), MATERIAL_PROP );
-   if ( v.canConvert<QString>() ) {
-     Material_Model material;
-     material.fromProperties( v.toString() );
-     res = material.isPhysical();
-     found = true;
-   }
-
-   if ( !found ) {
-#endif
-     SALOME_View* view = GEOM_Displayer::GetActiveView();
-     QString viewType = activeViewType();
-     if ( view ) {
-       SALOME_Prs* prs = view->CreatePrs( entry( idx ).toLatin1().constData() );
-       if ( prs ) {
-         if ( viewType == OCCViewer_Viewer::Type() ) { // assuming OCC
-           SOCC_Prs* occPrs = (SOCC_Prs*) prs;
-           AIS_ListOfInteractive lst;
-           occPrs->GetObjects( lst );
-           if ( lst.Extent() ) {
-             Handle(AIS_InteractiveObject) io = lst.First();
-             if ( !io.IsNull() ) {
-               Handle(GEOM_AISShape) aSh = Handle(GEOM_AISShape)::DownCast(io);
-               if ( !aSh.IsNull() )
-                 res = (bool) aSh->Attributes()->ShadingAspect()->
-                        Material(Aspect_TOFM_BOTH_SIDE).MaterialType( Graphic3d_MATERIAL_PHYSIC );
-             }
-           }
-         }
-         else if ( viewType == SVTK_Viewer::Type() ) { // assuming VTK
-               SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( prs );
-               vtkActorCollection* lst = vtkPrs ? vtkPrs->GetObjects() : 0;
-               if ( lst ) {
-                 lst->InitTraversal();
-                 vtkActor* actor = lst->GetNextActor();
-                 if ( actor ) {
-              GEOM_Actor* aGeomGActor = GEOM_Actor::SafeDownCast( actor );
-                   if ( aGeomGActor ) {
-                GEOM_VTKPropertyMaterial* mat  = GEOM_VTKPropertyMaterial::SafeDownCast(aGeomGActor->GetProperty());
-                res = mat->GetPhysical();
-                   } // if ( salome actor )
-                 } // if ( actor )
-          } // if ( lst == vtkPrs->GetObjects() )
-         }
-       }
-     }
-   }
-   return res;
+  if ( appStudy ) {
+    QString anEntry = entry( index );
+    _PTR(Study) study = appStudy->studyDS();
+    if ( study && !anEntry.isNull() ) {
+      _PTR(SObject) aSO( study->FindObjectID( anEntry.toStdString() ) );
+      if ( aSO ) res = isFolder( aSO );
+    }
+  }
+  return res;
+}
+
+bool GEOMGUI_Selection::hasDimensions( const int theIndex, bool& theHidden, bool& theVisible ) const
+{
+  QString anEntry = entry( theIndex );
+  if ( anEntry.isNull() )
+  {
+    return false;
+  }
+
+  GEOMGUI_DimensionProperty aDimensions( anEntry.toStdString() );
+
+  theHidden  = false;
+  theVisible = false;
+
+  for ( int it = 0; it < aDimensions.GetNumber(); ++it )
+  {
+    if ( aDimensions.IsVisible( it ) )
+      theVisible = true;
+    else
+      theHidden = true;
+  }
+
+  return aDimensions.GetNumber() > 0;
+}
+
+bool GEOMGUI_Selection::hasHiddenDimensions( const int theIndex ) const
+{
+  bool isAnyVisible = false;
+  bool isAnyHidden = false;
+  if ( !hasDimensions( theIndex, isAnyHidden, isAnyVisible ) )
+  {
+    return false;
+  }
+
+  return isAnyHidden;
+}
+
+bool GEOMGUI_Selection::hasVisibleDimensions( const int theIndex ) const
+{
+  bool isAnyVisible = false;
+  bool isAnyHidden = false;
+  if ( !hasDimensions( theIndex, isAnyHidden, isAnyVisible ) )
+  {
+    return false;
+  }
+
+  return isAnyVisible;
+}
+
+int GEOMGUI_Selection::annotationsCount() const
+{
+  return myAnnotationEntries.size();
+}
+
+bool GEOMGUI_Selection::hasAnnotations( const int theIndex, bool& theHidden, bool& theVisible ) const
+{
+  SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( study() );
+  if ( !appStudy )
+    return false;
+
+  QString anEntry = entry( theIndex );
+  _PTR(Study) aStudy = appStudy->studyDS();
+  if ( !aStudy || anEntry.isNull() )
+    return false;
+
+  _PTR(SObject) aSObj = appStudy->studyDS()->FindObjectID( anEntry.toStdString() );
+
+  const Handle(GEOMGUI_AnnotationAttrs)
+    aShapeAnnotations = GEOMGUI_AnnotationAttrs::FindAttributes( aSObj );
+
+  if ( aShapeAnnotations.IsNull() )
+    return false;
+
+  theHidden  = false;
+  theVisible = false;
+
+  const int aCount = aShapeAnnotations->GetNbAnnotation();
+  for ( int anI = 0; anI < aCount; ++anI )
+  {
+    if ( aShapeAnnotations->GetIsVisible( anI ) )
+      theVisible = true;
+    else
+      theHidden = true;
+  }
+
+  return aCount > 0;
+}
+
+bool GEOMGUI_Selection::hasHiddenAnnotations( const int theIndex ) const
+{
+  bool isAnyVisible, isAnyHidden = false;
+  if ( !hasAnnotations( theIndex, isAnyHidden, isAnyVisible ) )
+  {
+    return false;
+  }
+
+  return isAnyHidden;
+}
+
+bool GEOMGUI_Selection::hasVisibleAnnotations( const int theIndex ) const
+{
+  bool isAnyVisible, isAnyHidden = false;
+  if ( !hasAnnotations( theIndex, isAnyHidden, isAnyVisible ) )
+  {
+    return false;
+  }
+
+  return isAnyVisible;
 }