]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
1. Remove useless dependecies
authorapo <apo@opencascade.com>
Tue, 13 Sep 2005 04:06:14 +0000 (04:06 +0000)
committerapo <apo@opencascade.com>
Tue, 13 Sep 2005 04:06:14 +0000 (04:06 +0000)
2. Do not check HasObserver case (all this are doing in the parent vtjInteractorStyle class)

src/SVTK/SVTK_InteractorStyle.cxx

index c9b2a9a7ed057952df8ac5f0337504df3c65f9f9..704e8d907d14d0480cf50edcd18f8d526cc40dd1 100644 (file)
@@ -43,9 +43,6 @@
 
 #include "SALOME_Actor.h"
 
-#include "SALOME_ListIteratorOfListIO.hxx"
-#include "SALOME_ListIO.hxx"
-
 #include <vtkObjectFactory.h>
 #include <vtkMath.h>
 #include <vtkCommand.h>
@@ -381,13 +378,8 @@ SVTK_InteractorStyle
 ::OnLeftButtonDown(int ctrl, int shift, 
                   int x, int y) 
 {
-  if (this->HasObserver(vtkCommand::LeftButtonPressEvent)) {
-    this->InvokeEvent(vtkCommand::LeftButtonPressEvent,NULL);
-    return;
-  }
-
   this->FindPokedRenderer(x, y);
-  if (GetCurrentRenderer() == NULL)
+  if(GetCurrentRenderer() == NULL)
     return;
 
   myShiftState = shift;
@@ -433,14 +425,8 @@ SVTK_InteractorStyle
                     int shift, 
                     int x, int y) 
 {
-  if (this->HasObserver(vtkCommand::MiddleButtonPressEvent)) 
-    {
-      this->InvokeEvent(vtkCommand::MiddleButtonPressEvent,NULL);
-      return;
-    }
-
   this->FindPokedRenderer(x, y);
-  if (GetCurrentRenderer() == NULL)
+  if(GetCurrentRenderer() == NULL)
     return;
 
   myShiftState = shift;
@@ -484,14 +470,8 @@ SVTK_InteractorStyle
                    int shift, 
                    int x, int y) 
 {
-  if (this->HasObserver(vtkCommand::RightButtonPressEvent)) 
-    {
-      this->InvokeEvent(vtkCommand::RightButtonPressEvent,NULL);
-      return;
-    }
-
   this->FindPokedRenderer(x, y);
-  if (GetCurrentRenderer() == NULL)
+  if(GetCurrentRenderer() == NULL)
     return;
 
   myShiftState = shift;