]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/ManualPaintModel.cpp
e57d3eb61dc21c8314a8f12a483f1eec17d79238
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / manualPaint / ManualPaintModel.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 "ManualPaintModel.h"
27
28 ManualPaintModel::ManualPaintModel() 
29 {
30         _active                                 = true;
31         _tool                                   = 0; // 0 pencil         ,   1 fill
32         _brushfilter                    = new BrushFilter();
33         _fillfilter                     = new FillFilter();
34         _imageUndoRedo                  = new ImageUndoRedo();
35         _imageUndoRedo_visited  = new ImageUndoRedo();
36 }
37
38 //---------------------------------------------------------------------------
39 ManualPaintModel::~ManualPaintModel() 
40 {
41         delete _brushfilter;
42         delete _fillfilter;
43 }
44
45
46 //---------------------------------------------------------------------------
47 void ManualPaintModel::SetActive( bool active )
48 {
49   _active = active;
50 }
51
52 //---------------------------------------------------------------------------
53 void ManualPaintModel::PaintImage(int px, int py, int pz) 
54 {
55   if (_active==true)
56   {
57         if (_tool == 0) 
58         {
59                 _brushfilter->SetPoint(px, py, pz);
60                 _brushfilter->Run();
61         } // _tool 2
62         if (_tool == 1) 
63         {
64                 _fillfilter->SetPoint(px, py, pz);
65                 _fillfilter->Run();
66         } // _tool 1
67   } // _active
68 }
69
70 //---------------------------------------------------------------------------
71 void ManualPaintModel::SetTool(int tool) 
72 {
73         _tool = tool;
74 }
75
76 //---------------------------------------------------------------------------
77 void ManualPaintModel::Set2D3D(int dim2D3D) 
78 {
79         _brushfilter -> Set2D3D(dim2D3D);
80         _fillfilter  -> Set2D3D(dim2D3D);
81 }
82
83 //---------------------------------------------------------------------------
84 void ManualPaintModel::SetImages(vtkImageData *image,vtkImageData *image2) 
85 {
86         if (image!=NULL)
87         {
88                 _brushfilter -> SetImages(image,image2);
89                 _fillfilter  -> SetImages(image,image2);
90                 if (image2!=NULL)
91                 {
92                         _imageUndoRedo->SetImage(image2);
93                 } else {
94                         _imageUndoRedo->SetImage(image);
95                 }
96                 _imageUndoRedo_visited->SetImage( _fillfilter->GetAuxImageFill() );
97         } else {
98                 printf("EED Warning image=NULL in ManualPaintModel::SetImage(image)\n ");
99         }
100 }
101
102 //---------------------------------------------------------------------------
103 void ManualPaintModel::SetGrayLevel(double graylevel) 
104 {
105         _brushfilter->SetGrayLevel(graylevel);
106         _fillfilter->SetGrayLevel(graylevel);
107 }
108
109 //---------------------------------------------------------------------------
110 void ManualPaintModel::SetRangeMin(int min) 
111 {
112         _brushfilter->SetRangeMin(min);
113         _fillfilter->SetRangeMin(min);
114 }
115
116 //---------------------------------------------------------------------------
117 void ManualPaintModel::SetRangeMax(int max) 
118 {
119         _brushfilter->SetRangeMax(max);
120         _fillfilter->SetRangeMax(max);
121 }
122
123 //---------------------------------------------------------------------------
124 void ManualPaintModel::SetDirection(int direction) 
125 {
126         _brushfilter->SetDirection(direction);
127         _fillfilter->SetDirection(direction);
128 }
129
130 //---------------------------------------------------------------------------
131 void ManualPaintModel::SetBrushSize(int brushsize) 
132 {
133         _brushfilter->SetBrushSize(brushsize);
134 }
135
136 //---------------------------------------------------------------------------
137 void ManualPaintModel::SetBrushForm(int brushform) 
138 {
139         _brushfilter->SetBrushForm(brushform);
140 }
141
142 //---------------------------------------------------------------------------
143 void ManualPaintModel::SetToleranceFill(double tolerancefill) 
144 {
145         _fillfilter->SetToleranceFill(tolerancefill);
146 }
147
148 //---------------------------------------------------------------------------
149 void ManualPaintModel::SetDistanceFill(int distancefill) 
150 {
151         _fillfilter->SetDistanceFill(distancefill);
152 }
153
154 //---------------------------------------------------------------------------
155 void ManualPaintModel::GetScalarRange(double * range) 
156 {
157         _fillfilter->GetScalarRange(range);
158 }
159
160 //---------------------------------------------------------------------------
161 void ManualPaintModel::SetUndoImage() 
162 {
163         ImageMManager* imMManager = NULL;
164         if (_tool == 0) 
165         {
166                 imMManager = this->_brushfilter->GetImageMManager();
167         } // if 0
168         if (_tool == 1) 
169         {
170                 imMManager = this->_fillfilter->GetImageMManager();
171         } // if 1
172         this->_imageUndoRedo                    -> SetURImages(imMManager);
173         this->_imageUndoRedo_visited    -> SetURImages(imMManager);
174         this->_brushfilter                              -> CleanImageMManager();
175         this->_fillfilter                               -> CleanImageMManager();
176 }
177 //---------------------------------------------------------------------------
178
179 void ManualPaintModel::Undo() 
180 {
181         this->_imageUndoRedo->Undo();
182         this->_imageUndoRedo_visited->Undo();
183 }
184
185 void ManualPaintModel::Redo() 
186 {
187         this->_imageUndoRedo->Redo();
188         this->_imageUndoRedo_visited->Redo();
189 }
190
191
192 int ManualPaintModel::GetRestorBaseInitialPointX() 
193 {
194         return  this->_imageUndoRedo->GetRestorBaseInitialPointX();
195 }
196
197 int ManualPaintModel::GetRestorBaseInitialPointY() 
198 {
199         return  this->_imageUndoRedo->GetRestorBaseInitialPointY();
200 }
201
202 int ManualPaintModel::GetRestorBaseInitialPointZ() 
203 {
204         return  this->_imageUndoRedo->GetRestorBaseInitialPointZ();
205 }
206