X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FvtkBaseData.cxx;h=8566966ce942924af8e121aaecdb4bf665fba60e;hb=63ee187ed08495d67c09ebb243227175f144615d;hp=26de1a68db586e356bd68a1f2196eab65746ac68;hpb=543dfcbe8f5ff78bbed90ef1e20c722bfa0ef248;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkBaseData.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkBaseData.cxx index 26de1a6..8566966 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkBaseData.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkBaseData.cxx @@ -1,12 +1,41 @@ +/*# --------------------------------------------------------------------- +# +# 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 "vtkBaseData.h" + + +//------------------------------------------------------------------- vtkBaseData::vtkBaseData() { - - _z = 0; - _t = 0; - _marImageData = 0; + _z = 0; + _t = 0; + _marImageData = 0; + _interpolate = true; + _observable = vtkObject::New(); } //------------------------------------------------------------------- @@ -32,6 +61,7 @@ vtkImageData* vtkBaseData::GetImageData() } } + //------------------------------------------------------------------- marImageData* vtkBaseData::GetMarImageData() { @@ -65,7 +95,9 @@ void vtkBaseData::Configure() // virtual } //------------------------------------------------------------------- -void vtkBaseData::SetZ(double z){ +void vtkBaseData::SetZ(double z) +{ + //int maxZ; // int dim[3]; @@ -103,6 +135,7 @@ void vtkBaseData::SetZ(double z){ } _z=z; + _observable->InvokeEvent(3); } } @@ -157,3 +190,23 @@ double vtkBaseData::GetColorLevel() return _colorLevel; } + +//------------------------------------------------------------------- +void vtkBaseData::AddObserver(int eventNumber, vtkCommand *observer) +{ + _observable->AddObserver( eventNumber , observer ); + //Configure(); +} + +//------------------------------------------------------------------- +bool vtkBaseData::GetInterpolate() +{ + return _interpolate; +} + +//------------------------------------------------------------------- +void vtkBaseData::SetInterpolate(bool value) +{ + _interpolate = value; +} +