]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkInteractorStyleSphere.cxx
#3322 creaContours Feature New Normal - Show reference contour Befor After actual...
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / vtkInteractorStyleSphere.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 "vtkInteractorStyleSphere.h"
28
29 #include "wxSphereView.h"
30
31 vtkInteractorStyleSphere::vtkInteractorStyleSphere()
32 {
33         _stateRadio  = false;
34         _stateRotate = false;
35 }
36
37 //---------------------------------------------------------------------------
38 vtkInteractorStyleSphere::~vtkInteractorStyleSphere()
39 {
40 }
41
42 //--------------------------------------------------------------------------
43 bool  vtkInteractorStyleSphere::OnRightButtonDown()
44 {
45         if ((_vtkInteractorStyleBaseView->GetInteractor()->GetControlKey()==0) && (_vtkInteractorStyleBaseView->GetInteractor()->GetShiftKey()==0) )
46         {
47                 _stateRadio     = true;
48                 //_fordwareX    = this->Interactor->GetEventPosition()[0];
49                 _fordwareY      = _vtkInteractorStyleBaseView->GetInteractor()->GetEventPosition()[1];
50                 wxSphereView *wxsphereview = (wxSphereView*)(_vtkInteractorStyleBaseView->GetWxVtk2DBaseView());
51                 _radio = wxsphereview->GetRadio();
52         }
53         return true;
54 }
55
56 //---------------------------------------------------------------------------
57 bool  vtkInteractorStyleSphere::OnRightButtonUp() 
58 {
59         if (_stateRadio==true)
60         {
61                 wxSphereView *wxsphereview = (wxSphereView*)(_vtkInteractorStyleBaseView->GetWxVtk2DBaseView());
62                 wxsphereview->SetDeltaVoxel(1);
63                 double radio=wxsphereview->GetRadio();
64                 wxsphereview->GetIdOfImage(radio+0.1);
65                 wxsphereview->GetIdOfImage(radio+0.2);
66                 wxsphereview->GetIdOfImage(radio-0.1);
67                 wxsphereview->GetIdOfImage(radio-0.2);
68                 wxsphereview->RefreshView();
69                 _stateRadio = false;
70         }
71         return true;
72 }
73
74 //---------------------------------------------------------------------------
75 bool vtkInteractorStyleSphere::OnLeftButtonDown()
76 {
77         _stateRotate    = true;
78         _fordwareX              = _vtkInteractorStyleBaseView->GetInteractor()->GetEventPosition()[0];
79         _fordwareY              = _vtkInteractorStyleBaseView->GetInteractor()->GetEventPosition()[1];
80         return true;
81 }
82
83 //---------------------------------------------------------------------------
84 bool  vtkInteractorStyleSphere::OnLeftButtonUp() 
85 {
86         wxSphereView *wxsphereview = (wxSphereView*)(_vtkInteractorStyleBaseView->GetWxVtk2DBaseView());
87         if (_stateRotate==true){
88                 int fx  = _vtkInteractorStyleBaseView->GetInteractor()->GetEventPosition()[0];
89                 int fy  = _vtkInteractorStyleBaseView->GetInteractor()->GetEventPosition()[1];
90
91                 if ((_fordwareX==fx)&&(_fordwareY==fy)){
92                         double x=fx,y=fy,z=1;
93                         _vtkInteractorStyleBaseView->TransformCoordinate(x,y,z);            
94                         wxsphereview->SetXYZtoParent(x,y);
95                         wxCommandEvent newevent(wxEVT_COMMAND_MENU_SELECTED,12121);
96 //EED 2017-09-16 Migration wxWidgets 2.8 to 3.0
97 #if wxMAJOR_VERSION <= 2
98                         wxsphereview->GetWxVTKRenderWindowInteractor()->GetParent()->ProcessEvent(newevent);
99 #else
100                         wxsphereview->GetWxVTKRenderWindowInteractor()->GetParent()->ProcessWindowEvent(newevent);
101 #endif
102
103                 } else {
104                         wxsphereview->RotationEnd();
105                 }
106                 wxsphereview->RefreshView();
107                 _stateRotate = false;
108         }
109         return true;
110 }
111
112
113 //---------------------------------------------------------------------------
114 bool  vtkInteractorStyleSphere::OnMouseMove () 
115 {
116         wxSphereView *wxsphereview = (wxSphereView*)(_vtkInteractorStyleBaseView->GetWxVtk2DBaseView());
117
118         if (_stateRotate==true)
119         {
120                 bool ok_v, ok_ang;
121                 ok_v=false;
122                 ok_ang=false;
123                 if (_vtkInteractorStyleBaseView->GetInteractor()->GetControlKey()==1)
124                 {
125                         ok_v = true;
126                 }
127                 if (_vtkInteractorStyleBaseView->GetInteractor()->GetShiftKey()==1)
128                 {
129                         ok_ang = true;
130                 }
131             int fx = _vtkInteractorStyleBaseView->GetInteractor()->GetEventPosition()[0];
132         int fy = _vtkInteractorStyleBaseView->GetInteractor()->GetEventPosition()[1];
133                 wxsphereview->RotationStart( fx - _fordwareX , -(fy - _fordwareY) , ok_v, ok_ang);
134                 wxsphereview->RefreshView();
135         } 
136         if (_stateRadio==true)
137         {           
138
139                 //int fx = this->Interactor->GetEventPosition()[0];
140         int fy = _vtkInteractorStyleBaseView->GetInteractor()->GetEventPosition()[1];
141                 double dif=(fy-_fordwareY) / 10.0;
142                 wxsphereview->SetRadio( _radio + dif );
143                 wxsphereview->SetDeltaVoxel(3);
144
145                 wxsphereview->RefreshView();
146         }
147         return true;
148 }
149
150
151
152
153
154
155
156
157