]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkBaseData.h
#3155 creaMaracasVisu Feature New Normal - ViewerPlane ComplexBox
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / vtkBaseData.h
index df0a4e68bb83f0d00a790f4c5e9fae4a812f90ee..6870e0189568da85d478ea4509bc77b65219fa49 100644 (file)
 #define VTKBASEDATA_H_
 
 #include "marTypes.h"
-
-#include "marImageData.h"
+#include "vtkCommand.h"
 #include "vtkImageData.h"
+#include "marImageData.h"
+
 
 class creaMaracasVisu_EXPORT vtkBaseData {
 public:
        vtkBaseData();
-       virtual ~vtkBaseData();
+       virtual                 ~vtkBaseData();
        vtkImageData*   GetImageData();
        marImageData*   GetMarImageData();
-                       void    SetMarImageData(marImageData *marimagedata);
+       void                    SetMarImageData(marImageData *marimagedata);
        virtual void    Configure();
        double                  GetZ();
        void                    SetZ(double z);
-
        int                             GetT();
        void                    SetT(double t);
-       
-       void SetColorWindow(double colorWindow);
-       void SetColorLevel(double colorLevel);  
-       double GetColorWindow();
-       double GetColorLevel(); 
+       void                    SetColorWindow(double colorWindow);
+       void                    SetColorLevel(double colorLevel);       
+       double                  GetColorWindow();
+       double                  GetColorLevel();        
+       void                    AddObserver(int eventNumber, vtkCommand *observer);
+       bool                    GetInterpolate();
+       void                    SetInterpolate(bool value);
+       bool                    GetFixAxis2D();
+       void                    SetFixAxis2D(bool value);
+       double                  GetOpacityAxis();
+       void                    SetOpacityAxis(double value);
        
 protected:
        marImageData    *_marImageData;
        double                  _z;
        int                             _t;
-       
        double                  _colorWindow;
        double                  _colorLevel;
+       bool                    _interpolate;
+       bool                    _fixAxis2D;
+       double                  _opacityAxis;
+       vtkObject*              _observable;
+private:
+
 };
 
 #endif /*VTKBASEDATA_H_*/