mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
49 lines
2.1 KiB
XML
49 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
|
|
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd">
|
|
<group name="Settings">
|
|
<entry name="PrettyCostPrecision" key="prettyCostPrecision" type="int">
|
|
<default>1</default>
|
|
<label>Cost Precision</label>
|
|
<tooltip>Defines the number of places after the comma for memory costs shown in the application.</tooltip>
|
|
</entry>
|
|
<entry name="ShortenTemplates" key="shortenTemplates" type="bool">
|
|
<default>0</default>
|
|
<label>Shorten Templates</label>
|
|
<tooltip>Defines whether identifiers of C++ template instantiations should be shortened by removing their template arguments.</tooltip>
|
|
</entry>
|
|
<entry name="LegendPosition" key="legendPosition" type="Enum">
|
|
<default>EnumLegendPosition::Floating</default>
|
|
<label>Legend Position</label>
|
|
<tooltip>Defines the position of the legend relative to the plot.</tooltip>
|
|
<choices label="PositionValue">
|
|
<choice name="North"/>
|
|
<choice name="East"/>
|
|
<choice name="South"/>
|
|
<choice name="West"/>
|
|
<choice name="Floating"/>
|
|
</choices>
|
|
</entry>
|
|
<entry name="LegendAlignment" key="legendAlignment" type="Enum">
|
|
<default>EnumLegendAlignment::Center</default>
|
|
<label>Legend Alignment</label>
|
|
<tooltip>Defines the alignment of the legend.</tooltip>
|
|
<choices label="AlignmentValue">
|
|
<choice name="Left"/>
|
|
<choice name="Center"/>
|
|
<choice name="Right"/>
|
|
<choice name="Top"/>
|
|
<choice name="Bottom"/>
|
|
</choices>
|
|
</entry>
|
|
<entry name="LegendFontSize" key="legendFontSize" type="int">
|
|
<default>12</default>
|
|
<min>6</min>
|
|
<max>14</max>
|
|
<label>Legend Font Size</label>
|
|
<tooltip>Defines the font size used in the legend.</tooltip>
|
|
</entry>
|
|
</group>
|
|
</kcfg>
|