diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-01-22 23:37:45 -0600 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-01-22 23:37:45 -0600 |
commit | 1ccf02c850145706776fd2c79a30a33a02df50b3 (patch) | |
tree | fb0c092292dc76bba69cf5aeff24b3ca13176e0f /src/sound-service.xml | |
parent | 5f6cebbcfffa32bffada62659e750ab7d362802e (diff) | |
download | ayatana-indicator-sound-1ccf02c850145706776fd2c79a30a33a02df50b3.tar.gz ayatana-indicator-sound-1ccf02c850145706776fd2c79a30a33a02df50b3.tar.bz2 ayatana-indicator-sound-1ccf02c850145706776fd2c79a30a33a02df50b3.zip |
signals and methods cut down to size, next the indicator
Diffstat (limited to 'src/sound-service.xml')
-rw-r--r-- | src/sound-service.xml | 32 |
1 files changed, 2 insertions, 30 deletions
diff --git a/src/sound-service.xml b/src/sound-service.xml index 44ecc2b..07c9c3d 100644 --- a/src/sound-service.xml +++ b/src/sound-service.xml @@ -1,45 +1,17 @@ <!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"> <node name="/com/canonical/indicators/sound"> <interface name="com.canonical.indicators.sound"> - <method name = "GetSinkMute"> - <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="sound_service_dbus_get_sink_mute"/> - <arg type='b' name='mute_input' direction="out"/> - </method> - <method name = "BlacklistMediaPlayer"> <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="sound_service_dbus_blacklist_media_player"/> <arg type='s' name='player_desktop_name' direction="in"/> </method> - - <method name = "GetSinkAvailability"> - <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="sound_service_dbus_get_sink_availability"/> - <arg type='b' name='availability_input' direction="out"/> - </method> - - <method name = "GetSinkState"> + <method name = "GetSoundState"> <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="sound_service_dbus_get_sink_state"/> <arg type='i' name='current_state' direction="out"/> </method> - -<!-- Will need to hook up another signal which monitors for volume change -Our respective UI element should listen to this and therefore will be updated with accurate setting--> -<!-- Triggered when a sink is muted but the input has been sent to that sink --> - <signal name="SinkInputWhileMuted"> - <arg name="block_value" type="b" direction="out"/> - </signal> - - <signal name="SinkStateUpdate"> + <signal name="SoundStateUpdate"> <arg name="new_state" type="i" direction="out"/> </signal> - - <signal name="SinkMuteUpdate"> - <arg name="mute_value" type="b" direction="out"/> - </signal> - - <signal name="SinkAvailableUpdate"> - <arg name="available_value" type="b" direction="out"/> - </signal> - </interface> </node> |