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 #include <swri_console/settings_keys.h> 00032 00033 namespace swri_console 00034 { 00035 const QString SettingsKeys::DISPLAY_TIMESTAMPS = "Timestamps/DisplayTimestamps"; 00036 const QString SettingsKeys::ABSOLUTE_TIMESTAMPS = "Timestamps/AbsoluteTimestamps"; 00037 const QString SettingsKeys::USE_REGEXPS = "Filters/UseRegexps"; 00038 const QString SettingsKeys::INCLUDE_FILTER = "Filters/IncludeFilter"; 00039 const QString SettingsKeys::EXCLUDE_FILTER = "Filters/ExcludeFilter"; 00040 const QString SettingsKeys::SHOW_DEBUG = "Severity/ShowDebug"; 00041 const QString SettingsKeys::SHOW_INFO = "Severity/ShowInfo"; 00042 const QString SettingsKeys::SHOW_WARN = "Severity/ShowWarn"; 00043 const QString SettingsKeys::SHOW_ERROR = "Severity/ShowError"; 00044 const QString SettingsKeys::SHOW_FATAL = "Severity/ShowFatal"; 00045 const QString SettingsKeys::FOLLOW_NEWEST = "UI/FollowNewest"; 00046 const QString SettingsKeys::FONT = "UI/Font"; 00047 const QString SettingsKeys::DEBUG_COLOR = "Colors/DebugColor"; 00048 const QString SettingsKeys::INFO_COLOR = "Colors/InfoColor"; 00049 const QString SettingsKeys::WARN_COLOR = "Colors/WarnColor"; 00050 const QString SettingsKeys::ERROR_COLOR = "Colors/ErrorColor"; 00051 const QString SettingsKeys::FATAL_COLOR = "Colors/FatalColor"; 00052 const QString SettingsKeys::COLORIZE_LOGS = "Colors/ColorizeLogs"; 00053 const QString SettingsKeys::ALTERNATE_LOG_ROW_COLORS = "Logs/AlternateRowColors"; 00054 }