Engauge Digitizer  2
ColorConstants.h
1 #ifndef CURVE_CONSTANTS_H
2 #define CURVE_CONSTANTS_H
3 
5 const int INTENSITY_MIN = 0;
6 const int INTENSITY_MAX = 100;
7 const int INTENSITY_LOW_DEFAULT = 0;
8 const int INTENSITY_HIGH_DEFAULT = 50;
9 const int FOREGROUND_MIN = 0;
10 const int FOREGROUND_MAX = 100;
11 const int FOREGROUND_LOW_DEFAULT = 0;
12 const int FOREGROUND_HIGH_DEFAULT = 10;
13 const int HUE_MIN = 0;
14 const int HUE_MAX = 360;
15 const int HUE_LOW_DEFAULT = 180;
16 const int HUE_HIGH_DEFAULT = 360;
17 const int SATURATION_MIN = 0;
18 const int SATURATION_MAX = 100;
19 const int SATURATION_LOW_DEFAULT = 50;
20 const int SATURATION_HIGH_DEFAULT = 100;
21 const int VALUE_MIN = 0;
22 const int VALUE_MAX = 100;
23 const int VALUE_LOW_DEFAULT = 0;
24 const int VALUE_HIGH_DEFAULT = 50;
25 
26 #endif // CURVE_CONSTANTS_H