]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/ManualPaintModel.cpp
Support #1768 CREATIS Licence insertion
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / manualPaint / ManualPaintModel.cpp
index c610bd7766327b298c18967908cb48f75bcbd61b..956fe6a560f62341e0803fc6d269654c0a656a87 100644 (file)
@@ -1,10 +1,35 @@
+/*# ---------------------------------------------------------------------
+#
+# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
+#                        pour la Sant�)
+# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
+# Previous Authors : Laurent Guigues, Jean-Pierre Roux
+# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
+#
+#  This software is governed by the CeCILL-B license under French law and
+#  abiding by the rules of distribution of free software. You can  use,
+#  modify and/ or redistribute the software under the terms of the CeCILL-B
+#  license as circulated by CEA, CNRS and INRIA at the following URL
+#  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
+#  or in the file LICENSE.txt.
+#
+#  As a counterpart to the access to the source code and  rights to copy,
+#  modify and redistribute granted by the license, users are provided only
+#  with a limited warranty  and the software's author,  the holder of the
+#  economic rights,  and the successive licensors  have only  limited
+#  liability.
+#
+#  The fact that you are presently reading this means that you have had
+#  knowledge of the CeCILL-B license and that you accept its terms.
+# ------------------------------------------------------------------------ */
+
 #include "ManualPaintModel.h"
 
 ManualPaintModel::ManualPaintModel() {
        _tool = 0; // 0 pencil         ,   1 fill
        _brushfilter = new BrushFilter();
        _fillfilter = new FillFilter();
-       //_imageUndoRedo = new ImageUndoRedo();
+       _imageUndoRedo = new ImageUndoRedo();
 }
 
 //---------------------------------------------------------------------------
@@ -40,7 +65,7 @@ void ManualPaintModel::Set2D3D(int dim2D3D) {
 void ManualPaintModel::SetImage(vtkImageData *image) {
        _brushfilter->SetImage(image);
        _fillfilter->SetImage(image);
-       //_imageUndoRedo->SetImage(image);
+       _imageUndoRedo->SetImage(image);
 }
 
 //---------------------------------------------------------------------------
@@ -91,20 +116,24 @@ void ManualPaintModel::GetScalarRange(double * range) {
        _fillfilter->GetScalarRange(range);
 }
 //---------------------------------------------------------------------------
-/*void ManualPaintModel::SetUndoImage() {
-       RegionStructUR* region = NULL;
-       if (_tool == 0) {
-               region = this->_brushfilter->GetModifiedRegion();
-       }
-       if (_tool == 1) {
-               region = this->_fillfilter->GetModifiedRegion();
-       }
-       this->_imageUndoRedo->SetUndoImage((*region));
-       this->_brushfilter->CleanModifiedRegion();
-       this->_fillfilter->CleanModifiedRegion();
+void ManualPaintModel::SetUndoImage() {
+       ImageMManager* imMManager = NULL;
+        if (_tool == 0) {
+        imMManager = this->_brushfilter->GetImageMManager();
+        }
+        if (_tool == 1) {
+        imMManager = this->_fillfilter->GetImageMManager();
+        }
+        this->_imageUndoRedo->SetURImages(imMManager);
+        this->_brushfilter->CleanImageMManager();
+        this->_fillfilter->CleanImageMManager();
 }
 //---------------------------------------------------------------------------
 
 void ManualPaintModel::Undo() {
-       //this->_imageUndoRedo->Undo();
-}*/
+       this->_imageUndoRedo->Undo();
+}
+
+void ManualPaintModel::Redo() {
+       this->_imageUndoRedo->Redo();
+}