]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ThresholdImageView.h
no message
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / ThresholdImageView / ThresholdImageView.h
index 56dd8a6e7e0c94800ffe7812ca5c9781fda6a4db..5ca77b56deb4ed2b1950dbf10786fd431b46e625 100644 (file)
@@ -36,14 +36,19 @@ class  ThresholdImageView
          
          void SetImage(vtkImageData* image);
          void SetwxVtkBaseView(wxVtkBaseView *baseview);
+         wxVtkBaseView *GetwxVtkBaseView();
+         void SetBaseColor(double r, double g, double b);
          
          void SetZ(int z);
-         void SetminMax(int min, int max);
+         void SetminMaxValue(int min, int max);
          
   private:
          int                                   _Z;
-         double                                _min;
-         double                                _max;
+         double                                _baseColorR;
+         double                                _baseColorG;
+         double                                _baseColorB;
+         double                                _minValue;
+         double                                _maxValue;
          bool                                  _actorPresent;
          vtkImageData                  *_image;
          vtkImageReslice               *_imageReslicer;