]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualInteractorWindowLevel.cxx
#3012 creaMaracasVisu Bug New Normal - Update Image in ViewerNV
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / manualInteractorWindowLevel.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 "manualInteractorWindowLevel.h"
28 #include "wxVtk2DBaseView.h"
29 //-------------------------------------------------------------------
30 //-------------------------------------------------------------------
31 //-------------------------------------------------------------------
32
33 manualInteractorWindowLevel::manualInteractorWindowLevel()
34 {
35         _stateWindowLevel       =       false;
36         _backPx                         =       0;
37         _backPy                         =       0;
38         _backWindow                     =       -1;
39         _backLevel                      =       -1;
40 }
41
42 //-------------------------------------------------------------------
43
44 manualInteractorWindowLevel::~manualInteractorWindowLevel()
45 {
46 }
47
48 //-------------------------------------------------------------------
49
50 bool manualInteractorWindowLevel::OnMouseMove()                 // virtual 
51 {
52         if (_stateWindowLevel==true)
53         {
54                 int tmpPx,tmpPy;
55                 wxVTKRenderWindowInteractor *wxVTKiren;
56                 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
57                 wxVTKiren->GetEventPosition( tmpPx , tmpPy );
58
59                 double colorWin;
60                 double colorLev;
61                 
62                 vtkImageData* imgrange = ((wxVtk2DBaseView*)_vtkInteractorStyleBaseView->GetWxVtk2DBaseView())->GetVtkBaseData()->GetImageData();
63
64                 if(imgrange != NULL){
65                         double* scalarrange = imgrange->GetScalarRange();
66                         double scalarr = scalarrange[1] - scalarrange[0];
67                         //std::cout<<"scalar r="<<scalarr<<std::endl;
68                         int w, h;
69                         ((wxWindow*)wxVTKiren)->GetSize(&w, &h);                        
70
71                         double dw=w,dh=h;
72                         double dx = (scalarr*( _backPx - tmpPx ))/dw;
73                         double dy = (scalarr*( _backPy - tmpPy ))/dh;
74
75                         //colorWin=_backWindow - (scalarr)*( _backPx - tmpPx );
76                         colorWin=_backWindow - dx;
77                         colorLev=_backLevel  + dy;
78                 }else{
79                         colorWin=_backWindow - 2*( _backPx - tmpPx );
80                         colorLev=_backLevel  + 2*( _backPy - tmpPy );
81                 }
82
83                 if (colorWin<0)
84                 { 
85                         colorWin=0;
86                 }
87                 if (colorWin>100000)
88                 { 
89                         colorWin=100000;
90                 }       
91                 
92 //EED 2 Nov 2012  This lets see negative values with the interaction of Window-Level Color
93 //              if (colorLev<0)
94 //              { 
95 //                      colorLev=0;
96 //              }
97                 
98                 if (colorLev>100000)
99                 { 
100                         colorLev=100000;
101                 }
102                 
103                 wxVtk2DBaseView *wxvtk2Dbaseview        = (wxVtk2DBaseView*)_vtkInteractorStyleBaseView->GetWxVtk2DBaseView();
104                 vtkBaseData *vtkbasedata                        = wxvtk2Dbaseview->GetVtkBaseData();
105                 
106 //EED Borrame
107 //              vtkImageViewer2 *vtkimageviewer2        = wxvtk2Dbaseview->_imageViewer2XYZ->GetVtkImageViewer2();              
108 //              vtkimageviewer2->SetColorWindow(colorWin);
109 //              vtkimageviewer2->SetColorLevel(colorLev);
110                 
111                 vtkbasedata->SetColorWindow(colorWin);
112                 vtkbasedata->SetColorLevel(colorLev);
113                 
114                 this->_vtkInteractorStyleBaseView->SetParent_refresh_waiting();
115                 
116 //              vtkimageviewer2->Render();
117         }
118
119
120         return true;
121 }
122
123 //-------------------------------------------------------------------
124
125 bool manualInteractorWindowLevel::OnMiddleButtonDown()  // virtual 
126 {
127         if ((_vtkInteractorStyleBaseView->GetInteractor()->GetControlKey()==0) &&
128                 (_vtkInteractorStyleBaseView->GetInteractor()->GetShiftKey()==0) ){
129                 _stateWindowLevel       = true;
130                 wxVTKRenderWindowInteractor *wxVTKiren;
131                 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
132                 wxVTKiren->GetEventPosition( _backPx , _backPy );
133                 _backWindow = ((wxVtk2DBaseView*)_vtkInteractorStyleBaseView->GetWxVtk2DBaseView())->_imageViewer2XYZ->GetVtkImageViewer2()->GetColorWindow();
134                 _backLevel  = ((wxVtk2DBaseView*)_vtkInteractorStyleBaseView->GetWxVtk2DBaseView())->_imageViewer2XYZ->GetVtkImageViewer2()->GetColorLevel();
135         }
136         return true;
137 }
138
139 //-------------------------------------------------------------------
140
141 bool manualInteractorWindowLevel::OnMiddleButtonUp()            // virtual
142 {
143         if (_stateWindowLevel==true)
144         {
145                 _stateWindowLevel=false;
146         }
147         return true;
148 }