ui: extended color scheme and added new color scheme bad_rainbow
* added color scheme template * define fill, border, text, icon and hatching colors for each node with states normal and focus * define colors for each edge with states normal and focus * use default node and edge colors when no type specific ones are defined * use normal colors for nodes and edges when no focused are defined * allow nodes and edges to imitate look of others with "like" tag * added style for bundle * added style for count circle
This commit is contained in:
@@ -0,0 +1,241 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!--
|
||||
COLOR:
|
||||
1. HEX RGB: #RRGGBB - e.g. #00FF00
|
||||
2. HEX ARGB: #AARRGGBB - e.g. #5500FF00
|
||||
3. Qt5 color name - e.g. white (http://doc.qt.io/qt-5/qcolor.html)
|
||||
-->
|
||||
|
||||
<config>
|
||||
<search>
|
||||
<background></background>
|
||||
|
||||
<button>
|
||||
<normal></normal>
|
||||
<hover></hover>
|
||||
<press></press>
|
||||
<disabled></disabled>
|
||||
<icon></icon>
|
||||
</button>
|
||||
|
||||
<field>
|
||||
<text></text>
|
||||
<background></background>
|
||||
<highlight></highlight>
|
||||
</field>
|
||||
|
||||
<popup>
|
||||
<text></text>
|
||||
<by_text></by_text>
|
||||
<background></background>
|
||||
<highlight></highlight>
|
||||
</popup>
|
||||
|
||||
<query>
|
||||
<none>
|
||||
<normal></normal>
|
||||
<hover></hover>
|
||||
</none>
|
||||
<command>
|
||||
<normal></normal>
|
||||
<hover></hover>
|
||||
</command>
|
||||
<operator>
|
||||
<normal></normal>
|
||||
<hover></hover>
|
||||
</operator>
|
||||
</query>
|
||||
</search>
|
||||
|
||||
<code>
|
||||
<background></background>
|
||||
|
||||
<file>
|
||||
<background></background>
|
||||
|
||||
<title>
|
||||
<text></text>
|
||||
<normal></normal>
|
||||
<hover></hover>
|
||||
<press></press>
|
||||
<icon></icon>
|
||||
</title>
|
||||
|
||||
<ref_count>
|
||||
<text></text>
|
||||
<background></background>
|
||||
</ref_count>
|
||||
</file>
|
||||
|
||||
<snippet>
|
||||
<background></background>
|
||||
|
||||
<title>
|
||||
<text></text>
|
||||
<background></background>
|
||||
<hover></hover>
|
||||
</title>
|
||||
|
||||
<line_number>
|
||||
<text></text>
|
||||
<background></background>
|
||||
</line_number>
|
||||
|
||||
<syntax>
|
||||
<normal></normal>
|
||||
<directive></directive>
|
||||
<keyword></keyword>
|
||||
<type></type>
|
||||
<comment></comment>
|
||||
<number></number>
|
||||
<quotation></quotation>
|
||||
<function></function>
|
||||
</syntax>
|
||||
|
||||
<selection>
|
||||
<location>
|
||||
<normal>
|
||||
<border></border>
|
||||
<fill></fill>
|
||||
</normal>
|
||||
<focus>
|
||||
<border></border>
|
||||
<fill></fill>
|
||||
</focus>
|
||||
<active>
|
||||
<border></border>
|
||||
<fill></fill>
|
||||
</active>
|
||||
</location>
|
||||
<scope>
|
||||
<normal>
|
||||
<border></border>
|
||||
<fill></fill>
|
||||
</normal>
|
||||
<focus>
|
||||
<border></border>
|
||||
<fill></fill>
|
||||
</focus>
|
||||
<active>
|
||||
<border></border>
|
||||
<fill></fill>
|
||||
</active>
|
||||
</scope>
|
||||
<error>
|
||||
<normal>
|
||||
<border></border>
|
||||
<fill></fill>
|
||||
</normal>
|
||||
<focus>
|
||||
<border></border>
|
||||
<fill></fill>
|
||||
</focus>
|
||||
<active>
|
||||
<border></border>
|
||||
<fill></fill>
|
||||
</active>
|
||||
</error>
|
||||
</selection>
|
||||
</snippet>
|
||||
</code>
|
||||
|
||||
<graph>
|
||||
<background></background>
|
||||
|
||||
<node>
|
||||
<!-- REQUIRED -->
|
||||
<default>
|
||||
<!-- NODE TEMPLATE-->
|
||||
<like><!-- NODE TYPE NAME: Imitates the look of that node type. If defined all colors will be ignored --></like>
|
||||
|
||||
<fill>
|
||||
<normal></normal>
|
||||
<focus></focus> <!-- If not defined, the normal tag is used -->
|
||||
</fill>
|
||||
<border>
|
||||
<normal></normal>
|
||||
<focus></focus> <!-- If not defined, the normal tag is used -->
|
||||
</border>
|
||||
<text>
|
||||
<normal></normal>
|
||||
<focus></focus> <!-- If not defined, the normal tag is used -->
|
||||
</text>
|
||||
<icon>
|
||||
<normal></normal>
|
||||
<focus></focus> <!-- If not defined, the normal tag is used -->
|
||||
</icon>
|
||||
<hatching>
|
||||
<normal></normal>
|
||||
<focus></focus> <!-- If not defined, the normal tag is used -->
|
||||
</hatching>
|
||||
</default>
|
||||
|
||||
<!-- OPTIONAL: type specific node colors can be overriden by using the TEMPLATE within a type tag below -->
|
||||
<type></type>
|
||||
<class></class>
|
||||
<struct></struct>
|
||||
<enum></enum>
|
||||
<typedef></typedef>
|
||||
<template_parameter_type></template_parameter_type>
|
||||
|
||||
<function></function>
|
||||
<method></method>
|
||||
|
||||
<field></field>
|
||||
<global_variable></global_variable>
|
||||
<enum_constant></enum_constant>
|
||||
|
||||
<undefined></undefined>
|
||||
<namespace></namespace>
|
||||
|
||||
<file></file>
|
||||
<macro></macro>
|
||||
|
||||
<access></access>
|
||||
<bundle></bundle>
|
||||
<count_number></count_number> <!-- The small circles with numbers in the graph -->
|
||||
</node>
|
||||
<edge>
|
||||
<!-- REQUIRED -->
|
||||
<default>
|
||||
<!-- EDGE TEMPLATE-->
|
||||
|
||||
<like><!-- EDGE TYPE NAME: Imitates the look of that edge type. If defined all colors will be ignored --></like>
|
||||
|
||||
<normal></normal>
|
||||
<focus></focus> <!-- If not defined, the normal tag is used -->
|
||||
</default>
|
||||
|
||||
<!-- OPTIONAL: type specific edge colors can be overriden by using the TEMPLATE within a type tag below -->
|
||||
<type_of></type_of>
|
||||
<return_type></return_type>
|
||||
<parameter_type></parameter_type>
|
||||
|
||||
<type_use></type_use>
|
||||
<inheritance></inheritance>
|
||||
<typedef></typedef>
|
||||
|
||||
<override></override>
|
||||
|
||||
<call></call>
|
||||
|
||||
<use></use>
|
||||
|
||||
<template_parameter></template_parameter>
|
||||
<template_argument></template_argument>
|
||||
<template_default_argument></template_default_argument>
|
||||
<template_specialization></template_specialization>
|
||||
|
||||
<include></include>
|
||||
<macro_use></macro_use>
|
||||
|
||||
<aggregation></aggregation>
|
||||
</edge>
|
||||
</graph>
|
||||
|
||||
<tool_tip>
|
||||
<text></text>
|
||||
<background></background>
|
||||
</tool_tip>
|
||||
</config>
|
||||
@@ -0,0 +1,323 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<config>
|
||||
<search>
|
||||
<background>#494949</background>
|
||||
|
||||
<button>
|
||||
<normal>#808080</normal>
|
||||
<hover>#B1B1B1</hover>
|
||||
<press>#CCCCCC</press>
|
||||
<disabled>#606060</disabled>
|
||||
<icon>white</icon>
|
||||
</button>
|
||||
|
||||
<field>
|
||||
<text>#3D3D3D</text>
|
||||
<background>#808080</background>
|
||||
<highlight>#B1B1B1</highlight>
|
||||
</field>
|
||||
|
||||
<popup>
|
||||
<text>#3D3D3D</text>
|
||||
<by_text>#A0A0A0</by_text>
|
||||
<background>#CCCCCC</background>
|
||||
<highlight>#FFFFFF</highlight>
|
||||
</popup>
|
||||
|
||||
<query>
|
||||
<none>
|
||||
<normal>#B1B1B1</normal>
|
||||
<hover>#CCCCCC</hover>
|
||||
</none>
|
||||
<command>
|
||||
<normal>#406D4D</normal>
|
||||
<hover>#4E855E</hover>
|
||||
</command>
|
||||
<operator>
|
||||
<normal>#7D2724</normal>
|
||||
<hover>#8C2B29</hover>
|
||||
</operator>
|
||||
</query>
|
||||
</search>
|
||||
|
||||
<code>
|
||||
<background>#494949</background>
|
||||
|
||||
<file>
|
||||
<background>#CCCCCC</background>
|
||||
|
||||
<title>
|
||||
<text>black</text>
|
||||
<normal>#CCCCCC</normal>
|
||||
<hover>#BBBBBB</hover>
|
||||
<press>#AAAAAA</press>
|
||||
<icon>black</icon>
|
||||
</title>
|
||||
|
||||
<ref_count>
|
||||
<text>#C4C4C4</text>
|
||||
<background>#494949</background>
|
||||
</ref_count>
|
||||
</file>
|
||||
|
||||
<snippet>
|
||||
<background>#494949</background>
|
||||
|
||||
<title>
|
||||
<text>#A0A0A0</text>
|
||||
<background>transparent</background>
|
||||
<hover>#2F2F2F</hover>
|
||||
</title>
|
||||
|
||||
<line_number>
|
||||
<text>#C4C4C4</text>
|
||||
<background>#494949</background>
|
||||
</line_number>
|
||||
|
||||
<syntax>
|
||||
<normal>#C4C4C4</normal>
|
||||
<directive>#00A0B6</directive>
|
||||
<keyword>#00A0B6</keyword>
|
||||
<type>#FF4A52</type>
|
||||
<comment>#A0A0A4</comment>
|
||||
<number>#EE7326</number>
|
||||
<quotation>#D663D6</quotation>
|
||||
<function>#FBBA00</function>
|
||||
</syntax>
|
||||
|
||||
<selection>
|
||||
<location>
|
||||
<normal>
|
||||
<border>transparent</border>
|
||||
<fill>transparent</fill>
|
||||
</normal>
|
||||
<focus>
|
||||
<border>#B2B2B2</border>
|
||||
<fill>transparent</fill>
|
||||
</focus>
|
||||
<active>
|
||||
<border>#B2B2B2</border>
|
||||
<fill>#4A4A4A</fill>
|
||||
</active>
|
||||
</location>
|
||||
<scope>
|
||||
<normal>
|
||||
<border>transparent</border>
|
||||
<fill>transparent</fill>
|
||||
</normal>
|
||||
<focus>
|
||||
<border>transparent</border>
|
||||
<fill>transparent</fill>
|
||||
</focus>
|
||||
<active>
|
||||
<border>transparent</border>
|
||||
<fill>transparent</fill>
|
||||
</active>
|
||||
</scope>
|
||||
<error>
|
||||
<normal>
|
||||
<border>transparent</border>
|
||||
<fill>#A0FF0000</fill>
|
||||
</normal>
|
||||
<focus>
|
||||
<border>transparent</border>
|
||||
<fill>#FFFF0000</fill>
|
||||
</focus>
|
||||
<active>
|
||||
<border>transparent</border>
|
||||
<fill>#FFFF0000</fill>
|
||||
</active>
|
||||
</error>
|
||||
</selection>
|
||||
</snippet>
|
||||
</code>
|
||||
|
||||
<graph>
|
||||
<background>#494949</background>
|
||||
|
||||
<node>
|
||||
<default>
|
||||
<fill>
|
||||
<normal>#807F80</normal>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>#FFFFFF</normal>
|
||||
</border>
|
||||
<text>
|
||||
<normal>#3D3D3D</normal>
|
||||
</text>
|
||||
<icon>
|
||||
<normal>#3D3D3D</normal>
|
||||
</icon>
|
||||
<hatching>
|
||||
<normal>#494949</normal>
|
||||
</hatching>
|
||||
</default>
|
||||
|
||||
<type>
|
||||
<border>
|
||||
<normal>#20FFFFFF</normal>
|
||||
<focus>#FFFFFF</focus>
|
||||
</border>
|
||||
<text>
|
||||
<normal>#FFFFFF</normal>
|
||||
</text>
|
||||
<icon>
|
||||
<normal>#FFFFFF</normal>
|
||||
</icon>
|
||||
</type>
|
||||
<class>
|
||||
<like>type</like>
|
||||
</class>
|
||||
<struct>
|
||||
<like>type</like>
|
||||
</struct>
|
||||
<enum>
|
||||
<like>type</like>
|
||||
</enum>
|
||||
<typedef>
|
||||
<like>type</like>
|
||||
</typedef>
|
||||
<template_parameter_type>
|
||||
<like>type</like>
|
||||
</template_parameter_type>
|
||||
|
||||
<function>
|
||||
<fill>
|
||||
<normal>#FBBA00</normal>
|
||||
<focus>#FFD05A</focus>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>transparent</normal>
|
||||
<focus>#FFFFFF</focus>
|
||||
</border>
|
||||
</function>
|
||||
<method>
|
||||
<like>function</like>
|
||||
</method>
|
||||
|
||||
<global_variable>
|
||||
<fill>
|
||||
<normal>#00A0B6</normal>
|
||||
<focus>#3BAFB2</focus>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>transparent</normal>
|
||||
<focus>#FFFFFF</focus>
|
||||
</border>
|
||||
</global_variable>
|
||||
<field>
|
||||
<like>global_variable</like>
|
||||
</field>
|
||||
<enum_constant>
|
||||
<like>global_variable</like>
|
||||
</enum_constant>
|
||||
|
||||
<undefined>
|
||||
<fill>
|
||||
<normal>#00000000</normal>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>#78282D</normal>
|
||||
</border>
|
||||
</undefined>
|
||||
<namespace>
|
||||
<like>undefined</like>
|
||||
</namespace>
|
||||
|
||||
<file>
|
||||
<fill>
|
||||
<normal>#4E82F6</normal>
|
||||
<focus>#7FA9F4</focus>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>#20FFFFFF</normal>
|
||||
<focus>#FFFFFF</focus>
|
||||
</border>
|
||||
</file>
|
||||
<macro>
|
||||
<like>file</like>
|
||||
</macro>
|
||||
|
||||
<access>
|
||||
<fill>
|
||||
<normal>#CCCCCC</normal>
|
||||
</fill>
|
||||
</access>
|
||||
<bundle>
|
||||
<fill>
|
||||
<normal>#494949</normal>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>#80FFFFFF</normal>
|
||||
<focus>#FFFFFF</focus>
|
||||
</border>
|
||||
<text>
|
||||
<normal>#FFFFFF</normal>
|
||||
</text>
|
||||
<icon>
|
||||
<normal>#FFFFFF</normal>
|
||||
</icon>
|
||||
</bundle>
|
||||
<count_number>
|
||||
<fill>
|
||||
<normal>#494949</normal>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>#CCCCCC</normal>
|
||||
</border>
|
||||
<text>
|
||||
<normal>#CCCCCC</normal>
|
||||
</text>
|
||||
</count_number>
|
||||
</node>
|
||||
<edge>
|
||||
<default>
|
||||
<normal>#797979</normal>
|
||||
</default>
|
||||
|
||||
<override>
|
||||
<normal>#CC5E89</normal>
|
||||
</override>
|
||||
|
||||
<call>
|
||||
<normal>#FBBA00</normal>
|
||||
</call>
|
||||
|
||||
<use>
|
||||
<normal>#2A6484</normal>
|
||||
</use>
|
||||
|
||||
<template_parameter>
|
||||
<normal>#C1305D</normal>
|
||||
</template_parameter>
|
||||
<template_argument>
|
||||
<normal>#C1305D</normal>
|
||||
</template_argument>
|
||||
<template_default_argument>
|
||||
<normal>#C1305D</normal>
|
||||
</template_default_argument>
|
||||
<template_specialization>
|
||||
<normal>#C1305D</normal>
|
||||
</template_specialization>
|
||||
|
||||
<include>
|
||||
<normal>#4E82F6</normal>
|
||||
</include>
|
||||
<macro_use>
|
||||
<normal>#4E82F6</normal>
|
||||
</macro_use>
|
||||
|
||||
<aggregation>
|
||||
<normal>#5D5D5D</normal>
|
||||
<focus>#6D6D6D</focus>
|
||||
</aggregation>
|
||||
</edge>
|
||||
</graph>
|
||||
|
||||
<tool_tip>
|
||||
<text>#F7F7F7</text>
|
||||
<background>#777777</background>
|
||||
</tool_tip>
|
||||
</config>
|
||||
@@ -134,154 +134,169 @@
|
||||
</code>
|
||||
|
||||
<graph>
|
||||
<text>black</text>
|
||||
<background>white</background>
|
||||
<border>#3C3C3C</border>
|
||||
<icon>black</icon>
|
||||
<hatching>white</hatching>
|
||||
|
||||
<node>
|
||||
<default>
|
||||
<fill>
|
||||
<normal>#ededed</normal>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>#3C3C3C</normal>
|
||||
</border>
|
||||
<text>
|
||||
<normal>black</normal>
|
||||
</text>
|
||||
<icon>
|
||||
<normal>black</normal>
|
||||
</icon>
|
||||
<hatching>
|
||||
<normal>white</normal>
|
||||
</hatching>
|
||||
</default>
|
||||
|
||||
<type>
|
||||
<normal>#ededed</normal>
|
||||
<hover>#ededed</hover>
|
||||
<border>
|
||||
<normal>#203C3C3C</normal>
|
||||
<focus>#3C3C3C</focus>
|
||||
</border>
|
||||
</type>
|
||||
<class>
|
||||
<normal>#ededed</normal>
|
||||
<hover>#ededed</hover>
|
||||
<like>type</like>
|
||||
</class>
|
||||
<struct>
|
||||
<normal>#ededed</normal>
|
||||
<hover>#ededed</hover>
|
||||
<like>type</like>
|
||||
</struct>
|
||||
<enum>
|
||||
<normal>#ededed</normal>
|
||||
<hover>#ededed</hover>
|
||||
<like>type</like>
|
||||
</enum>
|
||||
<typedef>
|
||||
<normal>#ededed</normal>
|
||||
<hover>#ededed</hover>
|
||||
<like>type</like>
|
||||
</typedef>
|
||||
<template_parameter_type>
|
||||
<normal>#ededed</normal>
|
||||
<hover>#ededed</hover>
|
||||
<like>type</like>
|
||||
</template_parameter_type>
|
||||
|
||||
<function>
|
||||
<normal>#F4D07D</normal>
|
||||
<hover>#F4BC3D</hover>
|
||||
<fill>
|
||||
<normal>#F4D07D</normal>
|
||||
<focus>#F4BC3D</focus>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>transparent</normal>
|
||||
<focus>#3C3C3C</focus>
|
||||
</border>
|
||||
</function>
|
||||
<method>
|
||||
<normal>#F4D07D</normal>
|
||||
<hover>#F4BC3D</hover>
|
||||
<like>function</like>
|
||||
</method>
|
||||
|
||||
<field>
|
||||
<normal>#7BB5D4</normal>
|
||||
<hover>#42A1D4</hover>
|
||||
</field>
|
||||
<global_variable>
|
||||
<normal>#7BB5D4</normal>
|
||||
<hover>#42A1D4</hover>
|
||||
<fill>
|
||||
<normal>#7BB5D4</normal>
|
||||
<focus>#42A1D4</focus>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>transparent</normal>
|
||||
<focus>#3C3C3C</focus>
|
||||
</border>
|
||||
</global_variable>
|
||||
<field>
|
||||
<like>global_variable</like>
|
||||
</field>
|
||||
<enum_constant>
|
||||
<normal>#7BB5D4</normal>
|
||||
<hover>#42A1D4</hover>
|
||||
<like>global_variable</like>
|
||||
</enum_constant>
|
||||
|
||||
<undefined>
|
||||
<normal>#CC8D91</normal>
|
||||
<hover>#CC8D91</hover>
|
||||
<fill>
|
||||
<normal>#00000000</normal>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>#CC8D91</normal>
|
||||
</border>
|
||||
</undefined>
|
||||
<namespace>
|
||||
<normal>#CC8D91</normal>
|
||||
<hover>#CC8D91</hover>
|
||||
<like>undefined</like>
|
||||
</namespace>
|
||||
|
||||
<file>
|
||||
<normal>#DDD</normal>
|
||||
<hover>#CCC</hover>
|
||||
<fill>
|
||||
<normal>#DDD</normal>
|
||||
<focus>#CCC</focus>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>#203C3C3C</normal>
|
||||
<focus>#3C3C3C</focus>
|
||||
</border>
|
||||
</file>
|
||||
|
||||
<macro>
|
||||
<normal>#DDD</normal>
|
||||
<hover>#CCC</hover>
|
||||
<like>file</like>
|
||||
</macro>
|
||||
|
||||
<access>
|
||||
<fill>
|
||||
<normal>white</normal>
|
||||
</fill>
|
||||
</access>
|
||||
<bundle>
|
||||
<fill>
|
||||
<normal>white</normal>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>#803C3C3C</normal>
|
||||
<focus>#3C3C3C</focus>
|
||||
</border>
|
||||
</bundle>
|
||||
<count_number>
|
||||
<fill>
|
||||
<normal>white</normal>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>#7C7C7C</normal>
|
||||
</border>
|
||||
<text>
|
||||
<normal>#5C5C5C</normal>
|
||||
</text>
|
||||
</count_number>
|
||||
</node>
|
||||
<edge>
|
||||
<type_of>
|
||||
<default>
|
||||
<normal>#878787</normal>
|
||||
<hover>#878787</hover>
|
||||
</type_of>
|
||||
<return_type>
|
||||
<normal>#878787</normal>
|
||||
<hover>#878787</hover>
|
||||
</return_type>
|
||||
<parameter_type>
|
||||
<normal>#878787</normal>
|
||||
<hover>#878787</hover>
|
||||
</parameter_type>
|
||||
<type_use>
|
||||
<normal>#878787</normal>
|
||||
<hover>#878787</hover>
|
||||
</type_use>
|
||||
<inheritance>
|
||||
<normal>#878787</normal>
|
||||
<hover>#878787</hover>
|
||||
</inheritance>
|
||||
<typedef>
|
||||
<normal>#878787</normal>
|
||||
<hover>#878787</hover>
|
||||
</typedef>
|
||||
</default>
|
||||
|
||||
<override>
|
||||
<normal>#CC5E89</normal>
|
||||
<hover>#CC5E89</hover>
|
||||
</override>
|
||||
|
||||
<call>
|
||||
<normal>#F4BC3D</normal>
|
||||
<hover>#F4BC3D</hover>
|
||||
</call>
|
||||
|
||||
<use>
|
||||
<normal>#3190BA</normal>
|
||||
<hover>#3190BA</hover>
|
||||
</use>
|
||||
|
||||
<template_parameter>
|
||||
<normal>#C1305D</normal>
|
||||
<hover>#C1305D</hover>
|
||||
</template_parameter>
|
||||
<template_argument>
|
||||
<normal>#C1305D</normal>
|
||||
<hover>#C1305D</hover>
|
||||
<like>template_parameter</like>
|
||||
</template_argument>
|
||||
<template_default_argument>
|
||||
<normal>#C1305D</normal>
|
||||
<hover>#C1305D</hover>
|
||||
<like>template_parameter</like>
|
||||
</template_default_argument>
|
||||
<template_specialization>
|
||||
<normal>#C1305D</normal>
|
||||
<hover>#C1305D</hover>
|
||||
<like>template_parameter</like>
|
||||
</template_specialization>
|
||||
<template_member_specialization>
|
||||
<normal>#C1305D</normal>
|
||||
<hover>#C1305D</hover>
|
||||
<like>template_parameter</like>
|
||||
</template_member_specialization>
|
||||
|
||||
<include>
|
||||
<normal>#878787</normal>
|
||||
<hover>#878787</hover>
|
||||
</include>
|
||||
|
||||
<aggregation>
|
||||
<normal>#EEE</normal>
|
||||
<hover>#DDD</hover>
|
||||
<focus>#DDD</focus>
|
||||
</aggregation>
|
||||
<macro_use>
|
||||
<normal>#878787</normal>
|
||||
<hover>#878787</hover>
|
||||
</macro_use>
|
||||
</edge>
|
||||
</graph>
|
||||
|
||||
|
||||
@@ -134,154 +134,191 @@
|
||||
</code>
|
||||
|
||||
<graph>
|
||||
<text>#F7F7F7</text>
|
||||
<border>#C3C3C3</border>
|
||||
<background>#272728</background>
|
||||
<icon>#F7F7F7</icon>
|
||||
<hatching>#272728</hatching>
|
||||
|
||||
<node>
|
||||
<default>
|
||||
<fill>
|
||||
<normal>#4D4D4D</normal>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>#C3C3C3</normal>
|
||||
</border>
|
||||
<text>
|
||||
<normal>#F7F7F7</normal>
|
||||
</text>
|
||||
<icon>
|
||||
<normal>#F7F7F7</normal>
|
||||
</icon>
|
||||
<hatching>
|
||||
<normal>#272728</normal>
|
||||
</hatching>
|
||||
</default>
|
||||
|
||||
<type>
|
||||
<normal>#4D4D4D</normal>
|
||||
<hover>#4D4D4D</hover>
|
||||
<border>
|
||||
<normal>#20C3C3C3</normal>
|
||||
<focus>#C3C3C3</focus>
|
||||
</border>
|
||||
</type>
|
||||
<class>
|
||||
<normal>#4D4D4D</normal>
|
||||
<hover>#4D4D4D</hover>
|
||||
<border>
|
||||
<normal>#20C3C3C3</normal>
|
||||
<focus>#C3C3C3</focus>
|
||||
</border>
|
||||
</class>
|
||||
<struct>
|
||||
<normal>#4D4D4D</normal>
|
||||
<hover>#4D4D4D</hover>
|
||||
<border>
|
||||
<normal>#20C3C3C3</normal>
|
||||
<focus>#C3C3C3</focus>
|
||||
</border>
|
||||
</struct>
|
||||
<enum>
|
||||
<normal>#4D4D4D</normal>
|
||||
<hover>#4D4D4D</hover>
|
||||
<border>
|
||||
<normal>#20C3C3C3</normal>
|
||||
<focus>#C3C3C3</focus>
|
||||
</border>
|
||||
</enum>
|
||||
<typedef>
|
||||
<normal>#4D4D4D</normal>
|
||||
<hover>#4D4D4D</hover>
|
||||
<border>
|
||||
<normal>#20C3C3C3</normal>
|
||||
<focus>#C3C3C3</focus>
|
||||
</border>
|
||||
</typedef>
|
||||
<template_parameter_type>
|
||||
<normal>#4D4D4D</normal>
|
||||
<hover>#4D4D4D</hover>
|
||||
<border>
|
||||
<normal>#20C3C3C3</normal>
|
||||
<focus>#C3C3C3</focus>
|
||||
</border>
|
||||
</template_parameter_type>
|
||||
|
||||
<function>
|
||||
<normal>#7A681F</normal>
|
||||
<hover>#9C8528</hover>
|
||||
<fill>
|
||||
<normal>#7A681F</normal>
|
||||
<focus>#9C8528</focus>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>transparent</normal>
|
||||
<focus>#C3C3C3</focus>
|
||||
</border>
|
||||
</function>
|
||||
<method>
|
||||
<normal>#7A681F</normal>
|
||||
<hover>#9C8528</hover>
|
||||
<like>function</like>
|
||||
</method>
|
||||
|
||||
<field>
|
||||
<normal>#21516B</normal>
|
||||
<hover>#2A6484</hover>
|
||||
</field>
|
||||
<global_variable>
|
||||
<normal>#21516B</normal>
|
||||
<hover>#2A6484</hover>
|
||||
<fill>
|
||||
<normal>#21516B</normal>
|
||||
<focus>#2A6484</focus>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>transparent</normal>
|
||||
<focus>#C3C3C3</focus>
|
||||
</border>
|
||||
</global_variable>
|
||||
<field>
|
||||
<like>global_variable</like>
|
||||
</field>
|
||||
<enum_constant>
|
||||
<normal>#21516B</normal>
|
||||
<hover>#2A6484</hover>
|
||||
<like>global_variable</like>>
|
||||
</enum_constant>
|
||||
|
||||
<undefined>
|
||||
<normal>#78282D</normal>
|
||||
<hover>#78282D</hover>
|
||||
<fill>
|
||||
<normal>#00000000</normal>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>#78282D</normal>
|
||||
</border>
|
||||
</undefined>
|
||||
<namespace>
|
||||
<normal>#78282D</normal>
|
||||
<hover>#78282D</hover>
|
||||
<like>undefined</like>
|
||||
</namespace>
|
||||
|
||||
<file>
|
||||
<normal>#1B564E</normal>
|
||||
<hover>#247368</hover>
|
||||
<fill>
|
||||
<normal>#1B564E</normal>
|
||||
<focus>#247368</focus>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>#20C3C3C3</normal>
|
||||
<focus>#C3C3C3</focus>
|
||||
</border>
|
||||
</file>
|
||||
|
||||
<macro>
|
||||
<normal>#1B564E</normal>
|
||||
<hover>#247368</hover>
|
||||
<like>file</like>
|
||||
</macro>
|
||||
|
||||
<access>
|
||||
<fill>
|
||||
<normal>#272728</normal>
|
||||
</fill>
|
||||
</access>
|
||||
<bundle>
|
||||
<fill>
|
||||
<normal>#272728</normal>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>#80C3C3C3</normal>
|
||||
<focus>#C3C3C3</focus>
|
||||
</border>
|
||||
</bundle>
|
||||
<count_number>
|
||||
<fill>
|
||||
<normal>#272728</normal>
|
||||
</fill>
|
||||
<border>
|
||||
<normal>#C3C3C3</normal>
|
||||
</border>
|
||||
<text>
|
||||
<normal>#F7F7F7</normal>
|
||||
</text>
|
||||
</count_number>
|
||||
</node>
|
||||
<edge>
|
||||
<type_of>
|
||||
<default>
|
||||
<normal>#797979</normal>
|
||||
<hover>#797979</hover>
|
||||
</type_of>
|
||||
<return_type>
|
||||
<normal>#797979</normal>
|
||||
<hover>#797979</hover>
|
||||
</return_type>
|
||||
<parameter_type>
|
||||
<normal>#797979</normal>
|
||||
<hover>#797979</hover>
|
||||
</parameter_type>
|
||||
<type_use>
|
||||
<normal>#797979</normal>
|
||||
<hover>#797979</hover>
|
||||
</type_use>
|
||||
<inheritance>
|
||||
<normal>#797979</normal>
|
||||
<hover>#797979</hover>
|
||||
</inheritance>
|
||||
<typedef>
|
||||
<normal>#797979</normal>
|
||||
<hover>#797979</hover>
|
||||
</typedef>
|
||||
</default>
|
||||
|
||||
<override>
|
||||
<normal>#CC5E89</normal>
|
||||
<hover>#CC5E89</hover>
|
||||
</override>
|
||||
|
||||
<call>
|
||||
<normal>#9C8528</normal>
|
||||
<hover>#9C8528</hover>
|
||||
</call>
|
||||
|
||||
<use>
|
||||
<normal>#2A6484</normal>
|
||||
<hover>#2A6484</hover>
|
||||
</use>
|
||||
|
||||
<template_parameter>
|
||||
<normal>#C1305D</normal>
|
||||
<hover>#C1305D</hover>
|
||||
</template_parameter>
|
||||
<template_argument>
|
||||
<normal>#C1305D</normal>
|
||||
<hover>#C1305D</hover>
|
||||
</template_argument>
|
||||
<template_default_argument>
|
||||
<normal>#C1305D</normal>
|
||||
<hover>#C1305D</hover>
|
||||
</template_default_argument>
|
||||
<template_specialization>
|
||||
<normal>#C1305D</normal>
|
||||
<hover>#C1305D</hover>
|
||||
</template_specialization>
|
||||
<template_member_specialization>
|
||||
<normal>#C1305D</normal>
|
||||
<hover>#C1305D</hover>
|
||||
</template_member_specialization>
|
||||
|
||||
<include>
|
||||
<normal>#247368</normal>
|
||||
<hover>#247368</hover>
|
||||
</include>
|
||||
<macro_use>
|
||||
<normal>#247368</normal>
|
||||
</macro_use>
|
||||
|
||||
<aggregation>
|
||||
<normal>#5D5D5D</normal>
|
||||
<hover>#6D6D6D</hover>
|
||||
<focus>#6D6D6D</focus>
|
||||
</aggregation>
|
||||
<macro_use>
|
||||
<normal>#247368</normal>
|
||||
<hover>#247368</hover>
|
||||
</macro_use>
|
||||
</edge>
|
||||
</graph>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user