Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[modules/geom.git] / src / GEOMGUI / GeometryGUI.cxx
index e75c987f9e295c528e7cde0f0beab2b9fb06f19e..31c71174475343b627d009bb24a74cfffa91b199 100644 (file)
@@ -29,6 +29,7 @@
 #include "GeometryGUI.h"
 #include "GEOMGUI_OCCSelector.h"
 #include "GEOMGUI_Selection.h"
+#include "GEOM_Displayer.h"
 
 #include <SUIT_MessageBox.h>
 #include <SUIT_ResourceMgr.h>
 #include <OCCViewer_ViewModel.h>
 #include <OCCViewer_ViewManager.h>
 
-#include <VTKViewer_ViewWindow.h>
+#include <SVTK_ViewWindow.h>
 #include <SVTK_RenderWindowInteractor.h>
 #include <SVTK_InteractorStyle.h>
 #include <SVTK_ViewModel.h>
-#include <VTKViewer_ViewManager.h>
+#include <SVTK_ViewManager.h>
 
 #include <SalomeApp_Application.h>
-#include <SalomeApp_SelectionMgr.h>
-#include <SalomeApp_VTKSelector.h>
+#include <LightApp_SelectionMgr.h>
+#include <LightApp_VTKSelector.h>
 #include <SalomeApp_Study.h>
-#include <SalomeApp_Preferences.h>
+#include <LightApp_Preferences.h>
 #include <SALOME_LifeCycleCORBA.hxx>
 #include <SALOME_ListIO.hxx>
 
 #include <vtkCamera.h>
 #include <vtkRenderer.h>
 
+
 extern "C" {
   Standard_EXPORT CAM_Module* createModule() {
     return new GeometryGUI();
   }
 }
 
-GEOM::GEOM_Gen_var GeometryGUI::myComponentGeom = GEOM::GEOM_Gen::_nil(); 
 
-bool GeometryGUI::InitGeomGen() 
+
+GEOM::GEOM_Gen_var GeometryGUI::myComponentGeom = GEOM::GEOM_Gen::_nil();
+
+GEOM::GEOM_Gen_var GeometryGUI::GetGeomGen()
+{
+  // Bug 12290: exception in Mesh GUI on GEOMBase::GetShape() if Geometry GUI hasn't been loaded
+  if (CORBA::is_nil(myComponentGeom))
+    InitGeomGen();
+  return GeometryGUI::myComponentGeom;
+}
+
+bool GeometryGUI::InitGeomGen()
 {
   GeometryGUI aGG;
-  if( CORBA::is_nil( myComponentGeom ) ) return false;   
-  return true; 
-}                         
+  if( CORBA::is_nil( myComponentGeom ) ) return false;
+  return true;
+}
+
+//=======================================================================
+// function : ClientSObjectToObject
+// purpose  : 
+//=======================================================================
+CORBA::Object_var GeometryGUI::ClientSObjectToObject (_PTR(SObject) theSObject)
+{
+  _PTR(GenericAttribute) anAttr;
+  CORBA::Object_var anObj;
+  try {
+    std::string aValue = theSObject->GetIOR();
+    if (strcmp(aValue.c_str(), "") != 0) {
+      CORBA::ORB_ptr anORB = SalomeApp_Application::orb();
+      anObj = anORB->string_to_object(aValue.c_str());
+    }
+  } catch(...) {
+    INFOS("ClientSObjectToObject - Unknown exception was occured!!!");
+  }
+  return anObj._retn();
+}
+
+//=======================================================================
+// function : ClientStudyToStudy
+// purpose  : 
+//=======================================================================
+SALOMEDS::Study_var GeometryGUI::ClientStudyToStudy (_PTR(Study) theStudy)
+{
+  SALOME_NamingService *aNamingService = SalomeApp_Application::namingService();
+  CORBA::Object_var aSMObject = aNamingService->Resolve("/myStudyManager");
+  SALOMEDS::StudyManager_var aStudyManager = SALOMEDS::StudyManager::_narrow(aSMObject);
+  int aStudyID = theStudy->StudyId();
+  SALOMEDS::Study_var aDSStudy = aStudyManager->GetStudyByID(aStudyID);
+  return aDSStudy._retn();
+}
 
 //=================================================================================
 // class   : CustomItem
@@ -141,6 +187,8 @@ GeometryGUI::GeometryGUI() :
 
   myOCCSelectors.setAutoDelete( true );
   myVTKSelectors.setAutoDelete( true );
+
+  myDisplayer = 0;
 }
 
 //=======================================================================
@@ -161,8 +209,13 @@ GEOMGUI* GeometryGUI::getLibrary( const QString& libraryName )
   if ( !myGUIMap.contains( libraryName ) ) {
     // try to load library if it is not loaded yet
     QCString libs;
+#ifndef WNT
     if( ( libs = getenv( "LD_LIBRARY_PATH" ) ) ) {
-      QStringList dirList = QStringList::split( ":", libs, false ); // skip empty entries
+         QStringList dirList = QStringList::split( ":", libs, false ); // skip empty entries
+#else
+       if( ( libs = getenv( "PATH" ) ) ) {
+         QStringList dirList = QStringList::split( ";", libs, false ); // skip empty entries
+#endif
       for( int i = dirList.count()-1; i >= 0; i-- ) {
        QString dir = dirList[ i ];
        QFileInfo fi( Qtx::addSlash( dirList[ i ] ) + libraryName );
@@ -203,7 +256,7 @@ void GeometryGUI::ActiveWorkingPlane()
 
   SUIT_ViewWindow* window = application()->desktop()->activeWindow();
   bool ViewOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
-  bool ViewVTK = ( window && window->getViewManager()->getType() == VTKViewer_Viewer::Type() );
+  bool ViewVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
 
   if( ViewOCC ) {
     OCCViewer_ViewWindow* vw = dynamic_cast<OCCViewer_ViewWindow*>( window );
@@ -217,7 +270,7 @@ void GeometryGUI::ActiveWorkingPlane()
     }
   }
   else if( ViewVTK ) {
-    VTKViewer_ViewWindow* vw = dynamic_cast<VTKViewer_ViewWindow*>( window );
+    SVTK_ViewWindow* vw = dynamic_cast<SVTK_ViewWindow*>( window );
     if ( vw ) {
       vtkCamera* camera = vw->getRenderer()->GetActiveCamera();
 
@@ -292,10 +345,10 @@ void GeometryGUI::OnGUIEvent( int id )
   // check type of the active viewframe
   SUIT_ViewWindow* window = desk->activeWindow();
   bool ViewOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
-  bool ViewVTK = ( window && window->getViewManager()->getType() == VTKViewer_Viewer::Type() );
+  bool ViewVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
   // if current viewframe is not of OCC and not of VTK type - return immediately
   // fix for IPAL8958 - allow some commands to execute even when NO viewer is active (rename for example)
-  bool NotViewerDependentCommand = ( id == 901 ); 
+  bool NotViewerDependentCommand = ( id == 901 || id == 216 || id == 213 ); 
   if ( !ViewOCC && !ViewVTK && !NotViewerDependentCommand )
       return;
 
@@ -327,7 +380,11 @@ void GeometryGUI::OnGUIEvent( int id )
       id == 901  ||  // OBJECT BROWSER - RENAME
       id == 9024 ) { // OBJECT BROWSER - OPEN
     //cout << "id " << id << " received" << endl;
-    library = getLibrary( "libGEOMToolsGUI.so" );
+#ifndef WNT
+       library = getLibrary( "libGEOMToolsGUI.so" );
+#else
+       library = getLibrary( "GEOMToolsGUI.dll" );
+#endif
   }
   else if( id == 211  ||  // MENU VIEW - WIREFRAME/SHADING
           id == 212  ||  // MENU VIEW - DISPLAY ALL
@@ -337,7 +394,11 @@ void GeometryGUI::OnGUIEvent( int id )
           id == 216  ||  // MENU VIEW - DISPLAY
           id == 80311 ||  // POPUP VIEWER - WIREFRAME
           id == 80312 ) { // POPUP VIEWER - SHADING
-    library = getLibrary( "libDisplayGUI.so" );
+#ifndef WNT
+       library = getLibrary( "libDisplayGUI.so" );
+#else
+       library = getLibrary( "DisplayGUI.dll" );
+#endif
   }
   else if( id == 4011 ||  // MENU BASIC - POINT
           id == 4012 ||  // MENU BASIC - LINE
@@ -349,24 +410,40 @@ void GeometryGUI::OnGUIEvent( int id )
           id == 4018 ||  // MENU BASIC - WPLANE
           id == 4019 ||  // MENU BASIC - CURVE
           id == 4020 ) { // MENU BASIC - REPAIR
-    library = getLibrary( "libBasicGUI.so" );
+#ifndef WNT
+       library = getLibrary( "libBasicGUI.so" );
+#else
+       library = getLibrary( "BasicGUI.dll" );
+#endif
   }
   else if( id == 4021 ||  // MENU PRIMITIVE - BOX
           id == 4022 ||  // MENU PRIMITIVE - CYLINDER
           id == 4023 ||  // MENU PRIMITIVE - SPHERE
           id == 4024 ||  // MENU PRIMITIVE - TORUS
           id == 4025 ) { // MENU PRIMITIVE - CONE
-    library = getLibrary( "libPrimitiveGUI.so" );
+#ifndef WNT
+       library = getLibrary( "libPrimitiveGUI.so" );
+#else
+       library = getLibrary( "PrimitiveGUI.dll" );
+#endif
   }
   else if( id == 4031 ||  // MENU GENERATION - PRISM
           id == 4032 ||  // MENU GENERATION - REVOLUTION
           id == 4033 ||  // MENU GENERATION - FILLING
           id == 4034 ) { // MENU GENERATION - PIPE
-    library = getLibrary( "libGenerationGUI.so" );
+#ifndef WNT
+       library = getLibrary( "libGenerationGUI.so" );
+#else
+       library = getLibrary( "GenerationGUI.dll" );
+#endif
   }
   else if( id == 404 ||   // MENU ENTITY - SKETCHER
           id == 407 ) {  // MENU ENTITY - EXPLODE
-    library = getLibrary( "libEntityGUI.so" );
+#ifndef WNT
+       library = getLibrary( "libEntityGUI.so" );
+#else
+       library = getLibrary( "EntityGUI.dll" );
+#endif
   }
   else if( id == 4081 ||  // MENU BUILD - EDGE
           id == 4082 ||  // MENU BUILD - WIRE
@@ -374,13 +451,21 @@ void GeometryGUI::OnGUIEvent( int id )
           id == 4084 ||  // MENU BUILD - SHELL
           id == 4085 ||  // MENU BUILD - SOLID
           id == 4086 ) { // MENU BUILD - COMPUND
-    library = getLibrary( "libBuildGUI.so" );
+#ifndef WNT
+       library = getLibrary( "libBuildGUI.so" );
+#else
+       library = getLibrary( "BuildGUI.dll" );
+#endif
   }
   else if( id == 5011 ||  // MENU BOOLEAN - FUSE
           id == 5012 ||  // MENU BOOLEAN - COMMON
           id == 5013 ||  // MENU BOOLEAN - CUT
           id == 5014 ) { // MENU BOOLEAN - SECTION
-    library = getLibrary( "libBooleanGUI.so" );
+#ifndef WNT
+       library = getLibrary( "libBooleanGUI.so" );
+#else
+       library = getLibrary( "BooleanGUI.dll" );
+#endif
   }
   else if( id == 5021 ||  // MENU TRANSFORMATION - TRANSLATION
           id == 5022 ||  // MENU TRANSFORMATION - ROTATION
@@ -390,14 +475,22 @@ void GeometryGUI::OnGUIEvent( int id )
           id == 5026 ||  // MENU TRANSFORMATION - OFFSET
           id == 5027 ||  // MENU TRANSFORMATION - MULTI-TRANSLATION
           id == 5028 ) { // MENU TRANSFORMATION - MULTI-ROTATION
-    library = getLibrary( "libTransformationGUI.so" );
+#ifndef WNT
+       library = getLibrary( "libTransformationGUI.so" );
+#else
+       library = getLibrary( "TransformationGUI.dll" );
+#endif
   }
   else if( id == 503 ||   // MENU OPERATION - PARTITION
           id == 504 ||   // MENU OPERATION - ARCHIMEDE
           id == 505 ||   // MENU OPERATION - FILLET
           id == 506 ||   // MENU OPERATION - CHAMFER  
           id == 507 ) {  // MENU OPERATION - CLIPPING RANGE
-    library = getLibrary( "libOperationGUI.so" );
+#ifndef WNT
+       library = getLibrary( "libOperationGUI.so" );
+#else
+       library = getLibrary( "OperationGUI.dll" );
+#endif
   }
   else if( id == 601 ||   // MENU REPAIR - SEWING
           id == 603 ||   // MENU REPAIR - SUPPRESS FACES
@@ -409,7 +502,11 @@ void GeometryGUI::OnGUIEvent( int id )
            id == 609 ||   // MENU REPAIR - FREE BOUNDARIES
            id == 610 ||   // MENU REPAIR - FREE FACES
           id == 602 ) {  // MENU REPAIR - GLUE FACES
-    library = getLibrary( "libRepairGUI.so" );
+#ifndef WNT
+       library = getLibrary( "libRepairGUI.so" );
+#else
+       library = getLibrary( "RepairGUI.dll" );
+#endif
   }
   else if( id == 701   ||  // MENU MEASURE - PROPERTIES
           id == 702   ||  // MENU MEASURE - CDG
@@ -421,19 +518,31 @@ void GeometryGUI::OnGUIEvent( int id )
           id == 707   ||  // MENU MEASURE - CHECK
           id == 7072  ||  // MENU MEASURE - CHECK COMPOUND OF BLOCKS
           id == 708 ) {  // MENU MEASURE - POINT COORDINATES
-    library = getLibrary( "libMeasureGUI.so" );
+#ifndef WNT
+       library = getLibrary( "libMeasureGUI.so" );
+#else
+       library = getLibrary( "MeasureGUI.dll" );
+#endif
   }
   else if( id == 800  ||  // MENU GROUP - CREATE
           id == 8001 ||  // POPUP MENU - CREATE GROUP
           id == 801 ) {  // MENU GROUP - EDIT
-    library = getLibrary( "libGroupGUI.so" );
+#ifndef WNT
+       library = getLibrary( "libGroupGUI.so" );
+#else
+       library = getLibrary( "GroupGUI.dll" );
+#endif
   }
   else if( id == 9999  ||  // MENU BLOCKS - HEXAHEDRAL SOLID
            id == 9998  ||  // MENU BLOCKS - MULTI-TRANSFORMATION
            id == 9997  ||  // MENU BLOCKS - QUADRANGLE FACE
            id == 99991 ||  // MENU BLOCKS - PROPAGATE
            id == 9995 ) { // MENU BLOCKS - EXPLODE ON BLOCKS
-    library = getLibrary( "libBlocksGUI.so" );
+#ifndef WNT
+       library = getLibrary( "libBlocksGUI.so" );
+#else
+       library = getLibrary( "BlocksGUI.dll" );
+#endif
   }
 
   // call method of corresponding GUI library
@@ -448,13 +557,13 @@ void GeometryGUI::OnGUIEvent( int id )
 // function : GeometryGUI::OnKeyPress()
 // purpose  : Called when any key is pressed by user [static]
 //=================================================================================
-bool GeometryGUI::OnKeyPress( QKeyEvent* pe, SUIT_ViewWindow* win )
+void GeometryGUI::OnKeyPress( SUIT_ViewWindow* win, QKeyEvent* pe )
 {
   GUIMap::Iterator it;
   bool bOk = true;
   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it )
     bOk = bOk && it.data()->OnKeyPress( pe, application()->desktop(), win );
-  return bOk;
+//  return bOk;
 }
 
 
@@ -462,13 +571,13 @@ bool GeometryGUI::OnKeyPress( QKeyEvent* pe, SUIT_ViewWindow* win )
 // function : GeometryGUI::OnMouseMove()
 // purpose  : Manages mouse move events [static]
 //=================================================================================
-bool GeometryGUI::OnMouseMove( QMouseEvent* pe, SUIT_ViewWindow* win )
+void GeometryGUI::OnMouseMove( SUIT_ViewWindow* win, QMouseEvent* pe )
 {  
   GUIMap::Iterator it;
   bool bOk = true;
   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it )
     bOk = bOk && it.data()->OnMouseMove( pe, application()->desktop(), win );
-  return bOk;
+//  return bOk;
 }
 
 
@@ -476,7 +585,7 @@ bool GeometryGUI::OnMouseMove( QMouseEvent* pe, SUIT_ViewWindow* win )
 // function : GeometryGUI::0nMousePress()
 // purpose  : Manage mouse press events [static]
 //=================================================================================
-bool GeometryGUI::OnMousePress( QMouseEvent* pe, SUIT_ViewWindow* win )
+void GeometryGUI::OnMousePress( SUIT_ViewWindow* win, QMouseEvent* pe )
 {
   GUIMap::Iterator it;
   // OnMousePress() should return false if this event should be processed further
@@ -484,7 +593,7 @@ bool GeometryGUI::OnMousePress( QMouseEvent* pe, SUIT_ViewWindow* win )
   bool processed = false;
   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it )
     processed = processed || it.data()->OnMousePress( pe, application()->desktop(), win );
-  return processed;
+//  return processed;
 }
 
 /*
@@ -494,9 +603,9 @@ static void UpdateVtkSelection()
   SUIT_ViewWindow* win = 0;
   for ( win = winList.first(); win; win = winList.next() ) {
     if ( win->getViewManager()->getTypeView() == VIEW_VTK ) {
-      VTKViewer_ViewWindow* vw = dynamic_cast<VTKViewer_ViewWindow*>( window );
+      SVTK_ViewWindow* vw = dynamic_cast<SVTK_ViewWindow*>( window );
       if ( vw ) {
-       VTKViewer_RenderWindowInteractor* anInteractor = vw->getRWInteractor();
+       SVTK_RenderWindowInteractor* anInteractor = vw->getRWInteractor();
        anInteractor->SetSelectionProp();
        anInteractor->SetSelectionTolerance();
        SVTK_InteractorStyleSALOME* aStyle = anInteractor->GetInteractorStyleSALOME();
@@ -530,9 +639,9 @@ bool GeometryGUI::SetSettings()
     }
   }
   else if ( ViewVTK ) {
-    VTKViewer_ViewWindow* vw = dynamic_cast<VTKViewer_ViewWindow*>( window );
+    SVTK_ViewWindow* vw = dynamic_cast<SVTK_ViewWindow*>( window );
     if ( vw ) {
-      VTKViewer_RenderWindowInteractor* myRenderInter = vw->getRWInteractor();
+      SVTK_RenderWindowInteractor* myRenderInter = vw->getRWInteractor();
       DisplayMode = myRenderInter->GetDisplayMode();
     }
   }
@@ -678,7 +787,7 @@ void GeometryGUI::initialize( CAM_Application* app )
   createGeomAction( 5011, "FUSE" );
   createGeomAction( 5012, "COMMON" );
   createGeomAction( 5013, "CUT" );
-  createGeomAction( 50114, "SECTION" );
+  createGeomAction( 5014, "SECTION" );
 
   createGeomAction( 5021, "TRANSLATION" );
   createGeomAction( 5022, "ROTATION" );
@@ -871,18 +980,17 @@ void GeometryGUI::initialize( CAM_Application* app )
   createMenu( 707, measurId, -1 );  
   createMenu( 7072, measurId, -1 );  
 
-  int toolsId = createMenu( tr( "MEN_TOOLS" ), -1, -1, 10 );
+  int toolsId = createMenu( tr( "MEN_TOOLS" ), -1, -1, 50 );
   createMenu( separator(), toolsId, -1 );
   createMenu( 5103, toolsId, -1 );  
   
-  int prefId = createMenu( tr( "MEN_PREFERENCES" ), -1, -1, 10 );
-  createMenu( separator(), prefId, -1 );
-
-  int geomId = createMenu( tr( "MEN_PREFERENCES_GEOM" ), prefId, -1 );
-  createMenu( 412, geomId, -1 );  
-  createMenu( 413, geomId, -1 );  
-  createMenu( 414, geomId, -1 );  
-  createMenu( separator(), prefId, -1 );
+  //int prefId = createMenu( tr( "MEN_PREFERENCES" ), -1, -1, 50 );
+  //createMenu( separator(), prefId, -1 );
+  //int geomId = createMenu( tr( "MEN_PREFERENCES_GEOM" ), prefId, -1 );
+  //createMenu( 412, geomId, -1 );  
+  //createMenu( 413, geomId, -1 );  
+  //createMenu( 414, geomId, -1 );  
+  //createMenu( separator(), prefId, -1 );
 
   int viewId = createMenu( tr( "MEN_VIEW" ), -1, -1 );
   createMenu( separator(), viewId, -1 );
@@ -894,9 +1002,16 @@ void GeometryGUI::initialize( CAM_Application* app )
   createMenu( 212, viewId, -1 );  
   createMenu( 214, viewId, -1 );  
   createMenu( separator(), viewId, -1 );
+
+/*
+  PAL9111:
+  because of these items are accessible through object browser and viewers
+  we have removed they from main menu
+
   createMenu( 216, viewId, -1 );  
   createMenu( 213, viewId, -1 );  
   createMenu( 215, viewId, -1 );
+*/
 
   // ---- create toolbars --------------------------
 
@@ -952,28 +1067,41 @@ void GeometryGUI::initialize( CAM_Application* app )
   mgr->insert( separator(), -1, -1 );        // -----------
   dispmodeId = mgr->insert(  tr( "MEN_DISPLAY_MODE" ), -1, -1 ); // display mode menu
   mgr->insert( action(  80311 ), dispmodeId, -1 ); // wireframe
-  mgr->setRule( action( 80311 ), "(client='OCCViewer' or client='VTKViewer') and selcount>0", true );
+  mgr->setRule( action( 80311 ), "(client='OCCViewer' or client='VTKViewer') and selcount>0 and isVisible", true );
   mgr->setRule( action( 80311 ), "(client='OCCViewer' or client='VTKViewer') and displaymode='Wireframe'", false );
   mgr->insert( action(  80312 ), dispmodeId, -1 ); // shading
-  mgr->setRule( action( 80312 ), "(client='OCCViewer' or client='VTKViewer') and selcount>0", true );
+  mgr->setRule( action( 80312 ), "(client='OCCViewer' or client='VTKViewer') and selcount>0 and isVisible", true );
   mgr->setRule( action( 80312 ), "(client='OCCViewer' or client='VTKViewer') and displaymode='Shading'", false );
   mgr->insert( separator(), -1, -1 );        // -----------
   mgr->insert( action(  8032 ), -1, -1 ); // color
-  mgr->setRule( action( 8032 ), "(client='OCCViewer' or client='VTKViewer') and selcount>0", true );
+  mgr->setRule( action( 8032 ), "(client='OCCViewer' or client='VTKViewer') and selcount>0 and isVisible", true );
   mgr->insert( action(  8033 ), -1, -1 ); // transparency
-  mgr->setRule( action( 8033 ), "(client='OCCViewer' or client='VTKViewer') and selcount>0", true );
+  mgr->setRule( action( 8033 ), "(client='OCCViewer' or client='VTKViewer') and selcount>0 and isVisible", true );
   mgr->insert( action(  8034 ), -1, -1 ); // isos
-  mgr->setRule( action( 8034 ), "client='OCCViewer' and selcount>0", true );
+  mgr->setRule( action( 8034 ), "client='OCCViewer' and selcount>0 and isVisible", true );
   mgr->insert( separator(), -1, -1 );        // -----------
+  
+
+
+  QString canDisplay = "($component={'GEOM'}) and (selcount>0) and ({true} in $canBeDisplayed) ",
+          onlyComponent = "((type='Component') and selcount=1)",
+          rule = canDisplay + "and ((($type in {%1}) and( %2 )) or " + onlyComponent + ")",
+          types = "'Shape' 'Group'";
+
   mgr->insert( action(  216 ), -1, -1 ); // display
-  mgr->setRule( action( 216 ), "isActiveView=true and selcount>0 and (($type in {'Shape' 'Group'} and isVisible=false) or type='Component')", true );
+  mgr->setRule( action( 216 ), rule.arg( types ).arg( "not isVisible" ), true );
+
   mgr->insert( action(  215 ), -1, -1 ); // erase
-  mgr->setRule( action( 215 ), "isActiveView=true and selcount>0 and (($type in {'Shape' 'Group'} and isVisible=true) or (type='Component' and selcount=1))", true );
+  mgr->setRule( action( 215 ), rule.arg( types ).arg( "isVisible" ), true );
+
   mgr->insert( action(  214 ), -1, -1 ); // erase All
   mgr->setRule( action( 214 ), "client='OCCViewer' or client='VTKViewer'", true );
+
   mgr->insert( action(  213 ), -1, -1 ); // display only
-  mgr->setRule( action( 213 ), "isActiveView=true and selcount>0 and ($type in {'Shape' 'Group'} or (type='Component' and selcount=1))", true );
+  mgr->setRule( action( 213 ), rule.arg( types ).arg( "true" ), true );
   mgr->insert( separator(), -1, -1 );
+
+  mgr->hide( mgr->actionId( action( myEraseAll ) ) );
 }
 
 //=======================================================================
