kwin/effects/translucency/translucency.kcfg
Martin Gräßlin 509daa60a1 Use KConfigXT in Translucency Effect
Port the KCM to use KConfigXT which means that the complete custom code
for loading, saving and setting to defaults can be dropped.

Also in the effect in brings some advantages as we basically get compile
time checks whether the accessed config is named correctly.

The saved values for translucency are now UInts in [0,100] instead of
doubles in [0.0,1.0], so an update script is needed.

REVIEW: 106310
2012-11-09 08:53:22 +01:00

39 lines
1.3 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" >
<kcfgfile name="kwinrc"/>
<group name="Effect-Translucency">
<entry name="Decoration" type="Int">
<default>100</default>
</entry>
<entry name="MoveResize" type="Int">
<default>80</default>
</entry>
<entry name="Dialogs" type="UInt">
<default>100</default>
</entry>
<entry name="Inactive" type="UInt">
<default>100</default>
</entry>
<entry name="ComboboxPopups" type="UInt">
<default>100</default>
</entry>
<entry name="Menus" type="UInt">
<default>100</default>
</entry>
<entry name="IndividualMenuConfig" type="Bool">
<default>false</default>
</entry>
<entry name="DropdownMenus" type="UInt">
<default>100</default>
</entry>
<entry name="PopupMenus" type="UInt">
<default>100</default>
</entry>
<entry name="TornOffMenus" type="UInt">
<default>100</default>
</entry>
</group>
</kcfg>