]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/InteractorStyleMaracas.cxx
#3012 creaMaracasVisu Bug New Normal - Update Image in ViewerNV
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / InteractorStyleMaracas.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 #include "InteractorStyleMaracas.h"
28 //---------------------------------------------------------------------------
29 //---------------------------------------------------------------------------
30 //---------------------------------------------------------------------------
31
32 InteractorStyleMaracas::InteractorStyleMaracas()
33 {
34         _active                                         = true;
35         _vtkInteractorStyleBaseView     = NULL;
36 }
37 //---------------------------------------------------------------------------
38 InteractorStyleMaracas::~InteractorStyleMaracas()
39 {
40 }
41
42 // ----------------------------------------------------------------------------
43 InteractorStyleMaracas * InteractorStyleMaracas::Clone()  // virtual 
44 {
45         InteractorStyleMaracas * clone = new InteractorStyleMaracas();
46         CopyAttributesTo(clone);
47         return clone;
48 }
49
50 // ---------------------------------------------------------------------------
51
52 void InteractorStyleMaracas::CopyAttributesTo( InteractorStyleMaracas * cloneObject)
53 {
54         // Fathers object
55         //<FATHERCLASS>::CopyAttributesTo(cloneObject);
56
57         cloneObject->SetActive(  this->GetActive() );
58 }
59
60
61 //---------------------------------------------------------------------------
62 bool InteractorStyleMaracas::OnChar() //virtual
63 {
64         return true;
65 }
66 //---------------------------------------------------------------------------
67 bool InteractorStyleMaracas::OnMouseMove() //virtual
68 {
69         return true;
70 }
71 //---------------------------------------------------------------------------
72 bool InteractorStyleMaracas::OnLeftButtonDown() //virtual
73 {
74         return true;
75 }
76 //---------------------------------------------------------------------------
77 bool InteractorStyleMaracas::OnLeftButtonUp() //virtual
78 {
79         return true;
80 }
81 //---------------------------------------------------------------------------
82 bool  InteractorStyleMaracas::OnLeftDClick() //virtual
83 {
84         return true;
85 }
86 //---------------------------------------------------------------------------
87 bool InteractorStyleMaracas::OnMiddleButtonDown()  //virtual
88 {
89         return true;
90 }
91 //---------------------------------------------------------------------------
92 bool InteractorStyleMaracas::OnMiddleButtonUp() //virtual
93 {
94         return true;
95 }
96 //---------------------------------------------------------------------------
97 bool InteractorStyleMaracas::OnMiddleDClick() //virtual
98 {
99         return true;
100 }
101 //---------------------------------------------------------------------------
102 bool InteractorStyleMaracas::OnRightButtonDown() //virtual
103 {
104         return true;
105 }
106 //---------------------------------------------------------------------------
107 bool InteractorStyleMaracas::OnRightButtonUp() //virtual
108 {
109         return true;
110 }
111 //---------------------------------------------------------------------------
112 bool InteractorStyleMaracas::OnRightDClick() //virtual
113 {
114         return true;
115 }
116
117 //---------------------------------------------------------------------------
118 bool InteractorStyleMaracas::OnMouseWheelForward() //virtual
119 {
120         return true;
121 }
122 //---------------------------------------------------------------------------
123 bool InteractorStyleMaracas::OnMouseWheelBackward()  //virtual
124 {
125         return true;
126 }
127 //---------------------------------------------------------------------------
128 void InteractorStyleMaracas::SetVtkInteractorStyleBaseView(vtkInteractorStyleBaseView* vtkInteractorStyleBaseView)
129 {
130         _vtkInteractorStyleBaseView = vtkInteractorStyleBaseView;
131 }
132 //---------------------------------------------------------------------------
133 void InteractorStyleMaracas::RemoveVtkInteractorStyleBaseView()
134 {
135         _vtkInteractorStyleBaseView = NULL;
136 }
137 //---------------------------------------------------------------------------
138 void InteractorStyleMaracas::SetActive(bool active)
139 {
140         _active = active;
141 }
142 //---------------------------------------------------------------------------
143 bool InteractorStyleMaracas::GetActive()
144 {
145         return _active;
146 }
147
148