@@ -995,22 +1123,20 @@ bool GeometryGUI::activateModule( SUIT_Study* study )
 
   connect( application()->desktop(), SIGNAL( windowActivated( SUIT_ViewWindow* ) ), 
          this, SLOT( onWindowActivated( SUIT_ViewWindow* ) ) );
-  connect( (STD_Application*)application(), SIGNAL( viewManagerAdded( SUIT_ViewManager* ) ),
-           this, SLOT( onViewManagerAdded( SUIT_ViewManager* ) ) ); 
 
   GUIMap::Iterator it;
   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it )
     it.data()->activate( application()->desktop() );
 
-  SalomeApp_SelectionMgr* sm = getApp()->selectionMgr();
+  LightApp_SelectionMgr* sm = getApp()->selectionMgr();
   SUIT_ViewManager* vm;
   ViewManagerList OCCViewManagers, VTKViewManagers;
   application()->viewManagers( OCCViewer_Viewer::Type(), OCCViewManagers );
   for ( vm = OCCViewManagers.first(); vm; vm = OCCViewManagers.next() )
     myOCCSelectors.append( new GEOMGUI_OCCSelector( ((OCCViewer_ViewManager*)vm)->getOCCViewer(), sm ) );
-  application()->viewManagers( VTKViewer_Viewer::Type(), VTKViewManagers );
+  application()->viewManagers( SVTK_Viewer::Type(), VTKViewManagers );
   for ( vm = VTKViewManagers.first(); vm; vm = VTKViewManagers.next() )
