diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-07-08 17:47:28 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-07-08 17:47:28 +0100 |
commit | 0f2a6b2736713951fb4b88848e79849a8f1dc72a (patch) | |
tree | 100e2d6235254bad950ca2262f3b72f815f1f152 /src/transport-menu-item.vala | |
parent | e4f900efd1e48814a70e4351cc3d878312daef37 (diff) | |
download | ayatana-indicator-sound-0f2a6b2736713951fb4b88848e79849a8f1dc72a.tar.gz ayatana-indicator-sound-0f2a6b2736713951fb4b88848e79849a8f1dc72a.tar.bz2 ayatana-indicator-sound-0f2a6b2736713951fb4b88848e79849a8f1dc72a.zip |
constants replaced and enums and title image now fetched from the mono theme
Diffstat (limited to 'src/transport-menu-item.vala')
-rw-r--r-- | src/transport-menu-item.vala | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/transport-menu-item.vala b/src/transport-menu-item.vala index 7e7bedc..e0710a8 100644 --- a/src/transport-menu-item.vala +++ b/src/transport-menu-item.vala @@ -23,6 +23,11 @@ using DbusmenuTransport; public class TransportMenuitem : PlayerItem { + public enum action{ + PREVIOUS, + PLAY_PAUSE, + NEXT + } public TransportMenuitem(PlayerController parent) { @@ -38,12 +43,8 @@ public class TransportMenuitem : PlayerItem { int input = input_value.get_int(); debug("handle_event with value %s", input.to_string()); - if(input > 0){ - this.owner.mpris_adaptor.transport_event(input); - } - else{ - debug("A mouse event I'm not interested in"); - } + // Fire and forgot - the widget would not have sent it over it didn't think it was relevant. + this.owner.mpris_adaptor.transport_event((action)input); } public static HashSet<string> attributes_format() |