00001 /****************************************************************************************************** 00002 * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released * 00003 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file * 00004 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. * 00005 ******************************************************************************************************/ 00006 00007 #ifndef COLOR_FILTER_MODE_H 00008 #define COLOR_FILTER_MODE_H 00009 00010 #include <QString> 00011 00012 enum ColorFilterMode { 00013 COLOR_FILTER_MODE_FOREGROUND, 00014 COLOR_FILTER_MODE_HUE, 00015 COLOR_FILTER_MODE_INTENSITY, 00016 COLOR_FILTER_MODE_SATURATION, 00017 COLOR_FILTER_MODE_VALUE, 00018 NUM_COLOR_FILTER_MODES 00019 }; 00020 00021 extern QString colorFilterModeToString (ColorFilterMode colorFilterMode); 00022 00023 #endif // COLOR_FILTER_MODE_H