00001 // ***************************************************************************** 00002 // 00003 // Copyright (c) 2015, Southwest Research Institute® (SwRI®) 00004 // All rights reserved. 00005 // 00006 // Redistribution and use in source and binary forms, with or without 00007 // modification, are permitted provided that the following conditions are met: 00008 // * Redistributions of source code must retain the above copyright 00009 // notice, this list of conditions and the following disclaimer. 00010 // * Redistributions in binary form must reproduce the above copyright 00011 // notice, this list of conditions and the following disclaimer in the 00012 // documentation and/or other materials provided with the distribution. 00013 // * Neither the name of Southwest Research Institute® (SwRI®) nor the 00014 // names of its contributors may be used to endorse or promote products 00015 // derived from this software without specific prior written permission. 00016 // 00017 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00018 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00019 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00020 // ARE DISCLAIMED. IN NO EVENT SHALL Southwest Research Institute® BE LIABLE 00021 // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 00022 // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 00023 // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00024 // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00025 // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 00026 // OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH 00027 // DAMAGE. 00028 // 00029 // ***************************************************************************** 00030 00031 #ifndef SWRI_CONSOLE_SETTINGS_KEYS_H 00032 #define SWRI_CONSOLE_SETTINGS_KEYS_H 00033 00034 #include <QString> 00035 00036 namespace swri_console 00037 { 00044 class SettingsKeys 00045 { 00046 public: 00047 static const QString DISPLAY_TIMESTAMPS; 00048 static const QString ABSOLUTE_TIMESTAMPS; 00049 static const QString USE_REGEXPS; 00050 static const QString INCLUDE_FILTER; 00051 static const QString EXCLUDE_FILTER; 00052 static const QString SHOW_DEBUG; 00053 static const QString SHOW_INFO; 00054 static const QString SHOW_WARN; 00055 static const QString SHOW_ERROR; 00056 static const QString SHOW_FATAL; 00057 static const QString FOLLOW_NEWEST; 00058 static const QString FONT; 00059 static const QString DEBUG_COLOR; 00060 static const QString INFO_COLOR; 00061 static const QString WARN_COLOR; 00062 static const QString ERROR_COLOR; 00063 static const QString FATAL_COLOR; 00064 static const QString COLORIZE_LOGS; 00065 static const QString ALTERNATE_LOG_ROW_COLORS; 00066 }; 00067 } 00068 00069 00070 #endif //SWRI_CONSOLE_SETTINGS_KEYS_H