-    myVTKSelectors.append( new SalomeApp_VTKSelector( (SVTK_Viewer*)vm->getViewModel(), sm ) );
+    myVTKSelectors.append( new LightApp_VTKSelector( dynamic_cast<SVTK_Viewer*>( vm->getViewModel() ), sm ) );
 
   // disable OCC selectors
   getApp()->selectionMgr()->setEnabled( false, OCCViewer_Viewer::Type() );
@@ -1018,8 +1144,8 @@ bool GeometryGUI::activateModule( SUIT_Study* study )
     sr->setEnabled(true);
   
   // disable VTK selectors
-  getApp()->selectionMgr()->setEnabled( false, VTKViewer_Viewer::Type() );
-  for ( SalomeApp_VTKSelector* sr = myVTKSelectors.first(); sr; sr = myVTKSelectors.next() )
+  getApp()->selectionMgr()->setEnabled( false, SVTK_Viewer::Type() );
+  for ( LightApp_VTKSelector* sr = myVTKSelectors.first(); sr; sr = myVTKSelectors.next() )
     sr->setEnabled(true);
   
   return true;
@@ -1037,8 +1163,6 @@ bool GeometryGUI::deactivateModule( SUIT_Study* study )
 
   disconnect( application()->desktop(), SIGNAL( windowActivated( SUIT_ViewWindow* ) ), 
             this, SLOT( onWindowActivated( SUIT_ViewWindow* ) ) );
