TuttleOFX
1
|
00001 #ifndef _TUTTLE_PLUGIN_INVERT_DEFINITIONS_HPP_ 00002 #define _TUTTLE_PLUGIN_INVERT_DEFINITIONS_HPP_ 00003 00004 #include <tuttle/plugin/global.hpp> 00005 00006 namespace tuttle { 00007 namespace plugin { 00008 namespace invert { 00009 00010 static const std::string kParamProcessGroup = "channelGroup"; 00011 static const std::string kParamProcessGroupLabel = "Channels"; 00012 00013 static const std::string kParamProcessR = "r"; 00014 static const std::string kParamProcessRLabel = "R"; 00015 static const std::string kParamProcessRHint = "Invert red component"; 00016 static const std::string kParamProcessG = "g"; 00017 static const std::string kParamProcessGLabel = "G"; 00018 static const std::string kParamProcessGHint = "Invert green component"; 00019 static const std::string kParamProcessB = "b"; 00020 static const std::string kParamProcessBLabel = "B"; 00021 static const std::string kParamProcessBHint = "Invert blue component"; 00022 static const std::string kParamProcessA = "a"; 00023 static const std::string kParamProcessALabel = "A"; 00024 static const std::string kParamProcessAHint = "Invert alpha component"; 00025 00026 static const std::string kParamProcessGray = "gray"; 00027 static const std::string kParamProcessGrayLabel = "Gray"; 00028 static const std::string kParamProcessGrayHint = "Invert gray image"; 00029 00030 } 00031 } 00032 } 00033 00034 #endif 00035