ui: color schemes

Put all colors into single xml file. Accessing colors is handled via the singleton class ColorScheme. The default scheme
"bright.xml" holds the original colors. The scheme "dark.xml" is a start, but still a poor alternative. Color schemes
can be switched via the View menu.
This commit is contained in:
Eberhard Graether
2015-07-17 19:50:39 +02:00
parent fb170cbd5d
commit 5722b4dc23
42 changed files with 979 additions and 309 deletions
+4 -4
View File
@@ -154,13 +154,13 @@ std::string Edge::getTypeString(EdgeType type)
case EDGE_TYPEDEF_OF:
return "typedef";
case EDGE_TEMPLATE_PARAMETER_OF:
return "template parameter";
return "template_parameter";
case EDGE_TEMPLATE_ARGUMENT_OF:
return "template argument";
return "template_argument";
case EDGE_TEMPLATE_DEFAULT_ARGUMENT_OF:
return "template default argument";
return "template_default_argument";
case EDGE_TEMPLATE_SPECIALIZATION_OF:
return "template specialization";
return "template_specialization";
case EDGE_INCLUDE:
return "include";
case EDGE_AGGREGATION: