diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-07-07 13:22:18 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-07-07 13:22:18 +0100 |
commit | 410965575fa1039cbcc6c6ef7f7ef316438118ed (patch) | |
tree | 1e83bc8e9647281b878fa496193acdc5e7c22cd2 /src/transport-menu-item.vala | |
parent | 7555ea6755750dd64a6c4652b852a0bdc0d0bfeb (diff) | |
download | ayatana-indicator-sound-410965575fa1039cbcc6c6ef7f7ef316438118ed.tar.gz ayatana-indicator-sound-410965575fa1039cbcc6c6ef7f7ef316438118ed.tar.bz2 ayatana-indicator-sound-410965575fa1039cbcc6c6ef7f7ef316438118ed.zip |
alot of work around the title menu stuff
Diffstat (limited to 'src/transport-menu-item.vala')
-rw-r--r-- | src/transport-menu-item.vala | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/src/transport-menu-item.vala b/src/transport-menu-item.vala index af71df4..7a1bb4a 100644 --- a/src/transport-menu-item.vala +++ b/src/transport-menu-item.vala @@ -24,9 +24,9 @@ using DbusmenuTransport; public class TransportMenuitem : PlayerItem { - public TransportMenuitem() + public TransportMenuitem(PlayerController parent) { - Object(item_type: MENUITEM_TYPE); + Object(item_type: MENUITEM_TYPE, owner: parent); } public void change_play_state(int state) @@ -37,13 +37,8 @@ public class TransportMenuitem : PlayerItem public override void handle_event(string name, GLib.Value input_value, uint timestamp) { debug("handle_event with bool value %s", input_value.get_boolean().to_string()); - this.mpris_adaptor.toggle_playback(input_value.get_boolean()); - } - - public override void check_layout(){ - // nothing to be done for this item - always active - } - + this.owner.mpris_adaptor.toggle_playback(input_value.get_boolean()); + } public static HashSet<string> attributes_format() { |