kwin/effects/zoom/zoom.kcfg
Vlad Zahorodnii c1ea0412a4 [effects/zoom] Implement focus tracking with QAccessibilityClient
Currently, the focus tracking functionality in the zoom effect does not
work because it relies on kaccessibleapp, which is dead. Luckily for us,
there is a library called libqaccessibilityclient that provides a way
to monitor focus changes.

BUG: 421234
2020-06-01 10:43:59 +03:00

31 lines
1.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" >
<kcfgfile arg="true"/>
<group name="Effect-Zoom">
<entry name="ZoomFactor" type="Double">
<default>1.2</default>
</entry>
<entry name="MousePointer" type="UInt">
<default>0</default>
</entry>
<entry name="MouseTracking" type="UInt">
<default>0</default>
</entry>
<entry name="EnableFocusTracking" type="Bool">
<default>false</default>
</entry>
</entry>
<entry name="FocusDelay" type="UInt">
<default>350</default>
</entry>
<entry name="MoveFactor" type="Double">
<default>20.0</default>
</entry>
<entry name="InitialZoom" type="Double">
<default>1.0</default>
</entry>
</group>
</kcfg>