diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-06-21 20:54:28 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-06-21 20:54:28 +0100 |
commit | 39e811f976a80011703e7b0c04b891a1f1abdd68 (patch) | |
tree | 0e0e96c7ccb54adcf6fca8298554b4f981cd5f07 /src/transport-menu-item.vala | |
parent | 6e001f4e0606bce9d3eb070df97d44a7b10081c5 (diff) | |
download | ayatana-indicator-sound-39e811f976a80011703e7b0c04b891a1f1abdd68.tar.gz ayatana-indicator-sound-39e811f976a80011703e7b0c04b891a1f1abdd68.tar.bz2 ayatana-indicator-sound-39e811f976a80011703e7b0c04b891a1f1abdd68.zip |
finally
Diffstat (limited to 'src/transport-menu-item.vala')
-rw-r--r-- | src/transport-menu-item.vala | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/transport-menu-item.vala b/src/transport-menu-item.vala index bfa81d3..3c49e1c 100644 --- a/src/transport-menu-item.vala +++ b/src/transport-menu-item.vala @@ -20,25 +20,18 @@ with this program. If not, see <http://www.gnu.org/licenses/>. using Dbusmenu; using Gee; +using DbusmenuTransport; public class TransportMenuitem : PlayerItem { - /* Not ideal duplicate definition of const - see common-defs/h */ - const string DBUSMENU_TRANSPORT_MENUITEM_TYPE = "x-canonical-transport-bar"; - const string DBUSMENU_TRANSPORT_MENUITEM_STATE = "x-canonical-transport-state"; public TransportMenuitem() { - this.property_set(MENUITEM_PROP_TYPE, DBUSMENU_TRANSPORT_MENUITEM_TYPE); - this.property_set_bool(DBUSMENU_TRANSPORT_MENUITEM_STATE, false); + this.property_set(MENUITEM_PROP_TYPE, MENUITEM_TYPE); + this.property_set_bool(MENUITEM_STATE, false); debug("transport on the vala side"); } - //public override void update(HashMap<string, string> data) - //{ - // debug("TransportMenuitem::update()"); - //} - 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()); |