X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FimageUndoRedo%2FimageModificationManager.h;h=d9796de75fa0ed6bc3248a2ae848f36905a46ed4;hb=15112ae15da4222831b0e8e7c9be87daf9e99a1c;hp=44561d38f0ff614991de89d2dc68c38adddb89b3;hpb=a55972486c881d811de6c5d2b68f5d1b2885ac11;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/imageModificationManager.h b/lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/imageModificationManager.h index 44561d3..d9796de 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/imageModificationManager.h +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/imageModificationManager.h @@ -1,3 +1,28 @@ +/*# --------------------------------------------------------------------- +# +# 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. +# ------------------------------------------------------------------------ */ + /*! * @file imageMManager.h * @brief This file contains the ImageMManager class. @@ -19,7 +44,8 @@ * @brief This class contains the modification manager of the undo/redo * @details This class contains the region and some information about the undo/redo */ -class ImageMManager { +class ImageMManager +{ public: // ---------------------------------------------------------------------------------- /*! @fn ImageMManager(); @@ -59,6 +85,12 @@ public: */ RegionStructUR GetModifiedRegion(); // ---------------------------------------------------------------------------------- + + void BaseInitialPoint(int x, int y, int z); + int GetBaseInitialPointX(); + int GetBaseInitialPointY(); + int GetBaseInitialPointZ(); + private: // ---------------------------------------------------------------------------------- /*! @fn @@ -67,8 +99,12 @@ private: void CalculateMinMaxRegion(const int& i, const int& j, const int& k); // ---------------------------------------------------------------------------------- private: - RegionStructUR m_RegionStruct; //!< This is the Region structure. - bool m_ValidRegion; //!< This is true if the region is valid. + RegionStructUR m_RegionStruct; //!< This is the Region structure. + bool m_ValidRegion; //!< This is true if the region is valid. + int baseInitialPointX; + int baseInitialPointY; + int baseInitialPointZ; + }; #endif /* IMAGEMANAGEMENT_H_ */