00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00032 #ifndef __vtkThresholdTable_h
00033 #define __vtkThresholdTable_h
00034
00035 #include "vtkTableAlgorithm.h"
00036 #include "vtkVariant.h"
00037
00038 class VTK_INFOVIS_EXPORT vtkThresholdTable : public vtkTableAlgorithm
00039 {
00040 public:
00041 static vtkThresholdTable* New();
00042 vtkTypeRevisionMacro(vtkThresholdTable, vtkTableAlgorithm);
00043 void PrintSelf(ostream& os, vtkIndent indent);
00044
00045
00046 enum {
00047 ACCEPT_LESS_THAN = 0,
00048 ACCEPT_GREATER_THAN = 1,
00049 ACCEPT_BETWEEN = 2,
00050 ACCEPT_OUTSIDE = 3
00051 };
00052
00053
00055
00060 vtkSetClampMacro(Mode, int, 0, 3);
00061 vtkGetMacro(Mode, int);
00063
00064
00066
00068 virtual void SetMinValue(vtkVariant v)
00069 {
00070 this->MinValue = v;
00071 this->Modified();
00072 }
00073 virtual vtkVariant GetMinValue()
00074 {
00075 return this->MinValue;
00076 }
00078
00080
00082 virtual void SetMaxValue(vtkVariant v)
00083 {
00084 this->MaxValue = v;
00085 this->Modified();
00086 }
00087 virtual vtkVariant GetMaxValue()
00088 {
00089 return this->MaxValue;
00090 }
00091
00093
00095
00096 void SetMinValue(double v)
00097 {
00098 this->SetMinValue(vtkVariant(v));
00099 }
00101
00103
00104 void SetMaxValue(double v)
00105 {
00106 this->SetMaxValue(vtkVariant(v));
00107 }
00109
00110 protected:
00111 vtkThresholdTable();
00112 ~vtkThresholdTable();
00113
00114 int RequestData(
00115 vtkInformation*,
00116 vtkInformationVector**,
00117 vtkInformationVector*);
00118
00119 vtkVariant MinValue;
00120 vtkVariant MaxValue;
00121 int Mode;
00122
00123 private:
00124 vtkThresholdTable(const vtkThresholdTable&);
00125 void operator=(const vtkThresholdTable&);
00126 };
00127
00128 #endif
00129