]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkInteractorStyleBaseView2D.cxx
changes in vtkInteractorStyleBaseView2D. Check out the constructor of this class...
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / vtkInteractorStyleBaseView2D.cxx
index b33cd8e43d6476e6df1a792c862d2186727cdd0d..5779b98473621548ae693b421875c15acf2c464d 100644 (file)
@@ -8,18 +8,39 @@ vtkStandardNewMacro(vtkInteractorStyleBaseView2D);
 //---------------------------------------------------------------------------
 vtkInteractorStyleBaseView2D::vtkInteractorStyleBaseView2D()
 {
-       _manualinteractorwindowlevel= new manualInteractorWindowLevel();
-       AddInteractorStyleMaracas( _manualinteractorwindowlevel );
-
-       _vtkInteractorScrollZ = new vtkInteractorScrollZ();
-       AddInteractorStyleMaracas(_vtkInteractorScrollZ);
-       
+       ////////////
+       // RaC 04-2010 This mechanism of adding new functionalities has to be made externally in order 
+       // to maintain a plugin architecture. 
+       // Remember: The manualInteractorWindowLevel changes the window level over the image
+       //           The vtkInteractorScrollZ changes the slice with right click interaction
+       //                       This vtkInteractorStyleBaseView2D gives the minimal interaction with a 2D scene
+       //
+       // _manualinteractorwindowlevel= new manualInteractorWindowLevel();
+       // AddInteractorStyleMaracas( _manualinteractorwindowlevel );
+       //
+       // _vtkInteractorScrollZ = new vtkInteractorScrollZ();
+       // AddInteractorStyleMaracas(_vtkInteractorScrollZ);
+       ////////////
 }
 //---------------------------------------------------------------------------
 vtkInteractorStyleBaseView2D::~vtkInteractorStyleBaseView2D()
 {
 }
 
+//---------------------------------------------------------------------------
+void  vtkInteractorStyleBaseView2D::SetInteractorScrollZ(vtkInteractorScrollZ* interactorScroll)
+{    
+       _vtkInteractorScrollZ = interactorScroll;
+       AddInteractorStyleMaracas(_vtkInteractorScrollZ);
+}
+
+//---------------------------------------------------------------------------
+void  vtkInteractorStyleBaseView2D::SetInteractorWindowLevel(manualInteractorWindowLevel* interactorWindowLevel)
+{    
+       _manualinteractorwindowlevel = interactorWindowLevel;
+       AddInteractorStyleMaracas(_manualinteractorwindowlevel);
+}
+
 //---------------------------------------------------------------------------
 void  vtkInteractorStyleBaseView2D::OnRightButtonDown()  // virtual
 {