diff options
author | Michal Ratajsky <[email protected]> | 2014-11-10 11:28:44 +0100 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2014-11-10 11:28:44 +0100 |
commit | 6c1be9a4ad08f84235d4a1fcd4597bff910f59c4 (patch) | |
tree | 779944fba11c918cbbf960cc23f0479b3baf890c /backends/alsa/alsa-toggle.c | |
parent | 44f3cd7ba3b672e67a91358fb0f6e3370c62301a (diff) | |
download | libmatemixer-6c1be9a4ad08f84235d4a1fcd4597bff910f59c4.tar.bz2 libmatemixer-6c1be9a4ad08f84235d4a1fcd4597bff910f59c4.tar.xz |
Change MateMixerToggle into MateMixerStreamToggle and adapt ALSA
Diffstat (limited to 'backends/alsa/alsa-toggle.c')
-rw-r--r-- | backends/alsa/alsa-toggle.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/backends/alsa/alsa-toggle.c b/backends/alsa/alsa-toggle.c index 3ceedf5..c41e29a 100644 --- a/backends/alsa/alsa-toggle.c +++ b/backends/alsa/alsa-toggle.c @@ -23,6 +23,7 @@ #include <libmatemixer/matemixer-private.h> #include "alsa-element.h" +#include "alsa-stream.h" #include "alsa-switch-option.h" #include "alsa-toggle.h" @@ -38,7 +39,7 @@ static void alsa_element_interface_init (AlsaElementInterface *iface); static void alsa_toggle_class_init (AlsaToggleClass *klass); static void alsa_toggle_init (AlsaToggle *toggle); -G_DEFINE_TYPE_WITH_CODE (AlsaToggle, alsa_toggle, MATE_MIXER_TYPE_TOGGLE, +G_DEFINE_TYPE_WITH_CODE (AlsaToggle, alsa_toggle, MATE_MIXER_TYPE_STREAM_TOGGLE, G_IMPLEMENT_INTERFACE (ALSA_TYPE_ELEMENT, alsa_element_interface_init)) @@ -78,7 +79,8 @@ alsa_toggle_init (AlsaToggle *toggle) } AlsaToggle * -alsa_toggle_new (const gchar *name, +alsa_toggle_new (AlsaStream *stream, + const gchar *name, const gchar *label, MateMixerStreamSwitchRole role, AlsaToggleType type, @@ -92,6 +94,7 @@ alsa_toggle_new (const gchar *name, "label", label, "flags", MATE_MIXER_SWITCH_TOGGLE, "role", role, + "stream", stream, "on-state-option", on, "off-state-option", off, NULL); @@ -212,9 +215,11 @@ alsa_toggle_load (AlsaElement *element) MateMixerSwitchOption *active; if (value > 0) - active = mate_mixer_toggle_get_state_option (MATE_MIXER_TOGGLE (toggle), TRUE); + active = mate_mixer_stream_toggle_get_state_option (MATE_MIXER_STREAM_TOGGLE (toggle), + TRUE); else - active = mate_mixer_toggle_get_state_option (MATE_MIXER_TOGGLE (toggle), FALSE); + active = mate_mixer_stream_toggle_get_state_option (MATE_MIXER_STREAM_TOGGLE (toggle), + FALSE); _mate_mixer_switch_set_active_option (MATE_MIXER_SWITCH (toggle), active); return TRUE; |