Engauge Digitizer  2
ColorConstants.h
1 /******************************************************************************************************
2  * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released *
3  * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file *
4  * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. *
5  ******************************************************************************************************/
6 
7 #ifndef CURVE_CONSTANTS_H
8 #define CURVE_CONSTANTS_H
9 
11 const int INTENSITY_MIN = 0;
12 const int INTENSITY_MAX = 100;
13 const int INTENSITY_LOW_DEFAULT = 0;
14 const int INTENSITY_HIGH_DEFAULT = 50;
15 const int FOREGROUND_MIN = 0;
16 const int FOREGROUND_MAX = 100;
17 const int FOREGROUND_LOW_DEFAULT = 0;
18 const int FOREGROUND_HIGH_DEFAULT = 10;
19 const int HUE_MIN = 0;
20 const int HUE_MAX = 360;
21 const int HUE_LOW_DEFAULT = 180;
22 const int HUE_HIGH_DEFAULT = 360;
23 const int SATURATION_MIN = 0;
24 const int SATURATION_MAX = 100;
25 const int SATURATION_LOW_DEFAULT = 50;
26 const int SATURATION_HIGH_DEFAULT = 100;
27 const int VALUE_MIN = 0;
28 const int VALUE_MAX = 100;
29 const int VALUE_LOW_DEFAULT = 0;
30 const int VALUE_HIGH_DEFAULT = 50;
31 
32 #endif // CURVE_CONSTANTS_H