]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/CutModule/kernel/CutModelData.h
Undo Redo
[creaMaracasVisu.git] / lib / maracasVisuLib / src / CutModule / kernel / CutModelData.h
1 /*=========================================================================
2
3   Program:   wxMaracas
4   Module:    $RCSfile: CutModelData.h,v $
5   Language:  C++
6   Date:      $Date: 2009/09/08 08:14:27 $
7   Version:   $Revision: 1.3 $
8
9   Copyright: (c) 2002, 2003
10   License:
11   
12      This software is distributed WITHOUT ANY WARRANTY; without even 
13      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14      PURPOSE.  See the above copyright notice for more information.
15
16 =========================================================================*/
17
18
19
20
21 #ifndef __CutModelDataH__
22 #define __CutModelDataH__
23
24 #include <iostream>
25 #include <vector>
26
27 #include "vtkImageData.h"
28 #include "vtkRenderWindowInteractor.h"
29 #include "vtkCommand.h"
30 #include "vtkBoxWidget.h"
31 #include "vtkPolyDataMapper.h"
32 #include "vtkActor.h"
33 #include "vtkProperty.h"
34 #include "CutModelException.h"
35 #include "CutModelFigure.h"
36 #include "CutModelFigureCube.h"
37 #include "CutModelFigureSphere.h"
38 #include "CutModelFigureCylinder.h"
39
40 #include <wx/utils.h>
41
42 class CutModelData  {
43
44 public:
45         CutModelData();
46         CutModelData(int id, vtkRenderWindowInteractor* interactor, vtkCommand* observer, vtkImageData* img);
47         ~CutModelData();
48         void initializeData(int id, vtkRenderWindowInteractor* interactor, vtkCommand* observer, vtkImageData* img);
49
50
51         int getId(){
52                 return _id;
53         }
54
55         void changeOpacity(int opacity)throw( CutModelException);
56
57         void ShowViewBox(bool check)throw( CutModelException);
58
59         void ChangeShape(int selection)throw( CutModelException);
60
61         vtkActor* getActor()throw( CutModelException);
62
63         vtkPolyData* getPolyData()throw( CutModelException);
64         
65         void changeColor(double r,double g,double b)throw( CutModelException);
66
67         void udapteActorDirection()throw( CutModelException);
68
69         void ExecuteCut( double* range, bool isinside, vtkImageData* copyimage)throw( CutModelException);
70
71         void ExecuteUnCut(  bool isinside, vtkImageData* image, vtkImageData* copyimage)throw( CutModelException);
72
73         void RefreshViewBox();
74
75         vtkTransform* getCurrentMatrix(){
76                 return currentmatrix;
77         }
78
79         int getCurrentShape(){
80                 return _currentshape;
81         }
82
83         void setCurrentShape(int currentshape){
84                 _currentshape = currentshape;
85         }
86
87         void setTransform(vtkTransform* transform,vtkImageData* img)throw( CutModelException);
88 private:        
89         
90         void checkInvariant()throw( CutModelException);
91
92         void createBoxWidget(vtkRenderWindowInteractor* interactor, vtkCommand* observer);
93         void createActor();
94         void setTransform(vtkImageData* img)throw( CutModelException);
95         void createShapes();    
96
97         vtkBoxWidget* _boxWidgetVolume;
98         vtkPolyDataMapper* _Mapper;     
99         vtkActor* _Actor;       
100         int _id;
101
102         int _currentshape;
103
104         CutModelFigureCube* _cubefigure;
105         CutModelFigureCylinder* _cylinderfigure;
106         CutModelFigureSphere* _spherefigure;
107         vtkTransform* currentmatrix;
108         vtkTransform* modeltransform;
109         vtkTransform* inversModel;
110
111
112         CutModelFigure* getCurentCuttingModel();
113
114         vtkTransform* getModelTransform(vtkImageData* copyimage);
115         vtkTransform* getModelTransformInvers();
116 };
117
118 #endif