diff options
author | Emanoil Kotsev <deloptes@gmail.com> | 2018-11-12 21:18:37 +0100 |
---|---|---|
committer | Emanoil Kotsev <deloptes@gmail.com> | 2023-01-14 03:44:08 +0000 |
commit | e274309d9293777aaaecebccaa29a339a05bd4f9 (patch) | |
tree | a00349c31b90cdedaa6e351dfe93950b55903dce /src/interfaces/org.bluez.device.xml | |
parent | 63c233987977aa48b701edeb47079a6153359fbe (diff) | |
download | tdebluez-e274309d9293777aaaecebccaa29a339a05bd4f9.tar.gz tdebluez-e274309d9293777aaaecebccaa29a339a05bd4f9.zip |
Based on KDE3 bluez4 version a TDE bluez5 version was created
Signed-off-by: Emanoil Kotsev <deloptes@gmail.com>
Diffstat (limited to 'src/interfaces/org.bluez.device.xml')
-rw-r--r-- | src/interfaces/org.bluez.device.xml | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/src/interfaces/org.bluez.device.xml b/src/interfaces/org.bluez.device.xml new file mode 100644 index 0000000..7715379 --- /dev/null +++ b/src/interfaces/org.bluez.device.xml @@ -0,0 +1,112 @@ +<?xml version="1.0" encoding="UTF-8"?> +<node> +<!-- + <interface name="org.freedesktop.DBus.Introspectable"> + <method name="Introspect"> + <arg name="xml" type="s" direction="out" /> + </method> + </interface> +--> + <interface name="org.bluez.Device1"> + <method name="Disconnect"> + <annotation name="org.freedesktop.DBus.GLib.Async"/> + </method> + <method name="Connect"> + <annotation name="org.freedesktop.DBus.GLib.Async"/> + </method> + <method name="ConnectProfile"> + <annotation name="org.freedesktop.DBus.GLib.Async"/> + <arg name="UUID" type="s" direction="in" /> + </method> + <method name="DisconnectProfile"> + <annotation name="org.freedesktop.DBus.GLib.Async"/> + <arg name="UUID" type="s" direction="in" /> + </method> + <method name="Pair"> + <annotation name="org.freedesktop.DBus.GLib.Async"/> + </method> + <method name="CancelPairing"> + <annotation name="org.freedesktop.DBus.GLib.Async"/> + </method> + <property name="Address" type="s" access="read"></property> + <property name="Name" type="s" access="read"></property> + <property name="Alias" type="s" access="readwrite"></property> + <property name="Class" type="u" access="read"></property> + <property name="Appearance" type="q" access="read"></property> + <property name="Icon" type="s" access="read"></property> + <property name="Paired" type="b" access="read"></property> + <property name="Trusted" type="b" access="readwrite"></property> + <property name="Blocked" type="b" access="readwrite"></property> + <property name="LegacyPairing" type="b" access="read"></property> + <property name="RSSI" type="n" access="read"></property> + <property name="Connected" type="b" access="read"></property> + <property name="UUIDs" type="as" access="read"></property> + <property name="Modalias" type="s" access="read"></property> + <property name="Adapter" type="o" access="read"></property> + <property name="ManufacturerData" type="a{qv}" access="read"></property> + <property name="ServiceData" type="a{sv}" access="read"></property> + <property name="TxPower" type="n" access="read"></property> + <property name="ServicesResolved" type="b" access="read"></property> + </interface> + <interface name="org.freedesktop.DBus.Properties"> + <method name="Get"> + <arg name="interface" type="s" direction="in" /> + <arg name="name" type="s" direction="in" /> + <arg name="value" type="v" direction="out" /> + </method> + <method name="Set"> + <arg name="interface" type="s" direction="in" /> + <arg name="name" type="s" direction="in" /> + <arg name="value" type="v" direction="in" /> + </method> + <method name="GetAll"> + <arg name="interface" type="s" direction="in" /> + <arg name="properties" type="a{sv}" direction="out" /> + </method> + <signal name="PropertiesChanged"> + <arg name="interface" type="s" /> + <arg name="changed_properties" type="a{sv}" /> + <arg name="invalidated_properties" type="as" /> + </signal> + </interface> + <interface name="org.bluez.MediaControl1"> + <method name="Play"> + <annotation name="org.freedesktop.DBus.Deprecated" + value="true" /> + </method> + <method name="Pause"> + <annotation name="org.freedesktop.DBus.Deprecated" + value="true" /> + </method> + <method name="Stop"> + <annotation name="org.freedesktop.DBus.Deprecated" + value="true" /> + </method> + <method name="Next"> + <annotation name="org.freedesktop.DBus.Deprecated" + value="true" /> + </method> + <method name="Previous"> + <annotation name="org.freedesktop.DBus.Deprecated" + value="true" /> + </method> + <method name="VolumeUp"> + <annotation name="org.freedesktop.DBus.Deprecated" + value="true" /> + </method> + <method name="VolumeDown"> + <annotation name="org.freedesktop.DBus.Deprecated" + value="true" /> + </method> + <method name="FastForward"> + <annotation name="org.freedesktop.DBus.Deprecated" + value="true" /> + </method> + <method name="Rewind"> + <annotation name="org.freedesktop.DBus.Deprecated" + value="true" /> + </method> + <property name="Connected" type="b" access="read"></property> + <property name="Player" type="o" access="read"></property> + </interface> +</node>
\ No newline at end of file |