Salome HOME
PAL10810 - "Display", "Erase", "Display only" on root objects
authorasl <asl@opencascade.com>
Wed, 14 Dec 2005 06:44:19 +0000 (06:44 +0000)
committerasl <asl@opencascade.com>
Wed, 14 Dec 2005 06:44:19 +0000 (06:44 +0000)
src/SMESHGUI/SMESHGUI.cxx
src/StdMeshersGUI/Makefile.in

index 228689dfe14b787251eea4faddb64343cd50cde8..ae96d893d3b6f2345cd493d75c832a1bd64d0c21 100644 (file)
@@ -1176,39 +1176,7 @@ bool SMESHGUI::OnGUIEvent( int theCommandID )
       if( theCommandID==302 )
        startOperation( myEraseAll );
 
-      SALOME_ListIteratorOfListIO anIt( sel_objects );
-      for( ; anIt.More(); anIt.Next() )
-      {
-       Handle( SALOME_InteractiveObject ) obj = anIt.Value();
-       if( obj->hasEntry() )
-       {
-         _PTR(SObject) SO = activeStudy()->studyDS()->FindObjectID( obj->getEntry() );
-         if( SO && QString( SO->GetID().c_str() ) == SO->GetFatherComponent()->GetID().c_str() )
-         { //component is selected
-           _PTR(SComponent) SC( SO->GetFatherComponent() );
-           _PTR(ChildIterator) anIter ( activeStudy()->studyDS()->NewChildIterator( SC ) );
-           anIter->InitEx( true );
-           while( anIter->More() )
-           {
-             _PTR(SObject) valSO ( anIter->Value() );
-             _PTR(SObject) refSO;
-             if( !valSO->ReferencedObject( refSO ) )
-             {
-               QString id = valSO->GetID().c_str(),
-                        comp = SC->ComponentDataType().c_str(),
-                       val = valSO->GetName().c_str();
-
-               Handle( SALOME_InteractiveObject ) new_obj =
-                 new SALOME_InteractiveObject( id.latin1(), comp.latin1(), val.latin1() );
-               to_process.Append( new_obj );
-             }
-             anIter->Next();
-           }
-           continue;
-         }
-       }
-       to_process.Append( obj );
-      }
+      extractContainers( sel_objects, to_process );
 
       if (vtkwnd) {
        SALOME_ListIteratorOfListIO It( to_process );
index d82897944692eb7519069e4a5e7d799839f6d1a6..ebfb745fca497cb9485c13b445cc45eb3c678985 100644 (file)
@@ -61,6 +61,7 @@ LIB_CLIENT_IDL = \
 ## pb in dependencies search
 LIB_CLIENT_IDL += \
        SALOME_GenericObj.idl \
+       SALOME_ContainerManager.idl \
        SALOME_Component.idl \
        GEOM_Gen.idl