]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtkMPR2DView.cxx
Opacity Text in 2D viewers
[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                         
393                         SetOpacityText( opacityAxis );
394
395                         
396                         _backX                  = xx;
397                         _backY                  = yy;
398                         _backZ                  = zz;
399                         _backFixAxis2D  = fixAxis2D;
400                         _backOpacityAxis= opacityAxis;
401                 } // if image
402
403 //EED 2016/02/19
404         vtkImageActor *imageactor = _imageViewer2XYZ->GetVtkImageViewer2()->GetImageActor();
405         imageactor->SetInterpolate( GetVtkBaseData()->GetInterpolate() );
406 //EED 01nov2012
407                 UpdateColorWindowLevel();
408 //EED 05juin2019
409                 UpdateCameraParallelScale();
410                 wxVtkBaseView::Refresh();
411         }
412 }
413
414 //-------------------------------------------------------------------
415 int wxVtkMPR2DView::GetActualSlice()   // virtual
416 {
417         int result;
418         if (_direction==0)
419         {
420                 result = (int)(GetVtkmprbasedata()->GetX());
421         }
422         if (_direction==1)
423         {
424                 result = (int)(GetVtkmprbasedata()->GetY());
425         }
426         if (_direction==2)
427         {
428                 result = (int)(GetVtkmprbasedata()->GetZ());
429         }
430         return result;
431 }
432 //-------------------------------------------------------------------
433 void wxVtkMPR2DView::SetActualSlice(int slice)   // virtual
434 {
435         if (_direction==0)
436         {
437                 GetVtkmprbasedata()->SetX(slice);
438         }
439         if (_direction==1)
440         {
441                 GetVtkmprbasedata()->SetY(slice);
442         }
443         if (_direction==2)
444         {
445                 GetVtkmprbasedata()->SetZ(slice);
446         }
447 }
448 //-------------------------------------------------------------------
449 bool wxVtkMPR2DView::IfMouseTouchX(double x, double y, double z)
450 {
451         double delta=5;
452         bool result=false;
453         if (_direction==0)
454         {
455         }
456         if (_direction==1)
457         {
458                 if (( x<GetVtkmprbasedata()->GetX()+delta ) && ( x>GetVtkmprbasedata()->GetX()-delta ))
459                 {
460                         result = true;
461                 }
462         }
463         if (_direction==2)
464         {
465                 if (( x<GetVtkmprbasedata()->GetX()+delta ) && ( x>GetVtkmprbasedata()->GetX()-delta ))
466                 {
467                         result = true;
468                 }
469         }
470         return result;
471 }
472 //-------------------------------------------------------------------
473 bool wxVtkMPR2DView::IfMouseTouchY(double x, double y, double z)
474 {
475         double delta=5;
476         bool result=false;
477         if (_direction==0)
478         {
479                 if (( y<GetVtkmprbasedata()->GetY()+delta ) && ( y>GetVtkmprbasedata()->GetY()-delta ))
480                 {
481                         result = true;
482                 }
483         }
484         if (_direction==1)
485         {
486         }
487         if (_direction==2)
488         {
489                 if (( y<GetVtkmprbasedata()->GetY()+delta ) && ( y>GetVtkmprbasedata()->GetY()-delta ))
490                 {
491                         result = true;
492                 }
493         }
494         return result;
495 }
496 //-------------------------------------------------------------------
497 bool wxVtkMPR2DView::IfMouseTouchZ(double x, double y, double z)
498 {
499         double delta=5;
500         bool result=false;
501         if (_direction==0)
502         {
503                 if (( z<GetVtkmprbasedata()->GetZ()+delta ) && ( z>GetVtkmprbasedata()->GetZ()-delta ))
504                 {
505                         result = true;
506                 }
507         }
508         if (_direction==1)
509         {
510                 if (( z<GetVtkmprbasedata()->GetZ()+delta ) && ( z>GetVtkmprbasedata()->GetZ()-delta ))
511                 {
512                         result = true;
513                 }
514         }
515         if (_direction==2)
516         {
517         }
518         return result;
519 }
520 //-------------------------------------------------------------------
521 void wxVtkMPR2DView::MoveX(double x, double y, double z)
522 {
523         if (_direction==0)
524         {
525         }
526         if (_direction==1)
527         {
528                 GetVtkmprbasedata()->SetX(x);
529         }
530         if (_direction==2)
531         {
532                 GetVtkmprbasedata()->SetX(x);
533         }
534 }
535 //-------------------------------------------------------------------
536 void wxVtkMPR2DView::MoveY(double x, double y, double z)
537 {
538         if (_direction==0)
539         {
540                 GetVtkmprbasedata()->SetY(y);
541         }
542         if (_direction==1)
543         {
544         }
545         if (_direction==2)
546         {
547                 GetVtkmprbasedata()->SetY(y);
548         }
549 }
550 //-------------------------------------------------------------------
551 void wxVtkMPR2DView::MoveZ(double x, double y, double z)
552 {
553         if (_direction==0)
554         {
555                 GetVtkmprbasedata()->SetZ(z);
556         }
557         if (_direction==1)
558         {
559                 GetVtkmprbasedata()->SetZ(z);
560         }
561         if (_direction==2)
562         {
563         }
564 }
565 //-------------------------------------------------------------------
566 void wxVtkMPR2DView::ChangeAxisColor(double x, double y, double z)
567 {
568         double c1r=1,c1g=1,c1b=0;
569         double c2r=1,c2g=0,c2b=0;
570
571         if (_direction==0)
572         {
573                 if (IfMouseTouchY(x,y,z)==true)
574                 {
575                         _lineBActor->GetProperty()->SetDiffuseColor(c1r,c1g,c1b);
576                 } else {
577                         _lineBActor->GetProperty()->SetDiffuseColor(c2r,c2g,c2b);
578                 }
579                 if (IfMouseTouchZ(x,y,z)==true)
580                 {
581                         _lineAActor->GetProperty()->SetDiffuseColor(c1r,c1g,c1b);
582                 } else {
583                         _lineAActor->GetProperty()->SetDiffuseColor(c2r,c2g,c2b);
584                 }
585         }
586
587         if (_direction==1)
588         {
589                 if (IfMouseTouchX(x,y,z)==true)
590                 {
591                         _lineBActor->GetProperty()->SetDiffuseColor(c1r,c1g,c1b);
592                 } else {
593                         _lineBActor->GetProperty()->SetDiffuseColor(c2r,c2g,c2b);
594                 }
595                 if (IfMouseTouchZ(x,y,z)==true)
596                 {
597                         _lineAActor->GetProperty()->SetDiffuseColor(c1r,c1g,c1b);
598                 } else {
599                         _lineAActor->GetProperty()->SetDiffuseColor(c2r,c2g,c2b);
600                 }
601         }
602
603         if (_direction==2)
604         {
605                 if (IfMouseTouchX(x,y,z)==true)
606                 {
607                         _lineBActor->GetProperty()->SetDiffuseColor(c1r,c1g,c1b);
608                 } else {
609                         _lineBActor->GetProperty()->SetDiffuseColor(c2r,c2g,c2b);
610                 }
611                 if (IfMouseTouchY(x,y,z)==true)
612                 {
613                         _lineAActor->GetProperty()->SetDiffuseColor(c1r,c1g,c1b);
614                 } else {
615                         _lineAActor->GetProperty()->SetDiffuseColor(c2r,c2g,c2b);
616                 }
617         }
618         Refresh();
619 }
620
621
622 //EED 5 juin 2009
623 //void wxVtkMPR2DView::TransfromCoordViewWorld(double &X, double &Y, double &Z, int type) // virtual
624 void wxVtkMPR2DView::TransFromCoordScreenToWorld(double &X, double &Y, double &Z, bool keepNormalDirection, int type) //virtual //keepNormalDirection=false, type=2
625 {
626
627         wxVtkBaseView::TransFromCoordScreenToWorld(X,Y,Z,keepNormalDirection,_direction);
628
629         if ((_direction==0) && (keepNormalDirection==true) )
630         {
631                 X = ((vtkMPRBaseData*)GetVtkBaseData())->GetX();
632         }
633
634         if ((_direction==1) && (keepNormalDirection==true) )
635         {
636                 Y = ((vtkMPRBaseData*)GetVtkBaseData())->GetY();
637         }
638
639         if ((_direction==2) && (keepNormalDirection==true) )
640         {
641                 Z = ((vtkMPRBaseData*)GetVtkBaseData())->GetZ();
642         }
643
644 }
645
646 //-------------------------------------------------------------------
647 int wxVtkMPR2DView::GetDirection() // virtual
648 {
649     return _direction;
650 }
651
652
653 //-------------------------------------------------------------------
654 //-------------------------------------------------------------------
655 //-------------------------------------------------------------------
656 //void boxVolumeObserver::Execute(vtkObject *wdg, unsigned long eventId, void* calldata) {  // virtual
657 //      if (eventId==vtkCommand::StartInteractionEvent){
658 //              _renWin->SetDesiredUpdateRate(10);
659 //      }
660 //      if (eventId==vtkCommand::InteractionEvent){
661 //              _renWin->SetDesiredUpdateRate(0.001);
662 //      }
663 //      if (eventId==vtkCommand::EndInteractionEvent){
664 //              vtkPlanes *planes = vtkPlanes::New();
665 //              vtkBoxWidget *boxwidget = reinterpret_cast<vtkBoxWidget*>(wdg);
666 //              boxwidget->GetPlanes(planes);
667 //              _volumeMapper->SetClippingPlanes(planes);
668 //              planes -> Delete();
669 //      }
670 //}
671
672 //-------------------------------------------------------------------
673 //void boxVolumeObserver::SetRenWin( vtkRenderWindow *renWin ){
674 //      _renWin = renWin;
675 //}
676 //-------------------------------------------------------------------
677 //void boxVolumeObserver::SetVolumeMapper(vtkVolumeRayCastMapper *volumeMapper){
678 //      _volumeMapper = volumeMapper;
679 //}