-  disconnect( (STD_Application*)application(), SIGNAL( viewManagerAdded( SUIT_ViewManager* ) ),
-            this, SLOT( onViewManagerAdded( SUIT_ViewManager* ) ) ); 
 
   EmitSignalCloseAllDialogs();
 
@@ -1050,7 +1174,7 @@ bool GeometryGUI::deactivateModule( SUIT_Study* study )
   getApp()->selectionMgr()->setEnabled( true, OCCViewer_Viewer::Type() );
 
   myVTKSelectors.clear();
-  getApp()->selectionMgr()->setEnabled( true, VTKViewer_Viewer::Type() );
+  getApp()->selectionMgr()->setEnabled( true, SVTK_Viewer::Type() );
 
   return SalomeApp_Module::deactivateModule( study );
 }
@@ -1125,7 +1249,7 @@ bool GeometryGUI::CustomPopup(QAD_Desktop* parent, QPopupMenu* popup, const QStr
   if ( aViewFrame->getTypeView() == VIEW_OCC )
     aDisplayMode = ((OCCViewer_ViewFrame*)aViewFrame)->getViewer()->getAISContext()->DisplayMode();
   else if ( aViewFrame->getTypeView() == VIEW_VTK )
-    aDisplayMode = ((VTKViewer_ViewFrame*)aViewFrame)->getRWInteractor()->GetDisplayMode();
+    aDisplayMode = (dynamic_cast<SVTK_ViewFrame*>( aViewFrame )->getRWInteractor()->GetDisplayMode();
 
   int nbSel = Sel->IObjectCount();
 
@@ -1209,7 +1333,7 @@ bool GeometryGUI::CustomPopup(QAD_Desktop* parent, QPopupMenu* popup, const QStr
            else {
              ////// VTK viewer only
              popup->removeItem( 8034 ); // "Isos"
-             VTKViewer_Prs* vtkPrs = dynamic_cast<VTKViewer_Prs*>( prs );
+             SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( prs );
              if ( vtkPrs && !vtkPrs->IsNull() ) {
                vtkActorCollection* actorList = vtkPrs->GetObjects();
                actorList->InitTraversal();
@@ -1376,7 +1500,7 @@ void GeometryGUI::onWindowActivated( SUIT_ViewWindow* win )
     return;
 
   const bool ViewOCC = ( win->getViewManager()->getType() == OCCViewer_Viewer::Type() );
-//  const bool ViewVTK = ( win->getViewManager()->getType() == VTKViewer_Viewer::Type() );
+//  const bool ViewVTK = ( win->getViewManager()->getType() == SVTK_Viewer::Type() );
   
   // disable non-OCC viewframe menu commands
 //  action( 404 )->setEnabled( ViewOCC ); // SKETCHER
@@ -1409,7 +1533,16 @@ void GeometryGUI::onViewManagerAdded( SUIT_ViewManager* vm )
 {
   if ( vm->getType() == OCCViewer_Viewer::Type() )
   {
-    SalomeApp_SelectionMgr* sm = getApp()->selectionMgr();
+    qDebug( "connect" );
+    connect( vm, SIGNAL( keyPress  ( SUIT_ViewWindow*, QKeyEvent* ) ),
+            this, SLOT( OnKeyPress( SUIT_ViewWindow*, QKeyEvent* ) ) );
+    connect( vm, SIGNAL( mousePress( SUIT_ViewWindow*, QMouseEvent* ) ),
+            this, SLOT( OnMousePress( SUIT_ViewWindow*, QMouseEvent* ) ) );
+    connect( vm, SIGNAL( mouseMove ( SUIT_ViewWindow*, QMouseEvent* ) ),
+            this, SLOT( OnMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
+
+
+    LightApp_SelectionMgr* sm = getApp()->selectionMgr();
     myOCCSelectors.append( new GEOMGUI_OCCSelector( ((OCCViewer_ViewManager*)vm)->getOCCViewer(), sm ) );
 
     // disable OCC selectors
@@ -1417,14 +1550,14 @@ void GeometryGUI::onViewManagerAdded( SUIT_ViewManager* vm )
     for ( GEOMGUI_OCCSelector* sr = myOCCSelectors.first(); sr; sr = myOCCSelectors.next() )
       sr->setEnabled(true);
   }
-  else if ( vm->getType() == VTKViewer_Viewer::Type() )
+  else if ( vm->getType() == SVTK_Viewer::Type() )
   {
-    SalomeApp_SelectionMgr* sm = getApp()->selectionMgr();
-    myVTKSelectors.append( new SalomeApp_VTKSelector( (SVTK_Viewer*)vm->getViewModel(), sm ) );
-    
+    LightApp_SelectionMgr* sm = getApp()->selectionMgr();
+    myVTKSelectors.append( new LightApp_VTKSelector( dynamic_cast<SVTK_Viewer*>( vm->getViewModel() ), sm ) );
+
     // disable VTK selectors
-    getApp()->selectionMgr()->setEnabled( false, VTKViewer_Viewer::Type() );
-    for ( SalomeApp_VTKSelector* sr = myVTKSelectors.first(); sr; sr = myVTKSelectors.next() )
+    getApp()->selectionMgr()->setEnabled( false, SVTK_Viewer::Type() );
+    for ( LightApp_VTKSelector* sr = myVTKSelectors.first(); sr; sr = myVTKSelectors.next() )
       sr->setEnabled(true);
   }
 }
@@ -1441,9 +1574,9 @@ void GeometryGUI::onViewManagerRemoved( SUIT_ViewManager* vm )
        break;
       }
   }
-  if ( vm->getType() == VTKViewer_Viewer::Type() )
+  if ( vm->getType() == SVTK_Viewer::Type() )
   {
-    for ( SalomeApp_VTKSelector* sr = myVTKSelectors.first(); sr; sr = myVTKSelectors.next() )
+    for ( LightApp_VTKSelector* sr = myVTKSelectors.first(); sr; sr = myVTKSelectors.next() )
       if ( sr->viewer() == viewer )
       {
        myVTKSelectors.remove( sr );
@@ -1459,7 +1592,7 @@ QString GeometryGUI::engineIOR() const
   return QString( "" );
 }
 
-SalomeApp_Selection* GeometryGUI::createSelection() const
+LightApp_Selection* GeometryGUI::createSelection() const
 {
   return new GEOMGUI_Selection();
 }
@@ -1485,11 +1618,11 @@ void GeometryGUI::createPreferences()
 
   int genGroup = addPreference( tr( "PREF_GROUP_GENERAL" ), tabId );
   addPreference( tr( "PREF_SHADING_COLOR" ), genGroup,
-                SalomeApp_Preferences::Color, "Geometry", "shading_color" );
+                LightApp_Preferences::Color, "Geometry", "shading_color" );
   int step = addPreference( tr( "PREF_STEP_VALUE" ), genGroup,
-                           SalomeApp_Preferences::IntSpin, "Geometry", "SettingsGeomStep" );
+                           LightApp_Preferences::IntSpin, "Geometry", "SettingsGeomStep" );
   int dispmode = addPreference( tr( "PREF_DISPLAY_MODE" ), genGroup,
-                           SalomeApp_Preferences::Selector, "Geometry", "display_mode" );
+                           LightApp_Preferences::Selector, "Geometry", "display_mode" );
 
   setPreferenceProperty( genGroup, "columns", 1 );
 
@@ -1513,3 +1646,10 @@ void GeometryGUI::createPreferences()
 void GeometryGUI::preferencesChanged( const QString& section, const QString& param )
 {
 }
+
+LightApp_Displayer* GeometryGUI::displayer()
+{
+  if( !myDisplayer )
+    myDisplayer = new GEOM_Displayer( dynamic_cast<SalomeApp_Study*>( getApp()->activeStudy() ) );
+  return myDisplayer;
+}