Configmanager now works with list. Use getValues for list. Configmanager is able to save into a file now.
26 lines
991 B
XML
26 lines
991 B
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>
|
|
</config>
|