]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualViewBaseContour.cpp
#3138 creaMaracasVisu Feature New Normal - branch vtk7itk4wx3
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / manualContour / manualViewBaseContour.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 "manualViewBaseContour.h"
27
28
29 // ----------------------------------------------------------------------------
30 // ----------------------------------------------------------------------------
31 // ----------------------------------------------------------------------------
32
33 manualViewBaseContour::manualViewBaseContour()
34 {
35         _show_text                      = true;
36         _textActor                      = NULL;
37         _manContModel           = NULL;
38         _wxvtkbaseview          = NULL;
39         _selected                       = false;
40         _posibleSelected        = false;
41         _viewControlPoints      = false;
42         _pts                            = NULL;
43         _pd                                     = NULL;
44         _contourVtkActor        = NULL;
45         _bboxMapper                     = NULL;
46         _range                          = 1;
47         _sizePointsContour      = 100;
48         _spc[0]                         = 1;
49         _spc[1]                         = 1;
50         _spc[2]                         = 1;
51
52         _coulorEdit_r           = 1;
53         _coulorEdit_g           = 1;
54         _coulorEdit_b           = 0;
55
56         _coulorNormal_r         = 1;
57         _coulorNormal_g         = 0;
58         _coulorNormal_b         = 1;
59
60         _coulorSelection_r      = 0;
61         _coulorSelection_g      = 1;
62         _coulorSelection_b      = 0;
63
64         _widthline                      = 1;
65
66 }
67 // ----------------------------------------------------------------------------
68 manualViewBaseContour::~manualViewBaseContour()
69 {
70         int i,size=_lstViewPoints.size();
71         for (i=0;i<size; i++){
72                 delete _lstViewPoints[i];
73         }
74         _lstViewPoints.clear();
75 }
76 // ----------------------------------------------------------------------------
77
78
79 int manualViewBaseContour::GetType() // virtual
80 {
81 // Information...
82 //int manualViewBaseContour::GetType()          0;
83 //int manualViewContour::GetType()                      1;
84 //int manualViewRoi::GetType()                          2;
85 //int manualViewCircle::GetType()                       3;
86 //int manualViewStar::GetType()                         4;
87 //int manualViewLine::GetType()                         6;
88 //int manualViewPoints::GetType()                       7;
89
90
91         return 0;
92 }
93 // ----------------------------------------------------------------------------
94
95 void manualViewBaseContour::Save(FILE *pFile)
96 {
97         fprintf(pFile,"TypeView %d\n", GetType() );
98 }
99
100 // ----------------------------------------------------------------------------
101 void manualViewBaseContour::Open(FILE *pFile)
102 {
103 }
104
105 // ----------------------------------------------------------------------------
106 void manualViewBaseContour :: AddCompleteContourActor(  bool ifControlPoints )
107 {
108         _viewControlPoints = ifControlPoints;
109          /*vtkRenderer * theRenderer = */  _wxvtkbaseview->GetRenderer();  // JPRx ??
110          //Adding the spline
111          AddSplineActor();
112          AddTextActor();
113
114          //Adding each control point
115          if( ifControlPoints )
116          {
117                 AddControlPoints();
118          }
119          RefreshContour();
120          Refresh();
121 }
122 // ---------------------------------------------------------------------------
123
124 void manualViewBaseContour :: RemoveCompleteContourActor()
125 {
126         /*vtkRenderer * theRenderer =*/  _wxvtkbaseview->GetRenderer(); // JPRx ??
127          //Removing the spline
128         RemoveSplineActor();
129         RemoveTextActor();
130
131         //Removing each point
132         RemoveControlPoints();
133         RefreshContour();
134         Refresh();
135 }
136 // ---------------------------------------------------------------------------
137 manualViewBaseContour *  manualViewBaseContour :: Clone( )//virtual
138 {
139         manualViewBaseContour * clone = new manualViewBaseContour();
140         CopyAttributesTo(clone);
141         return clone;
142
143 }
144
145 // ---------------------------------------------------------------------------
146
147 void manualViewBaseContour::CopyAttributesTo( manualViewBaseContour * cloneObject)
148 {
149         // Fathers object
150         //XXXX::CopyAttributesTo(cloneObject);
151
152         cloneObject-> SetWxVtkBaseView( this->_wxvtkbaseview );
153         cloneObject-> SetSelected( this->GetSelected() );
154         cloneObject-> SetPosibleSelected( this->GetPosibleSelected() );
155         cloneObject-> SetIfViewControlPoints( this->GetIfViewControlPoints() );
156         cloneObject-> SetRange( this->GetRange() );
157         cloneObject-> SetZ( this->GetZ() );
158         cloneObject-> SetSpacing( _spc );
159         cloneObject-> SetColorNormalContour( _coulorNormal_r, _coulorNormal_g, _coulorNormal_b );
160         cloneObject-> SetColorEditContour( _coulorEdit_r, _coulorEdit_g, _coulorEdit_b );
161         cloneObject-> SetColorSelectContour( _coulorSelection_r, _coulorSelection_g, _coulorSelection_b );
162
163         int i, size = _lstViewPoints.size();
164         for ( i=0; i<size; i++ )
165         {
166                 cloneObject->AddPoint(  );
167         }
168 }
169
170 // ----------------------------------------------------------------------------
171 void manualViewBaseContour :: AddSplineActor()
172 {
173         vtkRenderer * theRenderer = _wxvtkbaseview->GetRenderer();
174         if (_contourVtkActor!=NULL)
175                 theRenderer->AddActor( _contourVtkActor  );
176 }
177 // ----------------------------------------------------------------------------
178 void manualViewBaseContour :: RemoveSplineActor() // virtual
179 {
180         vtkRenderer * theRenderer = _wxvtkbaseview->GetRenderer();
181         if (_contourVtkActor!=NULL)
182                 theRenderer->RemoveActor( _contourVtkActor );
183 }
184 // ----------------------------------------------------------------------------
185 void manualViewBaseContour :: RemoveControlPoints()
186 {
187         if (_wxvtkbaseview!=NULL){
188                 vtkRenderer * theRenderer = _wxvtkbaseview->GetRenderer();
189                 int i,size=_lstViewPoints.size();
190                 for (i=0;i<size; i++)
191                 {
192                         vtkActor * pointActor = _lstViewPoints[i]->GetVtkActor();
193                         theRenderer->RemoveActor( pointActor );
194                 } // for
195         } // if
196         SetIfViewControlPoints( false );
197 }
198 // ----------------------------------------------------------------------------
199 void manualViewBaseContour::AddControlPoints()
200 {
201         vtkRenderer * theRenderer = _wxvtkbaseview->GetRenderer();
202         SetIfViewControlPoints( true );
203          if( _viewControlPoints )
204          {
205                 int i,size=_lstViewPoints.size();
206                 for (i=0;i<size; i++)
207                 {
208                         vtkActor * pointActor = _lstViewPoints[i]->GetVtkActor();
209                         theRenderer->AddActor( pointActor );
210                 }
211          }
212 }
213 // ----------------------------------------------------------------------------
214 void manualViewBaseContour::AddTextActor()
215 {
216         if(_show_text)
217         {
218                 _wxvtkbaseview->GetRenderer()->AddActor2D( _textActor );
219                 _wxvtkbaseview->GetRenderer()->AddActor2D( _textActor2 );
220         }
221 }
222 // ----------------------------------------------------------------------------
223 void manualViewBaseContour::RemoveTextActor()
224 {
225         if(_show_text)
226         {
227                 _wxvtkbaseview->GetRenderer()->RemoveActor2D( _textActor );
228                 _wxvtkbaseview->GetRenderer()->RemoveActor2D( _textActor2 );
229         }
230 }
231 // ----------------------------------------------------------------------------
232 void manualViewBaseContour::DeleteVtkObjects()
233 {
234         if ( _contourVtkActor   != NULL )       { _contourVtkActor  -> Delete(); }
235         if ( _bboxMapper                != NULL )       { _bboxMapper           -> Delete(); }
236         if ( _pts                               != NULL )       { _pts                          -> Delete(); }
237         if ( _pd                                != NULL )       { _pd                           -> Delete(); }
238         _contourVtkActor        = NULL;
239         _bboxMapper                     = NULL;
240         _pts                            = NULL;
241         _pd                                     = NULL;
242 }
243
244
245 // ----------------------------------------------------------------------------
246 void manualViewBaseContour::SetWidthLine(double width)
247 {
248         _widthline = width;
249         this->UpdateColorActor();
250
251         // for the control points
252         int id, size = _lstViewPoints.size();
253         for( id=0; id<size; id++)
254         {
255                 this->_lstViewPoints[id]->SetWidthLine(_widthline);
256         }
257
258 }
259
260 // ----------------------------------------------------------------------------
261 double manualViewBaseContour::GetWidthLine()
262 {
263         return _widthline;
264 }
265
266 // ----------------------------------------------------------------------------
267 void manualViewBaseContour::ConstructVTKObjects()
268 {
269
270
271 //JSTG 29-02-08 -----------------------------------------------
272         //int i , nps = _sizePointsContour;
273         int i;
274         int nps = _manContModel->GetNumberOfPointsSpline();
275 //-------------------------------------------------------------
276
277         DeleteVtkObjects();
278         _pts = vtkPoints::New();
279         _pts->SetNumberOfPoints(nps);
280         for (i=0 ; i<nps ; i++)
281         {
282                 _pts->SetPoint(i,       0       , 0     , 0 );
283         }
284         // This is for the boundaring inicialisation
285
286 //EED 29Mars2009        
287         //_pts->SetPoint(0,     0       , 0     , -1000 );
288         //_pts->SetPoint(1,     0       , 0     ,  1000 );
289
290 //EED 2017-03-02
291 //      _pts->SetPoint(0,       -1000   , -1000 , -1000 );
292 //      _pts->SetPoint(1,       1000    , 1000  , 1000  );
293
294         // This is the structure for the spline
295         _splineCell = vtkCellArray::New();
296         _splineCell->InsertNextCell( nps /* +1 */ );
297         for ( i=0 ; i<nps+1 ; i++ )
298         {
299                 _splineCell->InsertCellPoint(i % nps );
300         }
301
302         // This is the structure for the spline justo to points (line)
303         // This will be use in the refresh part, in case the spline have only 2 points
304         _lineCell = vtkCellArray::New();
305         _lineCell->InsertNextCell(2);
306         _lineCell->InsertCellPoint(0);
307         _lineCell->InsertCellPoint(1);
308
309         _pd = vtkPolyData::New();
310         _pd->SetPoints( _pts );
311         _pd->SetLines( _splineCell );
312         // lines->Delete();  //do not delete lines ??
313
314         _contourVtkActor        =       vtkActor::New();
315     _bboxMapper                 =       vtkPolyDataMapper::New();
316     _bboxMapper->ScalarVisibilityOff( );
317
318
319 //EED 2017-01-01 Migration VTK7
320 #if VTK_MAJOR_VERSION <= 5
321         _bboxMapper->SetInput(_pd);
322 #else
323         _bboxMapper->SetInputData(_pd);
324 #endif
325
326
327         _bboxMapper->ImmediateModeRenderingOn();
328         _contourVtkActor->SetMapper(_bboxMapper);
329         _contourVtkActor->GetProperty()->BackfaceCullingOff();
330
331         UpdateColorActor();
332
333         _pd->ComputeBounds();
334
335         InitTextActor();
336 }
337
338 // ----------------------------------------------------------------------------
339 void manualViewBaseContour::SetCellArray(bool type)
340 {
341         if (type==true)
342         {
343                 _pd->SetLines( _splineCell );
344         } else {
345                 _pd->SetLines( _lineCell );
346         }// if type
347 }
348
349 // ----------------------------------------------------------------------------
350 void manualViewBaseContour::InitTextActor()
351 {
352         //      Text
353         _textActor = vtkTextActor::New();
354 //      _textActor->SetDisplayPosition(200, 200);
355         _textActor->SetInput("00");
356         // Set coordinates to match the old vtkScaledTextActor default value
357 //      _textActor->GetPosition2Coordinate()->SetCoordinateSystemToNormalizedViewport();
358 //      _textActor->GetPosition2Coordinate()->SetValue( 0.2 , 0.2 );
359         _textActor->GetPositionCoordinate()->SetCoordinateSystemToWorld ();
360 //      _textActor->GetPositionCoordinate()->SetValue( 0.8 , 0.8 );
361
362         vtkTextProperty *tprop = _textActor->GetTextProperty();
363         tprop->SetFontSize(14);
364         tprop->SetFontFamilyToArial();
365         tprop->SetColor(1, 1, 0);
366
367
368         //      Text 2
369         _textActor2 = vtkTextActor::New();
370 //      _textActor->SetDisplayPosition(200, 200);
371         _textActor2->SetInput("00");
372         // Set coordinates to match the old vtkScaledTextActor default value
373 //      _textActor2->GetPosition2Coordinate()->SetCoordinateSystemToNormalizedViewport();
374 //      _textActor2->GetPosition2Coordinate()->SetValue( 0.2 , 0.2 );
375         _textActor2->GetPositionCoordinate()->SetCoordinateSystemToWorld ();
376 //      _textActor2->GetPositionCoordinate()->SetValue( 0.8 , 0.8 );
377
378         vtkTextProperty *tprop2 = _textActor2->GetTextProperty();
379         tprop2->SetFontSize(14);
380         tprop2->SetFontFamilyToArial();
381         tprop2->SetColor(1, 1, 0);
382
383 }
384
385 // ----------------------------------------------------------------------------
386 void manualViewBaseContour::CreateNewContour()
387 {
388         ConstructVTKObjects();
389         /*
390         _wxvtkbaseview->GetRenderer()->AddActor( _contourVtkActor );
391         _wxvtkbaseview->GetRenderer()->AddActor2D(_textActor);*/
392         AddCompleteContourActor();
393 }
394 // ----------------------------------------------------------------------------
395 void manualViewBaseContour::UpdateViewPoint(int id) // virtual
396 {
397         manualPoint             *mp             = _manContModel->GetManualPoint(id);
398
399 //EEDx6
400                         double XX=mp->GetX(),YY=mp->GetY(),ZZ=mp->GetZ();
401 //                      wxVtk2DBaseView *wxvtk2Dbasevie = (wxVtk2DBaseView*)this->GetWxVtkBaseView();
402 //                      wxvtk2Dbasevie->TransformCoordinate_spacing_ModelToView(XX,YY,ZZ);
403
404         _lstViewPoints[id]->SetPositionXY( XX , YY ,_range, ZZ );
405 }
406
407 // ----------------------------------------------------------------------------
408 void manualViewBaseContour::UpdateViewPoints()
409 {
410         int id, size = _lstViewPoints.size();
411         for( id=0; id<size; id++)
412         {
413                 UpdateViewPoint( id );
414         }
415 }
416
417 // ----------------------------------------------------------------------------
418 void manualViewBaseContour::AddPoint()
419 {
420         manualViewPoint *mvp    = new manualViewPoint( this->GetWxVtkBaseView() );
421         AddPoint( mvp );
422 }
423 // ----------------------------------------------------------------------------
424 void manualViewBaseContour::AddPoint( manualViewPoint * manualViewPoint )
425 {
426         _lstViewPoints.push_back( manualViewPoint );
427
428         // EED 3 oct 2006
429         manualViewPoint->SetSpacing(_spc);
430
431         vtkActor *actor = manualViewPoint->CreateVtkPointActor();
432         _wxvtkbaseview->GetRenderer()->AddActor( actor );       
433 }
434
435 // ----------------------------------------------------------------------------
436 void manualViewBaseContour::InsertPoint(int id)
437 {
438         manualViewPoint         *mvp    = new manualViewPoint( this->GetWxVtkBaseView() );
439
440 // EED 3 oct 2006
441         mvp->SetSpacing(_spc);
442
443         std::vector<manualViewPoint*>::iterator itNum = _lstViewPoints.begin() + id;
444         _lstViewPoints.insert(itNum,mvp);
445         _wxvtkbaseview->GetRenderer()->AddActor( mvp->CreateVtkPointActor() );
446 }
447 // ----------------------------------------------------------------------------
448 void manualViewBaseContour::DeleteContour()
449 {
450         RemoveCompleteContourActor();
451         /*if (_contourVtkActor!=NULL){
452                 _wxvtkbaseview->GetRenderer()->RemoveActor( _contourVtkActor );
453         }*/
454         DeleteVtkObjects();
455         int i,size=_lstViewPoints.size();
456         for (i=0;i<size;i++){
457                 manualViewBaseContour::DeletePoint(0);
458         }
459         Refresh();
460 }
461 // ----------------------------------------------------------------------------
462 void manualViewBaseContour::DeletePoint(int id) // virtual
463 {
464         int size=_lstViewPoints.size();
465         if ( (id>=0) && (id<size) ){
466                 manualViewPoint         *mvp    =_lstViewPoints[id];
467 //EED ups1
468 //              _handlePicker->DeletePickList(mvp->GetVtkActor());
469                 _wxvtkbaseview->GetRenderer()->RemoveActor( mvp->GetVtkActor() );
470                 std::vector<manualViewPoint*>::iterator itNum = _lstViewPoints.begin() + id;
471                 _lstViewPoints.erase(itNum);
472                 delete mvp;
473                 Refresh();
474         }
475 }
476 // ----------------------------------------------------------------------------
477 void manualViewBaseContour::DeletePoint(int x, int y, int z)
478 {
479         int id=GetIdPoint(x,y,z);
480         if (id!=-1){
481                 DeletePoint(id);
482         }
483 }
484 // ----------------------------------------------------------------------------
485 void manualViewBaseContour::SetSelected(bool selected)
486 {
487         _selected=selected;
488 }
489 // ----------------------------------------------------------------------------
490 void manualViewBaseContour::SetPosibleSelected(bool posibleSelected)
491 {
492         _posibleSelected=posibleSelected;
493 }
494 // ----------------------------------------------------------------------------
495 bool manualViewBaseContour::GetEditable()
496 {
497         return *_editable;
498 }
499 // ----------------------------------------------------------------------------
500 void manualViewBaseContour::SetEditable( bool * condition )
501 {
502         _editable = condition;
503 }
504 // ----------------------------------------------------------------------------
505 bool manualViewBaseContour::GetSelected()
506 {
507         return _selected;
508 }
509 // ----------------------------------------------------------------------------
510 bool manualViewBaseContour::GetPosibleSelected()
511 {
512         return _posibleSelected;
513 }
514 // ----------------------------------------------------------------------------
515 void manualViewBaseContour::DeleteSelectedPoints()
516 {
517         int i,size=_lstViewPoints.size();
518         for (i=size-1;i>=0;i--){
519                 if (_lstViewPoints[i]->GetSelected()==true){
520                         DeletePoint(i);
521                 }
522         }
523         Refresh();
524 }
525 // ----------------------------------------------------------------------------
526 void manualViewBaseContour::SelectPoint(int i, bool select)
527 {
528         _lstViewPoints[i]->SetSelected(select);
529 }
530 // ----------------------------------------------------------------------------
531 void manualViewBaseContour::SelectLstPoints()
532 {
533         // ToDo
534 }
535 // ----------------------------------------------------------------------------
536 void manualViewBaseContour::SelectAllPoints(bool select)
537 {
538         int i,size=_lstViewPoints.size();
539         for (i=0;i<size;i++){
540                 SelectPoint(i,select);
541         }
542 }
543 //-----------------------------------------------------------------------------
544 void manualViewBaseContour:: SetIfViewControlPoints(bool ifShow)
545 {
546         _viewControlPoints = ifShow;
547 }
548 // ----------------------------------------------------------------------------
549 bool manualViewBaseContour:: GetIfViewControlPoints()
550 {
551         return _viewControlPoints;
552 }
553
554 // ----------------------------------------------------------------------------
555 void manualViewBaseContour::SetPointPosibleSelected(int id,bool select)
556 {
557         _lstViewPoints[id]->SetPosibleSelected(select);
558 }
559 // ----------------------------------------------------------------------------
560 void manualViewBaseContour::SetPointSelected(int id,bool select)
561 {
562         _lstViewPoints[id]->SetSelected(select);
563 }
564 // ----------------------------------------------------------------------------
565 void manualViewBaseContour::SelectAllPossibleSelected(bool select)
566 {
567         int i,size=_lstViewPoints.size();
568         for (i=0;i<size;i++){
569                 SetPointPosibleSelected(i,select);
570         }
571 }
572 // ----------------------------------------------------------------------------
573 int manualViewBaseContour::SelectPosiblePoint(int x, int y, int z)  // virtual
574 {
575         SelectAllPossibleSelected(false);
576
577     int id = GetIdPoint(x,y,z);
578         if (id!=-1)
579         {
580                 SetPointPosibleSelected(id,true);
581         }
582         return id;
583 }
584 // ----------------------------------------------------------------------------
585 bool manualViewBaseContour::SelectPosibleContour(int x, int y, int z)
586 {
587         bool result=false;
588         SetPosibleSelected(result);
589     int id = GetIdPoint(x,y,z);
590         
591         if( !GetEditable() && !_selected && id!= -1)
592         {
593                 result=true;
594                 _posibleSelected=true;          
595         }
596         else
597         {
598                 if ( (GetEditable()==true) && (id==-1 ) && (this->_lstViewPoints.size()>=2) )
599                 {
600                         if (ifTouchContour(x,y,z)==true)
601                         {
602                                 result=true;
603                                 SetPosibleSelected(result);
604                         }
605                 }
606
607                 if (GetEditable()==false)
608                 {
609                         if (ifTouchContour(x,y,z)==true)
610                         {
611                                 result=true;
612                                 SetPosibleSelected(result);
613                         }
614                 }
615         }
616         return result;
617 }
618 // ----------------------------------------------------------------------------
619 bool manualViewBaseContour::ifTouchContour(int x,int y, int z) // virtual
620 {
621         return false;
622 }
623 // ----------------------------------------------------------------------------
624 void manualViewBaseContour::UnSelectPoint(int i){
625         _lstViewPoints[i]->SetSelected(false);
626         Refresh();
627 }
628 // ----------------------------------------------------------------------------
629 void manualViewBaseContour::UnSelectLstPoints(){
630         // ToDo
631 }
632 // ----------------------------------------------------------------------------
633 void manualViewBaseContour::UnSelectAllPoints(){
634         int i,size=_lstViewPoints.size();
635         for (i=0;i<size;i++){
636                 UnSelectPoint(i);
637         }
638         Refresh();
639 }
640 // ----------------------------------------------------------------------------
641 void manualViewBaseContour::SetModel(manualBaseModel *manContModel){
642         _manContModel=manContModel;
643 }
644 // ----------------------------------------------------------------------------
645 void manualViewBaseContour::SetWxVtkBaseView(wxVtkBaseView *wxvtkbaseview){
646         _wxvtkbaseview = wxvtkbaseview;
647 }
648 // ----------------------------------------------------------------------------
649 void manualViewBaseContour::RefreshContour()  // Virtual
650 {
651 }
652 // ----------------------------------------------------------------------------
653 double* manualViewBaseContour::GetVectorPointsXManualContour(){
654         double pp[3];
655         int i,size = _sizePointsContour;
656         double *vx = (double*)malloc(sizeof(double)*size);
657         for (i=0;i<size;i++){
658                 _pts->GetPoint(i,pp);
659                 vx[i]=pp[0];
660         }
661         return vx;
662 }
663 // ----------------------------------------------------------------------------
664 double* manualViewBaseContour::GetVectorPointsYManualContour()
665 {
666         double pp[3];
667         int i,size = _sizePointsContour;
668         double *vy = (double*)malloc(sizeof(double)*size);
669         for (i=0;i<size;i++){
670                 _pts->GetPoint(i,pp);
671                 vy[i]=pp[1];
672         }
673         return vy;
674 }
675 // ----------------------------------------------------------------------------
676 double* manualViewBaseContour::GetVectorPointsZManualContour()
677 {
678         double pp[3];
679         int i,size = _sizePointsContour;
680         double *vz = (double*)malloc(sizeof(double)*size);
681         for (i=0;i<size;i++){
682                 _pts->GetPoint(i,pp);
683                 vz[i]=pp[2];
684         }
685         return vz;
686 }
687 // ----------------------------------------------------------------------------
688 void manualViewBaseContour::Refresh() // virtual
689 {
690         if (_contourVtkActor!=NULL)
691         {
692                 RefreshContour();
693         }
694         int i,size=_lstViewPoints.size();
695         for (i=0;i<size;i++){
696                 UpdateViewPoint(i);
697                 _lstViewPoints[i]->UpdateColorActor();
698         }
699         UpdateColorActor();
700
701         if (_show_text==true)
702         {
703                 RefreshText();
704         }
705
706         vtkRenderWindowInteractor *vri = _wxvtkbaseview->GetWxVTKRenderWindowInteractor ();
707         if (vri==NULL)
708         {
709                 _wxvtkbaseview->GetRenWin()->Render();
710                 printf("EED %p How to optimize manualViewBaseContour::Refresh() \n",this);
711         }
712
713 }
714 // ----------------------------------------------------------------------------
715 void manualViewBaseContour::RefreshText()  // virtual
716 {
717         if( _textActor!=NULL)
718         {
719                 _textActor -> SetInput("00");
720                 _textActor2 -> SetInput("00");
721         }
722 }
723 // ----------------------------------------------------------------------------
724 void manualViewBaseContour::SetColorNormalContour(double r, double g, double b)
725 {
726         _coulorNormal_r = r;
727         _coulorNormal_g = g;
728         _coulorNormal_b = b;
729 }
730 // ----------------------------------------------------------------------------
731 void manualViewBaseContour::GetColorNormalContour(double &r, double &g, double &b)
732 {
733         r = _coulorNormal_r;
734         g = _coulorNormal_g;
735         b = _coulorNormal_b;
736 }
737 // ----------------------------------------------------------------------------
738 void manualViewBaseContour::SetColorEditContour(double r, double g, double b)
739 {
740         _coulorEdit_r = r;
741         _coulorEdit_g = g;
742         _coulorEdit_b = b;
743 }
744 // ----------------------------------------------------------------------------
745 void manualViewBaseContour::GetColorEditContour(double &r, double &g, double &b)
746 {
747         r = _coulorEdit_r;
748         g = _coulorEdit_g;
749         b = _coulorEdit_b;
750 }
751 // ----------------------------------------------------------------------------
752 void manualViewBaseContour::SetColorSelectContour(double r, double g, double b)
753 {
754         _coulorSelection_r = r;
755         _coulorSelection_g = g;
756         _coulorSelection_b = b;
757 }
758 // ----------------------------------------------------------------------------
759 void manualViewBaseContour::GetColorSelectContour(double &r, double &g, double &b)
760 {
761         r = _coulorSelection_r;
762         g = _coulorSelection_g;
763         b = _coulorSelection_b;
764 }
765 // ----------------------------------------------------------------------------
766 void manualViewBaseContour::UpdateColorActor()
767 {
768         if (_contourVtkActor!=NULL)
769         {
770                 _contourVtkActor->GetProperty()->SetLineWidth( _widthline );
771                 _contourVtkActor->GetProperty()->SetDiffuseColor( _coulorNormal_r , _coulorNormal_g , _coulorNormal_b );
772                 if (_posibleSelected || (_posibleSelected && GetEditable() ) )
773                 {
774                         _contourVtkActor->GetProperty()->SetDiffuseColor( _coulorEdit_r , _coulorEdit_g , _coulorEdit_b );
775                 }
776                 if( _selected )
777                 {
778                         _contourVtkActor->GetProperty()->SetDiffuseColor( _coulorSelection_r , _coulorSelection_g , _coulorSelection_b );
779                 }
780         }
781 }
782 // ----------------------------------------------------------------------------
783 int     manualViewBaseContour::GetIdPoint(int x, int y, int z) // virtual
784 {
785         int ii = -1;
786         if (_manContModel!=NULL){
787                 double xx = x;
788                 double yy = y;
789                 double zz = z;
790                 TransfromCoordViewWorld(xx,yy,zz);
791                 ii=_manContModel->GetIdPoint(xx,yy,zz,_range,-1);
792         }
793         return ii;
794 }
795
796 // ----------------------------------------------------------------------------
797
798
799 int manualViewBaseContour::GetNumberOfPoints()
800 {
801         return _lstViewPoints.size();
802 }
803
804 // ----------------------------------------------------------------------------
805
806 //JSTG 25-02-08 ---------------------------------------------------------------
807 /*int manualViewBaseContour::GetNumberOfPointsSpline()
808 {
809         return _sizePointsContour;
810 }*/
811 //----------------------------------------------------------------------------
812
813 //JSTG 25-02-08 ---------------------------------------------------------------
814 /*void manualViewBaseContour::SetNumberOfPointsSpline(int size)
815 {
816         _sizePointsContour = size;
817 }*/
818 //----------------------------------------------------------------------------
819 // virtual
820 void manualViewBaseContour::TransfromCoordViewWorld(double &X, double &Y, double &Z, int type)  // Virtual
821 {
822         _wxvtkbaseview->TransFromCoordScreenToWorld(X, Y, Z,false, type);
823
824
825 //EED 27 sep 2007
826 //   //EEDx6
827 //      wxVtk2DBaseView *wxvtk2Dbaseview = (wxVtk2DBaseView*)_wxvtkbaseview;
828 //      wxvtk2Dbaseview->TransformCoordinate_spacing_ModelToView(X,Y,Z);
829
830 }
831 // ----------------------------------------------------------------------------
832 void manualViewBaseContour::SetRange(double range)
833 {
834         _range=range;
835 }
836 // ----------------------------------------------------------------------------
837 double  manualViewBaseContour::GetRange()
838 {
839         return _range;
840 }
841 // ----------------------------------------------------------------------------
842 void manualViewBaseContour::SetZ(int z)
843 {
844 //      _Z=z;
845 }
846 // ----------------------------------------------------------------------------
847 int     manualViewBaseContour::GetZ()
848 {
849 //      return _Z;
850         return 0;
851 }
852 // ----------------------------------------------------------------------------
853 void manualViewBaseContour::InitMove(int x, int y, int z) // virtual
854 {
855
856 }
857 // ----------------------------------------------------------------------------
858 void manualViewBaseContour::MoveContour(int x, int y, int z) // virtual
859 {
860 }
861 // ----------------------------------------------------------------------------
862 void manualViewBaseContour::MoveContour(int horizontalUnits, int verticalUnits )// virtual
863 {
864
865 }
866 // ----------------------------------------------------------------------------
867 void manualViewBaseContour::GetMinMax( double &minX,double &minY, double &minZ, double &maxX, double &maxY, double &maxZ )// virtual
868 {
869         double  pp[3];
870         manualPoint *mp;
871         int i;
872         int size=_manContModel->GetSizeLstPoints();
873         minX=99999;
874         minY=99999;
875         maxX=-99999;
876         maxY=-99999;
877         bool ifFindZ = minZ!=-1.0 && maxZ!=-1.0;
878         if ( ifFindZ )
879         {
880                 minZ=99999;
881                 maxZ=-99999;
882         }
883         for( i = 0; i < size; i++ )
884         {
885                 mp=_manContModel->GetManualPoint(i);
886                 pp[0]=mp->GetX();
887                 pp[1]=mp->GetY();
888                 if ( ifFindZ )
889                         pp[2]=mp->GetZ();
890
891                 // min X
892                 if (pp[0]<minX)
893                 {
894                         minX=pp[0];
895                 }
896                 //min Y
897                 if (pp[1]<minY)
898                 {
899                         minY=pp[1];
900                 }
901                 //max X
902                 if (pp[0]>maxX)
903                 {
904                         maxX=pp[0];
905                 }
906                 // max Y
907                 if (pp[1]>maxY)
908                 {
909                         maxY=pp[1];
910                 }
911                 if ( ifFindZ )
912                 {
913                         // min Z
914                         if (pp[2]<minZ)
915                         {
916                                 minZ=pp[2];
917                         }
918                         // max Z
919                         if (pp[2]>maxZ)
920                         {
921                                 maxZ=pp[2];
922                         }
923                 }
924         }
925         if ( size<1 )
926         {
927                 minX = 0;
928                 maxX = 0;
929
930                 minY = 0;
931                 maxY = 0;
932
933                 minZ = 0;
934                 maxZ = 0;
935         }
936 }
937 // ----------------------------------------------------------------------------
938 void manualViewBaseContour::ClearContour()
939 {
940         if (_contourVtkActor!=NULL){
941                 _wxvtkbaseview->GetRenderer()->RemoveActor( _contourVtkActor );
942         }
943         DeleteVtkObjects();
944         int i,size=_lstViewPoints.size();
945         for (i=0;i<size;i++){
946                 ClearPoint(0);
947         }
948         Refresh();
949 }
950 // ----------------------------------------------------------------------------
951 void manualViewBaseContour::ClearPoint(int id)
952 {
953         DeletePoint(id);
954 }
955 // ----------------------------------------------------------------------------
956 void manualViewBaseContour::SetVisible(bool ok)
957 {
958         double opacity;
959         if (ok==true)
960         {
961                 opacity=1;
962         } else {
963                 opacity=0.5;
964         }
965         vtkActor *actor;
966         int i,size=_lstViewPoints.size();
967         for (i=0;i<size;i++){
968                 actor = _lstViewPoints[i]->GetVtkActor();
969                 actor->GetProperty()->SetOpacity( opacity );
970         }
971         _contourVtkActor->GetProperty()->SetOpacity( opacity );
972         _textActor->GetProperty()->SetOpacity( opacity );
973         _textActor->SetInput("00");
974         _textActor2->GetProperty()->SetOpacity( opacity );
975         _textActor2->SetInput("00");
976
977 }
978 // ----------------------------------------------------------------------------
979 void manualViewBaseContour::SetShowText(bool ok)
980 {
981         _show_text = ok;
982         if (_show_text==false && _textActor!=NULL)
983         {
984                 _textActor->SetInput("00");
985                 _textActor2->SetInput("00");
986         }
987 }
988 // ----------------------------------------------------------------------------
989 wxVtkBaseView *manualViewBaseContour::GetWxVtkBaseView()
990 {
991         return this->_wxvtkbaseview;
992 }
993 // ----------------------------------------------------------------------------
994 void manualViewBaseContour::GetSpacing(double spc[3])
995 {
996         spc[0] = _spc[0];
997         spc[1] = _spc[1];
998         spc[2] = _spc[2];
999 }
1000 // ----------------------------------------------------------------------------
1001 void manualViewBaseContour::SetSpacing(double spc[3])
1002 {
1003         _spc[0] = spc[0];
1004         _spc[1] = spc[1];
1005         _spc[2] = spc[2];
1006 }