]> Creatis software - creaMaracasVisu.git/blob - lib/Kernel/VTKObjects/SurfaceRenderer/wxMaracasSurfaceRenderingManagerData.h
Support #1768 CREATIS Licence insertion
[creaMaracasVisu.git] / lib / Kernel / VTKObjects / SurfaceRenderer / wxMaracasSurfaceRenderingManagerData.h
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 #ifndef WXMARACASSURFACERENDERINGMANAGERDATA_H_
27 #define WXMARACASSURFACERENDERINGMANAGERDATA_H_
28
29 #include "vtkProp3D.h"
30 #include "vtkRenderer.h"
31 #include "vtkSTLReader.h"
32 #include "vtkPolyDataMapper.h"
33 #include "vtkActor.h"
34 #include "vtkProperty.h"
35 #include "vtkBoxWidget.h"
36
37
38 #define PLY  ".ply"
39 #define STL  ".stl"
40 #define VTK  ".vtk"
41
42 using namespace std;
43
44 class wxMaracasSurfaceRenderingManagerData {
45
46 public:
47         wxMaracasSurfaceRenderingManagerData(vtkProp3D* _prop3Dvect, std::string dataname="", vtkRenderWindowInteractor*  interactor=NULL);     
48         wxMaracasSurfaceRenderingManagerData(string filename, vtkRenderWindowInteractor*  interactor);
49         ~wxMaracasSurfaceRenderingManagerData();        
50         
51         /**
52         **      Adds a prop3D to the world of the application
53         **/
54         void setProp3D(vtkProp3D* prop3D);
55         /**
56         **      Changes the opacity in a prop3D
57         **/
58         void changeOpacity(int value);          
59         /**
60         **      Check if the variables are setted correctly
61         **/
62         void checkInvariant();
63         /**
64         **      get the prop3D 
65         **/
66         vtkProp3D* getProp3D();
67         /**
68         **      return the id from the daat
69         **/
70         int getId();
71         /**
72         **      set data id
73         **/
74         void setId(int propid);
75         /**
76         **      Get the filanme
77         **/
78     std::string getDataname();
79         /**
80         ** Set the filanme
81         **/
82     void setDataname(std::string dataname);
83         
84         /**
85         **      creates the image 
86         **/
87         void contourExtractor(int isovalue);
88
89         /**
90         **      Changes the color of the actor
91         **/
92         void changeColor(double red, double green, double blue);        
93         
94         /**
95         ** adds or removes the surface box
96         **/
97         void addRemoveSurfaceBox(bool visible);
98
99         void initializeBoxWidget(vtkRenderWindowInteractor*  interactor);
100
101         void saveProp3DSTL(const char* filename);
102
103         virtual void enableBoxWidget(bool enable);
104
105         void exportImageStencil(const char* filename);
106
107         vtkProp3D* getProp3D(std::string filename);
108 protected:
109         vtkPolyDataMapper* _dataMapper;
110         /**
111          * Prop 3D (data actor)
112          */
113         vtkProp3D* _prop3D;     
114         /**
115          *  Dataname given by the user (ex. filename) 
116          **/
117         std::string _dataname;  
118         
119         /**
120         **
121         **/
122         vtkBoxWidget* _boxWidgetS1;
123 private:
124         
125         /*
126          * id of the data
127          */
128         int _id;                
129
130         
131
132         
133 };
134
135 #endif /*WXMARACASSURFACERENDERINGMANAGERDATA_H_*/