]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkBaseData.cxx
#3155 creaMaracasVisu Feature New Normal - ViewerPlane ComplexBox
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / vtkBaseData.cxx
index f8df99a5922db2b4fd84c5dd37bbd18334d8a7f2..7aed68e42feff9947e6d1b42e3bd996e3cb198ef 100644 (file)
 #  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;
+       _fixAxis2D              = false;
+       _opacityAxis    = 0.5;
+       _observable     = vtkObject::New();
 }
 
 //-------------------------------------------------------------------
@@ -57,6 +60,7 @@ vtkImageData* vtkBaseData::GetImageData()
        }
        
 }
+
 //-------------------------------------------------------------------
 marImageData* vtkBaseData::GetMarImageData()
 {
@@ -90,7 +94,9 @@ void vtkBaseData::Configure()  // virtual
 }
 
 //-------------------------------------------------------------------
-void vtkBaseData::SetZ(double z){
+void vtkBaseData::SetZ(double z)
+{
+
        //int maxZ;
 
 //     int dim[3];
@@ -128,6 +134,7 @@ void vtkBaseData::SetZ(double z){
                }
 
                _z=z;
+               _observable->InvokeEvent(3);    
        }
 }
 
@@ -182,3 +189,46 @@ 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;
+}
+
+//-------------------------------------------------------------------
+bool vtkBaseData::GetFixAxis2D()       
+{
+       return _fixAxis2D;
+}
+
+//-------------------------------------------------------------------
+void vtkBaseData::SetFixAxis2D(bool value)     
+{
+       _fixAxis2D = value;
+}
+
+//-------------------------------------------------------------------
+double vtkBaseData::GetOpacityAxis()   
+{
+       return _opacityAxis;
+}
+
+//-------------------------------------------------------------------
+void vtkBaseData::SetOpacityAxis(double value) 
+{
+       _opacityAxis = value;
+}