]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/LayerImageBase.h
#3162 creaMaracasVisu Bug New Normal - Threshold layer
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / ThresholdImageView / LayerImageBase.h
index b6ad1e1dfd4e02209616220a6b2871d92489b4d3..e9eec4326fb1accd52bf854fb4da8b5fe686ee7f 100644 (file)
@@ -85,13 +85,15 @@ class LayerImageBase
   public:
                LayerImageBase();
                virtual ~LayerImageBase();
-               void SetX(int x);
-               void SetY(int y);
-               void SetZ(int z);
-               void SetImage(vtkImageData* image);
-               void SetRangeForColorBar(std::vector<double> &range);
-               void GetRangeForColorBar(double &minRange, double &maxRange);
-               void SetwxVtkBaseView(wxVtkBaseView *baseview);
+               void                    SetX(int x);
+               void                    SetY(int y);
+               void                    SetZ(int z);
+               void                    SetImage(vtkImageData* image);
+               vtkImageData*   GetImage();
+               void                    SetRangeForColorBar(std::vector<double> &range);
+               void                    GetRangeForColorBar(double &minRange, double &maxRange);
+               void                    SetColorBarPosition(std::vector<int> &colorbarposition);
+               void                    SetwxVtkBaseView(wxVtkBaseView *baseview);
 
                void onThreshold();
                void onThresholdChange();
@@ -118,7 +120,6 @@ class LayerImageBase
                void GetSpcOriginalLayer(double *spc);
                void GetSpcBase(double *spc);
 
-
   private:
                int                                                     _X;
                int                                                     _Y;
@@ -129,8 +130,7 @@ class LayerImageBase
                double                                          _newSpcLayer[3];
                int                                             _dimBase[3];
                double                                          _spcBase[3];
-
-               
+               double                                          _opacity;
 
                vtkImageData                            *_image;
                vtkImageChangeInformation       *_imageChangeInformation;
@@ -139,18 +139,15 @@ class LayerImageBase
                vtkImageMapToColors                     *_thresholdMapper;
                vtkImageActor                           *_thresholdActor;
                wxVtkBaseView                           *_baseView;
-
                vtkScalarBarActor                       *_scalarbarActor;
-
                virtual void                            ConfigLookupTable() = 0;                
                void                                            CleanXYZ(double &x, double &y, double &z);
 
-
   protected:
                vtkLookupTable                          *GetThresholdTable();
-               vtkImageData                            *GetImage();
                double                                          _range[2];
                std::vector<double>             _rangeForColorBar;
+               std::vector<int>                        _colorBarPosition;
  };