ui: added color_scheme_test command displaying all graph node types and states

implementations for other views comming.
This commit is contained in:
Eberhard Graether
2016-06-22 16:14:06 +02:00
parent 36c504d8a0
commit 7f867bf889
17 changed files with 457 additions and 50 deletions
+3 -1
View File
@@ -23,7 +23,8 @@ struct SearchMatch
enum CommandType
{
COMMAND_ALL,
COMMAND_ERROR
COMMAND_ERROR,
COMMAND_COLOR_SCHEME_TEST
};
static void log(const std::vector<SearchMatch>& matches, const std::string& query);
@@ -33,6 +34,7 @@ struct SearchMatch
static SearchMatch createCommand(CommandType type);
static std::string getCommandName(CommandType type);
static CommandType getCommandType(const std::string& name);
static const char FULLTEXT_SEARCH_CHARACTER = '?';