]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/vtkInteractorManualPaint.cpp
122eccf2f9e551153215930e6f93b248b0e47f34
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / manualPaint / vtkInteractorManualPaint.cpp
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 #include "vtkInteractorManualPaint.h"
27
28 #include "wxVtk2DBaseView.h"
29 #include "wxVTKRenderWindowInteractor.h"
30
31 vtkInteractorManualPaint::vtkInteractorManualPaint(ManualPaintControler* mpc) {
32         _manualPaintControler = mpc;
33         _state = false;
34         _stateKey = false;
35         _stateMouse = false;
36 }
37
38 //---------------------------------------------------------------------------
39 vtkInteractorManualPaint::~vtkInteractorManualPaint() {
40 }
41
42 //---------------------------------------------------------------------------
43 bool vtkInteractorManualPaint::OnChar() {
44         vtkRenderWindowInteractor *interactor = _vtkInteractorStyleBaseView->GetInteractor();
45         if (interactor->GetKeyCode() == 97) {
46                 _stateKey = !_stateKey;
47         }
48         return true;
49 }
50
51 //---------------------------------------------------------------------------
52 bool vtkInteractorManualPaint::OnLeftButtonDown() {
53         vtkRenderWindowInteractor *interactor =
54                         _vtkInteractorStyleBaseView->GetInteractor();
55         if (interactor->GetControlKey() == 1) {
56                 _state = true;
57 //        wxVtk2DBaseView             *wxvtk2Dbaseview    = (wxVtk2DBaseView*)_vtkInteractorStyleBaseView->GetWxVtk2DBaseView();
58 //        _Z      =   wxvtk2Dbaseview->GetActualSlice();
59         }
60         return true;
61 }
62
63 //---------------------------------------------------------------------------
64 bool vtkInteractorManualPaint::OnLeftButtonUp() {
65     if((_state == true) || (_stateKey == true))
66         _manualPaintControler->SetImageUndo();
67         _state = false;
68         return true;
69 }
70
71 //---------------------------------------------------------------------------
72 bool vtkInteractorManualPaint::OnMouseMove() 
73 {
74 printf("EED vtkInteractorManualPaint::OnMouseMove \n");
75         if ((_state == true) || (_stateKey == true)) {
76                 wxVtk2DBaseView *wxvtk2Dbaseview =
77                                 (wxVtk2DBaseView*) _vtkInteractorStyleBaseView->GetWxVtk2DBaseView();
78                 wxVTKRenderWindowInteractor *wxVTKiren =
79                                 wxvtk2Dbaseview->GetWxVTKRenderWindowInteractor();
80                 int px, py;
81                 wxVTKiren->GetEventPosition(px, py);
82
83 //        int     typeView = 1;
84                 double X = (double) px;
85                 double Y = (double) py;
86                 double Z = wxvtk2Dbaseview->GetActualSlice();
87 //        wxvtk2Dbaseview->TransFromCoordScreenToWorld(X, Y, Z,true, typeView);
88                 wxvtk2Dbaseview->TransFromCoordScreenToWorld(X, Y, Z, true);
89
90 printf("EED vtkInteractorManualPaint::OnMouseMove A  %d %d %d\n", (int) X, (int) Y, (int) Z);
91                 _manualPaintControler->PaintImage((int) X, (int) Y, (int) Z);
92                 this->_vtkInteractorStyleBaseView->SetParent_refresh_waiting();
93
94                 /*
95                  wxvtk2Dbaseview->_imageViewer2XYZ->GetVtkImageViewer2()->Modified();
96                  wxvtk2Dbaseview->_imageViewer2XYZ->GetVtkImageViewer2()->GetImageActor()->Modified();
97                  wxvtk2Dbaseview->_imageViewer2XYZ->GetVtkImageViewer2()->GetImageActor()->SetDisplayExtent(0, 50+_auxZ, 0, 50,_Z, _Z );
98                  wxvtk2Dbaseview->Refresh();
99                  wxvtk2Dbaseview->RefreshView();
100                  //        wxvtk2Dbaseview->SetActualSlice(_Z+_auxZ);
101                  _auxZ=(_auxZ+1)%2;
102                  wxvtk2Dbaseview->_imageViewer2XYZ->GetVtkImageViewer2()->GetRenderer()->Render();
103                  this->_vtkInteractorStyleBaseView->SetParent_refresh_waiting();
104                  */
105         } // if _state
106         return true;
107 }
108