Skip to content

Commit

Permalink
Add org.freedesktop.DBus.Properties
Browse files Browse the repository at this point in the history
  • Loading branch information
ilpianista committed Apr 30, 2016
1 parent 64c9407 commit 010e37f
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ set(INTERFACE_INTROSPECTION_XML_FILES
dbus/org.freedesktop.systemd1.Target.xml
dbus/org.freedesktop.systemd1.Timer.xml
dbus/org.freedesktop.systemd1.Unit.xml
dbus/org.freedesktop.DBus.Properties.xml
)

set_property(SOURCE ${INTERFACE_INTROSPECTION_XML_FILES}
Expand Down
28 changes: 28 additions & 0 deletions src/dbus/org.freedesktop.DBus.Properties.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0"?>
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<!-- GDBus 2.32.4 -->
<node>
<interface name="org.freedesktop.DBus.Properties">
<method name="Get">
<arg type="s" name="interface_name" direction="in"/>
<arg type="s" name="property_name" direction="in"/>
<arg type="v" name="value" direction="out"/>
</method>
<method name="GetAll">
<arg type="s" name="interface_name" direction="in"/>
<arg type="a{sv}" name="properties" direction="out"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QVariantMap" />
</method>
<method name="Set">
<arg type="s" name="interface_name" direction="in"/>
<arg type="s" name="property_name" direction="in"/>
<arg type="v" name="value" direction="in"/>
</method>
<signal name="PropertiesChanged">
<arg type="s" name="interface_name"/>
<arg type="a{sv}" name="changed_properties"/>
<arg type="as" name="invalidated_properties"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In1" value="QVariantMap" />
</signal>
</interface>
</node>

0 comments on commit 010e37f

Please sign in to comment.