]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtkMPR2DView.cxx
517ca87925bd997bb706ddf1109daea013f4478c
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / wxVtkMPR2DView.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 #include "wxVtkMPR2DView.h"
27
28 #include "vtkInteractorStyleBaseView.h"
29
30 #include "vtkCellArray.h"
31 #include "vtkImageActor.h"
32
33 #ifdef WIN32
34 #include <mathdefs.h>
35 using namespace gtm;
36 #endif
37
38 wxVtkMPR2DView::wxVtkMPR2DView( wxWindow *parent, int direction)
39  :wxVtk2DBaseView(parent)
40 {
41         _backX                  = -99999;
42         _backY                  = -99999;
43         _backZ                  = -99999;
44         _direction              = direction;
45         _ptsA                   = NULL;
46         _lineAActor             = NULL;
47         _lineAMapper    = NULL;
48         _pdA                    = NULL;
49         _ptsB                   = NULL;
50         _lineBActor             = NULL;
51         _lineBMapper    = NULL;
52         _pdB                    = NULL;
53         _interactorstylemprview = NULL;
54 }
55
56 //-------------------------------------------------------------------
57 wxVtkMPR2DView::~wxVtkMPR2DView()
58 {
59         if (_ptsA!=NULL)            { _ptsA->Delete();                  }
60         if (_lineAActor!=NULL)  { _lineAActor->Delete();        }
61         if (_lineAMapper!=NULL) { _lineAMapper->Delete();       }
62         if (_pdA!=NULL)             { _pdA->Delete();                   }
63         if (_ptsB!=NULL)            { _ptsB->Delete();                  }
64         if (_lineBActor!=NULL)  { _lineBActor->Delete();        }
65         if (_lineBMapper!=NULL) { _lineBMapper->Delete();       }
66         if (_pdB!=NULL)             { _pdB->Delete();                   }
67 }
68 //-------------------------------------------------------------------
69 vtkMPRBaseData *wxVtkMPR2DView::GetVtkmprbasedata()
70 {
71         return (vtkMPRBaseData*)GetVtkBaseData();
72 }
73 //-------------------------------------------------------------------
74 void wxVtkMPR2DView::Configure()
75 {
76         wxVtk2DBaseView::Configure();
77         int x1,x2,y1,y2,z1,z2;
78         GetVtkmprbasedata()     -> GetDimensionExtention(&x1,&x2,&y1,&y2,&z1,&z2);
79         double spc[3];
80         vtkImageData* img =  GetVtkmprbasedata()->GetImageData();
81         if(_interactorstylemprview==NULL)
82         {
83                 _interactorstylemprview = new vtkInteractorStyleMPRView();
84                 ((vtkInteractorStyleBaseView*)GetInteractorStyleBaseView())->AddInteractorStyleMaracas( _interactorstylemprview );
85         }
86
87         if(img!=NULL)
88         {
89                 double* origin = img->GetOrigin();
90                 img->GetExtent(x1,x2,y1,y2,z1,z2);
91                 img->GetSpacing(spc);
92                 x1 += origin[0];
93                 x2 += origin[0];
94                 y1 += origin[1];
95                 y2 += origin[1];
96                 z1 += origin[2];
97                 z2 += origin[2];
98                 x1 = (int)(x1*spc[0]);
99                 y1 = (int)(y1*spc[1]);
100                 z1 = (int)(z1*spc[2]);
101                 x2 = (int)(x2*spc[0]);
102                 y2 = (int)(y2*spc[1]);
103                 z2 = (int)(z2*spc[2]);
104                 _visibleAxis = true;
105         }
106
107         // Axe A
108         if(_lineAActor==NULL){
109                 _lineAActor = vtkActor::New();
110                 _lineAActor->GetProperty()->SetDiffuseColor(1,0,0);
111                 _lineAActor->GetProperty()->SetLineWidth(0.5);
112
113                 _ptsA = vtkPoints::New();
114                 _ptsA->SetNumberOfPoints(2);
115                 _ptsA->SetPoint(0, -1000        , -1000 , -1000 );
116                 _ptsA->SetPoint(1,  1000        ,  1000 ,  1000 );
117                 _pdA = vtkPolyData::New();
118                 _lineAMapper = vtkPolyDataMapper::New();
119
120 //EED 2017-01-01 Migration VTK7
121 #if VTK_MAJOR_VERSION <= 5
122                 _lineAMapper->SetInput(_pdA);
123 #else
124                 _lineAMapper->SetInputData(_pdA);
125 #endif
126
127                 _lineAMapper->ImmediateModeRenderingOn();
128                 _lineAActor->SetMapper(_lineAMapper);
129         }
130
131         vtkCellArray *linesA = vtkCellArray::New();
132         linesA->InsertNextCell(2);
133         linesA->InsertCellPoint(0);
134         linesA->InsertCellPoint(1);
135         _pdA->SetPoints( _ptsA );
136         _pdA->SetLines( linesA );
137         linesA->Delete();  //do not delete lines ??
138 //              _lineAActor->GetProperty()->BackfaceCullingOn();
139
140
141 // Axe B
142         if(_lineBActor==NULL)
143         {
144                 _lineBActor                                             =       vtkActor::New();
145                 _lineBActor->GetProperty()->SetDiffuseColor(1,0,0);
146                 _lineBActor->GetProperty()->SetLineWidth(0.5);
147                 _lineBMapper                                    =       vtkPolyDataMapper::New();
148                 _lineBActor->SetMapper(_lineBMapper);
149                 _ptsB = vtkPoints::New();
150                 _ptsB->SetNumberOfPoints(2);
151                 _ptsB->SetPoint(0, -1000        , -1000 , -1000 );
152                 _ptsB->SetPoint(1,  1000        ,  1000 ,  1000 );
153 //              _lineBActor->GetProperty()->BackfaceCullingOn();
154         }
155
156         vtkCellArray *linesB;
157         linesB = vtkCellArray::New();
158         linesB->InsertNextCell(2);
159         linesB->InsertCellPoint(0);
160         linesB->InsertCellPoint(1);
161         _pdB = vtkPolyData::New();
162         _pdB->SetPoints( _ptsB );
163         _pdB->SetLines( linesB );
164         linesB->Delete();  //do not delete lines ??
165
166 //EED 2017-01-01 Migration VTK7
167 #if VTK_MAJOR_VERSION <= 5
168         _lineBMapper->SetInput(_pdB);
169 #else
170         _lineBMapper->SetInputData(_pdB);
171 #endif
172
173         _lineBMapper->ImmediateModeRenderingOn();
174         if(_imageViewer2XYZ)
175         {
176                 _imageViewer2XYZ->GetVtkImageViewer2()->GetRenderer()->AddActor( _lineAActor );
177                 _imageViewer2XYZ->GetVtkImageViewer2()->GetRenderer()->AddActor( _lineBActor );
178                 vtkCamera *camera =_imageViewer2XYZ->GetVtkImageViewer2()->GetRenderer()->GetActiveCamera();
179
180         //EED 17Avril2009
181     //EED 21 mars 2012  FLIP problem  ..PLOP..
182
183                 if (_direction==0) 
184                 {  // YZ
185                         camera->SetViewUp               (   0   ,    0          ,     1         );
186                         camera->SetPosition             ( 10000,(y1+y2)/2       , (z1+z2)/2     );
187                         camera->SetFocalPoint   (   0   , (y1+y2)/2     , (z1+z2)/2     );
188                         camera->SetParallelScale( (z2-z1)/3.0 );
189                 }
190                 if (_direction==1) 
191                 { // XZ
192                         camera->SetViewUp               (       0               ,       0       ,       1               );
193                         camera->SetPosition             ((x1+x2)/2      , -10000        , (z1+z2)/2     );
194                         camera->SetFocalPoint   ((x1+x2)/2      ,   0   , (z1+z2)/2     );
195                         camera->SetParallelScale( (x2-x1)/3.0 );
196                 }
197                 if (_direction==2) 
198                 {  // XY
199                         camera->SetViewUp               (       0               ,       -1              ,       0       );
200                         camera->SetPosition             ((x1+x2)/2      , (y1+y2)/2     , -10000);
201                         camera->SetFocalPoint   ((x1+x2)/2      , (y1+y2)/2     ,       0       );
202                         camera->SetParallelScale( (x2-x1)/3.0 );
203                 }
204
205 /*
206                 if (_direction==0) {    // YZ
207                         camera->SetViewUp               (   0   ,     1         ,     0         );
208                         camera->SetPosition             (  10000,(y1+y2)/2      , (z1+z2)/2     );
209                         camera->SetFocalPoint   (   0   , (y1+y2)/2     , (z1+z2)/2     );
210                         camera->SetParallelScale( (z2-z1)/3.0 );
211                 }
212
213                 if (_direction==1) {    // XZ
214                         camera->SetViewUp               (       0               ,       0       ,       -1              );
215                         camera->SetPosition             ((x1+x2)/2      , 10000 , (z1+z2)/2     );
216                         camera->SetFocalPoint   ((x1+x2)/2      ,   0   , (z1+z2)/2     );
217                         camera->SetParallelScale( (x2-x1)/3.0 );
218                 }
219
220                 if (_direction==2) {    // XY
221                         camera->SetViewUp               (       0               ,       1               ,       0       );
222                         camera->SetPosition             ((x1+x2)/2      , (y1+y2)/2     ,  10000);
223                         camera->SetFocalPoint   ((x1+x2)/2      , (y1+y2)/2     ,       0       );
224                         camera->SetParallelScale( (x2-x1)/3.0 );
225                 }
226 */
227
228         //      _imageViewer2XYZ->GetVtkImageViewer2()->SetColorWindow (160);
229         //      _imageViewer2XYZ->GetVtkImageViewer2()->SetColorLevel (800);
230         }
231 }
232
233 void wxVtkMPR2DView::SetVisibleAxis(bool ok)
234 {
235         if (ok != _visibleAxis)
236         {
237                 _visibleAxis = ok;
238                 if (_visibleAxis==true)
239                 {
240                         _imageViewer2XYZ->GetVtkImageViewer2()->GetRenderer()->AddActor( _lineAActor );
241                         _imageViewer2XYZ->GetVtkImageViewer2()->GetRenderer()->AddActor( _lineBActor );
242                 }
243                 if (_visibleAxis==false)
244                 {
245                         _imageViewer2XYZ->GetVtkImageViewer2()->GetRenderer()->RemoveActor( _lineAActor );
246                         _imageViewer2XYZ->GetVtkImageViewer2()->GetRenderer()->RemoveActor( _lineBActor );
247                 } // if visible
248         } // ok
249 }
250
251
252 //-------------------------------------------------------------------
253 void wxVtkMPR2DView::ResetBackXYZ()
254 {
255         _backX=-9999;
256         _backY=-9999;
257         _backZ=-9999;
258 }
259
260
261 //-------------------------------------------------------------------
262 void wxVtkMPR2DView::Refresh()
263 {
264         //wxVtk2DBaseView::Refresh();
265         int x1 = 0,x2 = 0,y1 = 0,y2 = 0,z1 = 0,z2 = 0;
266 //EED 02/08/2013
267 //      int x = 0, y = 0, z = 0;
268         double  x  = 0, y  = 0, z  = 0;
269         int     xx = 0, yy = 0, zz = 0;
270         double *spc     = 0;
271         double *origin  = 0;
272         double xx1,yy1,zz1,xx2,yy2,zz2;
273         bool   fixAxis2D;
274         double opacityAxis;
275         vtkImageData* img = GetVtkmprbasedata()->GetImageData();
276         if(img!=NULL)
277         {
278                 origin = img->GetOrigin();
279                 img->GetExtent(x1,x2,y1,y2,z1,z2);
280                 spc = img->GetSpacing();
281                 x1 += origin[0];
282                 x2 += origin[0];
283                 y1 += origin[1];
284                 y2 += origin[1];
285                 z1 += origin[2];
286                 z2 += origin[2];
287                 xx1 = x1*spc[0];
288                 yy1 = y1*spc[1];
289                 zz1 = z1*spc[2];
290                 xx2 = x2*spc[0];
291                 yy2 = y2*spc[1];
292                 zz2 = z2*spc[2];
293                 x1      = (int)(x1*spc[0]);
294                 y1      = (int)(y1*spc[1]);
295                 z1      = (int)(z1*spc[2]);
296                 x2      = (int)(x2*spc[0]);
297                 y2      = (int)(y2*spc[1]);
298                 z2      = (int)(z2*spc[2]);
299                 xx      = (int)(GetVtkmprbasedata()->GetX());
300                 yy      = (int)(GetVtkmprbasedata()->GetY());
301                 zz      = (int)(GetVtkmprbasedata()->GetZ());
302                 x       =  xx*spc[0];
303                 y       =  yy*spc[1];
304                 z       =  zz*spc[2];
305                 fixAxis2D               = GetVtkmprbasedata()->GetFixAxis2D();
306                 opacityAxis             = GetVtkmprbasedata()->GetOpacityAxis();
307                 if ((xx!=_backX) || (yy!=_backY) || (zz!=_backZ)  || (fixAxis2D!=_backFixAxis2D) || (opacityAxis!=_backOpacityAxis)) 
308                 {
309                         double position[3];
310                         double focalpoint[3];
311                         GetRenderer()->GetActiveCamera()->GetPosition(position);
312                         GetRenderer()->GetActiveCamera()->GetFocalPoint(focalpoint);
313                         if (_direction==0) {    // YZ
314                                 if(_imageViewer2XYZ)
315                                 {
316                                         _imageViewer2XYZ->SetXSlice( (int)(GetVtkmprbasedata()->GetX()) );
317                                 }
318 //EED 21 mars 2012  FLIP probleme  ..PLOP..
319                                 //_ptsA->SetPoint(0, x2, y1  , z );
320                                 //_ptsA->SetPoint(1, x2, y2  , z );
321                                 //_ptsB->SetPoint(0, x2, y   , z1);
322                                 //_ptsB->SetPoint(1, x2, y   , z2);
323                                 _ptsA->SetPoint(0, xx2, yy1  , z  );
324                                 _ptsA->SetPoint(1, xx2, yy2  , z  );
325                                 _ptsB->SetPoint(0, xx2, y    , zz1);
326                                 _ptsB->SetPoint(1, xx2, y    , zz2);
327                                 position[1]             = y;    
328                                 position[2]             = z;    
329                                 focalpoint[1]   = y;    
330                                 focalpoint[2]   = z;    
331                         }
332                         if (_direction==1) {    // XZ
333                                 if(_imageViewer2XYZ)
334                                 {
335                                         _imageViewer2XYZ->SetYSlice( (int)(GetVtkmprbasedata()->GetY()) );
336                                 }
337 //EED 21 mars 2012  FLIP probleme  ..PLOP..
338                             //_ptsA->SetPoint(0, x1 , y2 , z );
339                                 //_ptsA->SetPoint(1, x2 , y2 , z );
340                                 //_ptsB->SetPoint(0, x  , y2 , z1);
341                                 //_ptsB->SetPoint(1, x  , y2 , z2);
342                             _ptsA->SetPoint(0, xx1 , y1 , z  );
343                                 _ptsA->SetPoint(1, xx2 , y1 , z  );
344                                 _ptsB->SetPoint(0, x   , y1 , zz1);
345                                 _ptsB->SetPoint(1, x   , y1 , zz2);
346                                 position[0]             = x;    
347                                 position[2]             = z;    
348                                 focalpoint[0]   = x;    
349                                 focalpoint[2]   = z;    
350                         }
351                         if (_direction==2) {    // XY
352                                 if(_imageViewer2XYZ)
353                                 {
354                                         _imageViewer2XYZ->SetZSlice( (int)(GetVtkmprbasedata()->GetZ()) );
355                                 }
356                         //      _ptsA->SetPoint(0, x1 , y , -z2 );
357                         //      _ptsA->SetPoint(1, x2 , y , -z2 );
358                         //      _ptsB->SetPoint(0, x  , y1, -z2 );
359                         //      _ptsB->SetPoint(1, x  , y2, -z2 );
360
361                                 
362 //EED 21 mars 2012  FLIP probleme  ..PLOP..
363                                 //_ptsA->SetPoint(0, x1 , y , z2 );
364                                 //_ptsA->SetPoint(1, x2 , y , z2 );
365                                 //_ptsB->SetPoint(0, x  , y1, z2 );
366                                 //_ptsB->SetPoint(1, x  , y2, z2 );
367                                 _ptsA->SetPoint(0, xx1 , y  , z1 );
368                                 _ptsA->SetPoint(1, xx2 , y  , z1 );
369                                 _ptsB->SetPoint(0, x   , yy1, z1 );
370                                 _ptsB->SetPoint(1, x   , yy2, z1 );
371                                 position[0]             = x;    
372                                 position[1]             = y;    
373                                 focalpoint[0]   = x;    
374                                 focalpoint[1]   = y;                                    
375                         } // if back
376                         
377 //EED 2017-01-01 Migration VTK7
378 #if VTK_MAJOR_VERSION <= 5
379                                 // ..
380 #else
381                                 _ptsA->Modified();
382                                 _ptsB->Modified();
383 #endif
384
385                         if (fixAxis2D == true)
386                         {
387                                 GetRenderer()->GetActiveCamera()->SetPosition(position);
388                                 GetRenderer()->GetActiveCamera()->SetFocalPoint(focalpoint);
389                         } // if GetFixAxis2D
390                         _lineAActor->GetProperty()->SetOpacity( opacityAxis );
391                         _lineBActor->GetProperty()->SetOpacity( opacityAxis );
392                         _backX                  = xx;
393                         _backY                  = yy;
394                         _backZ                  = zz;
395                         _backFixAxis2D  = fixAxis2D;
396                         _backOpacityAxis= opacityAxis;
397                 } // if image
398
399 //EED 2016/02/19
400         vtkImageActor *imageactor = _imageViewer2XYZ->GetVtkImageViewer2()->GetImageActor();
401         imageactor->SetInterpolate( GetVtkBaseData()->GetInterpolate() );
402 //EED 01nov2012
403                 UpdateColorWindowLevel();
404 //EED 05juin2019
405                 UpdateCameraParallelScale();
406                 wxVtkBaseView::Refresh();
407         }
408 }
409
410 //-------------------------------------------------------------------
411 int wxVtkMPR2DView::GetActualSlice()   // virtual
412 {
413         int result;
414         if (_direction==0)
415         {
416                 result = (int)(GetVtkmprbasedata()->GetX());
417         }
418         if (_direction==1)
419         {
420                 result = (int)(GetVtkmprbasedata()->GetY());
421         }
422         if (_direction==2)
423         {
424                 result = (int)(GetVtkmprbasedata()->GetZ());
425         }
426         return result;
427 }
428 //-------------------------------------------------------------------
429 void wxVtkMPR2DView::SetActualSlice(int slice)   // virtual
430 {
431         if (_direction==0)
432         {
433                 GetVtkmprbasedata()->SetX(slice);
434         }
435         if (_direction==1)
436         {
437                 GetVtkmprbasedata()->SetY(slice);
438         }
439         if (_direction==2)
440         {
441                 GetVtkmprbasedata()->SetZ(slice);
442         }
443 }
444 //-------------------------------------------------------------------
445 bool wxVtkMPR2DView::IfMouseTouchX(double x, double y, double z)
446 {
447         double delta=5;
448         bool result=false;
449         if (_direction==0)
450         {
451         }
452         if (_direction==1)
453         {
454                 if (( x<GetVtkmprbasedata()->GetX()+delta ) && ( x>GetVtkmprbasedata()->GetX()-delta ))
455                 {
456                         result = true;
457                 }
458         }
459         if (_direction==2)
460         {
461                 if (( x<GetVtkmprbasedata()->GetX()+delta ) && ( x>GetVtkmprbasedata()->GetX()-delta ))
462                 {
463                         result = true;
464                 }
465         }
466         return result;
467 }
468 //-------------------------------------------------------------------
469 bool wxVtkMPR2DView::IfMouseTouchY(double x, double y, double z)
470 {
471         double delta=5;
472         bool result=false;
473         if (_direction==0)
474         {
475                 if (( y<GetVtkmprbasedata()->GetY()+delta ) && ( y>GetVtkmprbasedata()->GetY()-delta ))
476                 {
477                         result = true;
478                 }
479         }
480         if (_direction==1)
481         {
482         }
483         if (_direction==2)
484         {
485                 if (( y<GetVtkmprbasedata()->GetY()+delta ) && ( y>GetVtkmprbasedata()->GetY()-delta ))
486                 {
487                         result = true;
488                 }
489         }
490         return result;
491 }
492 //-------------------------------------------------------------------
493 bool wxVtkMPR2DView::IfMouseTouchZ(double x, double y, double z)
494 {
495         double delta=5;
496         bool result=false;
497         if (_direction==0)
498         {
499                 if (( z<GetVtkmprbasedata()->GetZ()+delta ) && ( z>GetVtkmprbasedata()->GetZ()-delta ))
500                 {
501                         result = true;
502                 }
503         }
504         if (_direction==1)
505         {
506                 if (( z<GetVtkmprbasedata()->GetZ()+delta ) && ( z>GetVtkmprbasedata()->GetZ()-delta ))
507                 {
508                         result = true;
509                 }
510         }
511         if (_direction==2)
512         {
513         }
514         return result;
515 }
516 //-------------------------------------------------------------------
517 void wxVtkMPR2DView::MoveX(double x, double y, double z)
518 {
519         if (_direction==0)
520         {
521         }
522         if (_direction==1)
523         {
524                 GetVtkmprbasedata()->SetX(x);
525         }
526         if (_direction==2)
527         {
528                 GetVtkmprbasedata()->SetX(x);
529         }
530 }
531 //-------------------------------------------------------------------
532 void wxVtkMPR2DView::MoveY(double x, double y, double z)
533 {
534         if (_direction==0)
535         {
536                 GetVtkmprbasedata()->SetY(y);
537         }
538         if (_direction==1)
539         {
540         }
541         if (_direction==2)
542         {
543                 GetVtkmprbasedata()->SetY(y);
544         }
545 }
546 //-------------------------------------------------------------------
547 void wxVtkMPR2DView::MoveZ(double x, double y, double z)
548 {
549         if (_direction==0)
550         {
551                 GetVtkmprbasedata()->SetZ(z);
552         }
553         if (_direction==1)
554         {
555                 GetVtkmprbasedata()->SetZ(z);
556         }
557         if (_direction==2)
558         {
559         }
560 }
561 //-------------------------------------------------------------------
562 void wxVtkMPR2DView::ChangeAxisColor(double x, double y, double z)
563 {
564         double c1r=1,c1g=1,c1b=0;
565         double c2r=1,c2g=0,c2b=0;
566
567         if (_direction==0)
568         {
569                 if (IfMouseTouchY(x,y,z)==true)
570                 {
571                         _lineBActor->GetProperty()->SetDiffuseColor(c1r,c1g,c1b);
572                 } else {
573                         _lineBActor->GetProperty()->SetDiffuseColor(c2r,c2g,c2b);
574                 }
575                 if (IfMouseTouchZ(x,y,z)==true)
576                 {
577                         _lineAActor->GetProperty()->SetDiffuseColor(c1r,c1g,c1b);
578                 } else {
579                         _lineAActor->GetProperty()->SetDiffuseColor(c2r,c2g,c2b);
580                 }
581         }
582
583         if (_direction==1)
584         {
585                 if (IfMouseTouchX(x,y,z)==true)
586                 {
587                         _lineBActor->GetProperty()->SetDiffuseColor(c1r,c1g,c1b);
588                 } else {
589                         _lineBActor->GetProperty()->SetDiffuseColor(c2r,c2g,c2b);
590                 }
591                 if (IfMouseTouchZ(x,y,z)==true)
592                 {
593                         _lineAActor->GetProperty()->SetDiffuseColor(c1r,c1g,c1b);
594                 } else {
595                         _lineAActor->GetProperty()->SetDiffuseColor(c2r,c2g,c2b);
596                 }
597         }
598
599         if (_direction==2)
600         {
601                 if (IfMouseTouchX(x,y,z)==true)
602                 {
603                         _lineBActor->GetProperty()->SetDiffuseColor(c1r,c1g,c1b);
604                 } else {
605                         _lineBActor->GetProperty()->SetDiffuseColor(c2r,c2g,c2b);
606                 }
607                 if (IfMouseTouchY(x,y,z)==true)
608                 {
609                         _lineAActor->GetProperty()->SetDiffuseColor(c1r,c1g,c1b);
610                 } else {
611                         _lineAActor->GetProperty()->SetDiffuseColor(c2r,c2g,c2b);
612                 }
613         }
614         Refresh();
615 }
616
617
618 //EED 5 juin 2009
619 //void wxVtkMPR2DView::TransfromCoordViewWorld(double &X, double &Y, double &Z, int type) // virtual
620 void wxVtkMPR2DView::TransFromCoordScreenToWorld(double &X, double &Y, double &Z, bool keepNormalDirection, int type) //virtual //keepNormalDirection=false, type=2
621 {
622
623         wxVtkBaseView::TransFromCoordScreenToWorld(X,Y,Z,keepNormalDirection,_direction);
624
625         if ((_direction==0) && (keepNormalDirection==true) )
626         {
627                 X = ((vtkMPRBaseData*)GetVtkBaseData())->GetX();
628         }
629
630         if ((_direction==1) && (keepNormalDirection==true) )
631         {
632                 Y = ((vtkMPRBaseData*)GetVtkBaseData())->GetY();
633         }
634
635         if ((_direction==2) && (keepNormalDirection==true) )
636         {
637                 Z = ((vtkMPRBaseData*)GetVtkBaseData())->GetZ();
638         }
639
640 }
641
642 //-------------------------------------------------------------------
643 int wxVtkMPR2DView::GetDirection() // virtual
644 {
645     return _direction;
646 }
647
648
649 //-------------------------------------------------------------------
650 //-------------------------------------------------------------------
651 //-------------------------------------------------------------------
652 //void boxVolumeObserver::Execute(vtkObject *wdg, unsigned long eventId, void* calldata) {  // virtual
653 //      if (eventId==vtkCommand::StartInteractionEvent){
654 //              _renWin->SetDesiredUpdateRate(10);
655 //      }
656 //      if (eventId==vtkCommand::InteractionEvent){
657 //              _renWin->SetDesiredUpdateRate(0.001);
658 //      }
659 //      if (eventId==vtkCommand::EndInteractionEvent){
660 //              vtkPlanes *planes = vtkPlanes::New();
661 //              vtkBoxWidget *boxwidget = reinterpret_cast<vtkBoxWidget*>(wdg);
662 //              boxwidget->GetPlanes(planes);
663 //              _volumeMapper->SetClippingPlanes(planes);
664 //              planes -> Delete();
665 //      }
666 //}
667
668 //-------------------------------------------------------------------
669 //void boxVolumeObserver::SetRenWin( vtkRenderWindow *renWin ){
670 //      _renWin = renWin;
671 //}
672 //-------------------------------------------------------------------
673 //void boxVolumeObserver::SetVolumeMapper(vtkVolumeRayCastMapper *volumeMapper){
674 //      _volumeMapper = volumeMapper;
675 //}