]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkInteractorStyleBaseView2D.cxx
e077370577783109afb801e0aa48251100750dfc
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / vtkInteractorStyleBaseView2D.cxx
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26
27
28 #include "vtkInteractorStyleBaseView2D.h"
29 #include <vtkObjectFactory.h>
30
31 vtkStandardNewMacro(vtkInteractorStyleBaseView2D);
32
33 //---------------------------------------------------------------------------
34 vtkInteractorStyleBaseView2D::vtkInteractorStyleBaseView2D()
35 {
36         ////////////
37         // RaC 04-2010 This mechanism of adding new functionalities has to be made externally in order 
38         // to maintain a plugin architecture. 
39         // Remember: The manualInteractorWindowLevel changes the window level over the image
40         //           The vtkInteractorScrollZ changes the slice with right click interaction
41         //                       This vtkInteractorStyleBaseView2D gives the minimal interaction with a 2D scene
42         //
43         // _manualinteractorwindowlevel= new manualInteractorWindowLevel();
44         // AddInteractorStyleMaracas( _manualinteractorwindowlevel );
45         //
46         // _vtkInteractorScrollZ = new vtkInteractorScrollZ();
47         // AddInteractorStyleMaracas(_vtkInteractorScrollZ);
48         ////////////
49 }
50 //---------------------------------------------------------------------------
51 vtkInteractorStyleBaseView2D::~vtkInteractorStyleBaseView2D()
52 {
53 }
54
55 //---------------------------------------------------------------------------
56 void  vtkInteractorStyleBaseView2D::SetInteractorScrollZ(vtkInteractorScrollZ* interactorScroll)
57 {    
58         _vtkInteractorScrollZ = interactorScroll;
59         AddInteractorStyleMaracas(_vtkInteractorScrollZ);
60 }
61
62 //---------------------------------------------------------------------------
63 void  vtkInteractorStyleBaseView2D::SetInteractorWindowLevel(manualInteractorWindowLevel* interactorWindowLevel)
64 {    
65         _manualinteractorwindowlevel = interactorWindowLevel;
66         AddInteractorStyleMaracas(_manualinteractorwindowlevel);
67 }
68
69 //---------------------------------------------------------------------------
70 void  vtkInteractorStyleBaseView2D::OnRightButtonDown()  // virtual
71 {    
72         vtkInteractorStyleBaseView::OnRightButtonDown();
73
74         if ((GetInteractor()->GetControlKey()==1) && (GetInteractor()->GetShiftKey()==0) ){
75                 this->vtkInteractorStyleImage::OnRightButtonDown();
76         }
77 }
78
79 //---------------------------------------------------------------------------
80 void  vtkInteractorStyleBaseView2D::OnRightButtonUp()  // virtual
81 {
82         vtkInteractorStyleBaseView::OnRightButtonUp();
83         this->vtkInteractorStyleImage::OnRightButtonUp();
84 }
85 //---------------------------------------------------------------------------
86 void  vtkInteractorStyleBaseView2D::OnMouseMove () // virtual
87 {
88         vtkInteractorStyleBaseView::OnMouseMove();
89         this->vtkInteractorStyleImage::OnMouseMove();
90 }
91 //---------------------------------------------------------------------------
92 void  vtkInteractorStyleBaseView2D::OnLeftButtonDown() // virtual
93 {
94         vtkInteractorStyleBaseView::OnLeftButtonDown();
95
96         if ((GetInteractor()->GetControlKey()==0) && (GetInteractor()->GetShiftKey()==1) )
97         {
98                 this->vtkInteractorStyleImage::OnLeftButtonDown();
99         }
100 }
101 //---------------------------------------------------------------------------
102 void  vtkInteractorStyleBaseView2D::OnLeftButtonUp () // virtual
103 {
104         vtkInteractorStyleBaseView::OnLeftButtonUp();
105
106         this->vtkInteractorStyleImage::OnLeftButtonUp();
107 }
108 //---------------------------------------------------------------------------
109 void  vtkInteractorStyleBaseView2D::OnMiddleButtonDown () // virtual
110 {
111         vtkInteractorStyleBaseView::OnMiddleButtonDown();
112
113         if ((GetInteractor()->GetControlKey()==1) || (GetInteractor()->GetShiftKey()==1) )
114         {
115                 this->vtkInteractorStyleImage::OnLeftButtonDown();
116         }
117 }
118 //---------------------------------------------------------------------------
119 void vtkInteractorStyleBaseView2D::OnMiddleButtonUp () // virtual
120 {
121         vtkInteractorStyleBaseView::OnMiddleButtonUp();
122
123         if ((GetInteractor()->GetControlKey()==1) || (GetInteractor()->GetShiftKey()==1) )
124         {
125                 this->vtkInteractorStyleImage::OnLeftButtonUp();
126         }
127 }
128
129 //---------------------------------------------------------------------------
130 void vtkInteractorStyleBaseView2D::OnMouseWheelForward () // virtual
131 {
132         vtkInteractorStyleBaseView::OnMouseWheelForward();      
133         if ((GetInteractor()->GetControlKey()==0) || (GetInteractor()->GetShiftKey()==0) )
134         {
135                 this->vtkInteractorStyleImage::OnMouseWheelForward();
136         }
137 }
138
139 //---------------------------------------------------------------------------
140 void vtkInteractorStyleBaseView2D::OnMouseWheelBackward () // virtual
141 {
142         vtkInteractorStyleBaseView::OnMouseWheelBackward();     
143         if ((GetInteractor()->GetControlKey()==0) || (GetInteractor()->GetShiftKey()==0) )
144         {
145                 this->vtkInteractorStyleImage::OnMouseWheelBackward();
146         }
147 }
148
149