Files
Sourcetrail/bin/app/data/ApplicationSettings_template.xml
T
Andreas Stallinger da1a6d69c4 ui: Colors in SearchView
Show the right colors in SearchView for the different NodeTypes or QueryNodeTyps

Note: add colors to your Applcationsettings like in the template

fortune cookie message = recognition will come from unexpected sources
2015-03-04 11:55:25 +01:00

105 lines
2.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- INTEGER: int e.g 123 -->
<!-- DECIMAL: float e.g 123.456 -->
<!-- STRING: string e.g hello -->
<!-- COLOR: int int int int - rgba e.g. 125 125 125 255 -->
<config>
<source>
<HeaderSearchPaths>
<HeaderSearchPath><!-- STRING: header search path for each path a HeaderSearchPaht element--></HeaderSearchPath>
</HeaderSearchPaths>
</source>
<code>
<TabWidth><!-- INTEGER: number of spaces to represent a tab in code files --></TabWidth>
<FontName><!-- STRING: name of the font used for source view --></FontName> <!-- DEPRECATED -->
<FontSize><!-- INTEGER: size of the font in the source view --></FontSize> <!-- DEPRECATED -->
<LinkColor><!-- COLOR: color of clickable elements in the source view --></LinkColor>
<ScopeColor><!-- COLOR: color of clickable scopes in the source view --></ScopeColor>
<ActiveLinkColor><!-- COLOR: color of active elements or scopes in the source view --></ActiveLinkColor>
</code>
<colors>
<!-- QueryNodeType -->
<command>
<normal>#FFE47A</normal>
<hover>#FFCC00</hover>
</command>
<operator>
<normal>#FCA47E</normal>
<hover>#F97A4E</hover>
</operator>
<!-- NodeType -->
<class>
<normal>#ededed</normal>
<hover>#dddddd</hover>
</class>
<struct>
<normal>#ededed</normal>
<hover>#dddddd</hover>
</struct>
<enum>
<normal>#ededed</normal>
<hover>#dddddd</hover>
</enum>
<function>
<normal>#ffe47a</normal>
<hover>#ffcc00</hover>
</function>
<method>
<normal>#ffe47a</normal>
<hover>#ffcc00</hover>
</method>
<field>
<normal>#9ab4ad</normal>
<hover>#62b29d</hover>
</field>
<global>
<normal>#9ab4ad</normal>
<hover>#62b29d</hover>
</global>
<undefined>
<normal>#ededed</normal>
<hover>#dddddd</hover>
</undefined>
<undefined_variable>
<normal>#ededed</normal>
<hover>#dddddd</hover>
</undefined_variable>
<undefined_function>
<normal>#ededed</normal>
<hover>#dddddd</hover>
</undefined_function>
<undefined_type>
<normal>#ededed</normal>
<hover>#dddddd</hover>
</undefined_type>
<none>
<normal>#ededed</normal>
<hover>#dddddd</hover>
</none>
<namespace>
<normal>#ededed</normal>
<hover>#dddddd</hover>
</namespace>
<typedef>
<normal>#ededed</normal>
<hover>#dddddd</hover>
</typedef>
<enum_constant>
<normal>#9ab4ad</normal>
<hover>#62b29d</hover>
</enum_constant>
<template_parameter_type>
<normal>#ededed</normal>
<hover>#dddddd</hover>
</template_parameter_type>
}
</colors>
</config>