diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-02-08 14:42:30 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-02-08 14:42:30 +0000 |
commit | f9ef87f71c488f6791e32b1cf7205fb65db81ce8 (patch) | |
tree | a3891347530ef81463595a2332ede9fc5161c1b0 /src/sound-service-dbus.h | |
parent | 470e751be8af2da3bbc69a1115d2ce19590cac5a (diff) | |
download | ayatana-indicator-sound-f9ef87f71c488f6791e32b1cf7205fb65db81ce8.tar.gz ayatana-indicator-sound-f9ef87f71c488f6791e32b1cf7205fb65db81ce8.tar.bz2 ayatana-indicator-sound-f9ef87f71c488f6791e32b1cf7205fb65db81ce8.zip |
automatic volume updates in progress
Diffstat (limited to 'src/sound-service-dbus.h')
-rw-r--r-- | src/sound-service-dbus.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sound-service-dbus.h b/src/sound-service-dbus.h index eea6d26..bb4fbe8 100644 --- a/src/sound-service-dbus.h +++ b/src/sound-service-dbus.h @@ -51,12 +51,14 @@ struct _SoundServiceDbusClass { GObjectClass parent_class; /* Signals -> outward messages to the DBUS and beyond*/ void (* sink_input_while_muted) (SoundServiceDbus *self, gint sink_index, gboolean is_muted, gpointer sound_data); + void (* sink_volume_update) (SoundServiceDbus *self, gint sink_volume); }; GType sound_service_dbus_get_type (void) G_GNUC_CONST; // Utility methods to get the messages across into the sound-service-dbus void sound_service_dbus_sink_input_while_muted (SoundServiceDbus* obj, gint sink_index, gboolean value); +void sound_service_dbus_update_sink_volume(SoundServiceDbus* obj, gint sink_volume); void set_pa_sinks_hash(SoundServiceDbus *self, GHashTable *sinks); // DBUS METHODS |