d81df32a4f
Adding a KConfigXT xml file and an ui file to configure the QML variant of Plastik. Currently supported options: * title alignment * title shadow * animation of buttons Missing option: * colored borders
28 lines
866 B
XML
28 lines
866 B
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" >
|
|
<kcfgfile name=""/>
|
|
|
|
<group name="">
|
|
<entry name="titleAlignLeft" type="Bool">
|
|
<default>true</default>
|
|
</entry>
|
|
<entry name="titleAlignCenter" type="Bool">
|
|
<default>false</default>
|
|
</entry>
|
|
<entry name="titleAlignRight" type="Bool">
|
|
<default>false</default>
|
|
</entry>
|
|
<entry name="coloredBorder" type="Bool">
|
|
<default>true</default>
|
|
</entry>
|
|
<entry name="titleShadow" type="Bool">
|
|
<default>true</default>
|
|
</entry>
|
|
<entry name="animateButtons" type="Bool">
|
|
<default>true</default>
|
|
</entry>
|
|
</group>
|
|
</kcfg>
|