mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
26 lines
861 B
XML
26 lines
861 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.KNotes">
|
|
<method name="newNote">
|
|
<arg name="name" type="s" direction="in"/>
|
|
<arg name="text" type="s" direction="in"/>
|
|
</method>
|
|
<method name="name">
|
|
<arg name="noteId" type="x" direction="in"/>
|
|
<arg type="s" direction="out"/>
|
|
</method>
|
|
<method name="text">
|
|
<arg name="noteId" type="x" direction="in"/>
|
|
<arg type="s" direction="out"/>
|
|
</method>
|
|
<method name="showNote">
|
|
<arg name="noteId" type="x" direction="in"/>
|
|
</method>
|
|
<method name="hideNote">
|
|
<arg name="noteId" type="x" direction="in"/>
|
|
</method>
|
|
<method name="showAllNotes"/>
|
|
<method name="hideAllNotes"/>
|
|
</interface>
|
|
</node>
|