kdelibs/kio/kio/org.kde.KDirNotify.xml
Ivailo Monev cf207aaa67 kio: remove redundant KDirNotify signals
see 693febf429, and since mount points are
local directories (or rather not a KIO thing) KDirWatch will notify
about the changes when the mount point directory no longer contains
entries

bonus points for reducung the D-Bus traffic

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-07-06 18:29:56 +03:00

23 lines
803 B
XML

<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<interface name="org.kde.KDirNotify">
<signal name="FilesAdded">
<arg type="s" name="directory" direction="out"/>
</signal>
<signal name="FilesRemoved">
<arg type="as" name="fileList" direction="out"/>
</signal>
<signal name="FilesChanged">
<arg type="as" name="fileList" direction="out"/>
</signal>
<signal name="FileRenamed">
<arg type="s" name="src" direction="out"/>
<arg type="s" name="dst" direction="out"/>
</signal>
<signal name="FileMoved">
<arg type="s" name="src" direction="out"/>
<arg type="s" name="dst" direction="out"/>
</signal>
</interface>
</node>