aboutsummaryrefslogtreecommitdiff
path: root/vapi
diff options
context:
space:
mode:
authorKen VanDine <ken.vandine@canonical.com>2011-03-11 07:47:26 -0500
committerBazaar Package Importer <james.westby@ubuntu.com>2011-03-11 07:47:26 -0500
commit36e86360c08f32ec163485232bc9e3ebd3840f71 (patch)
treef9af13fa8968942e5d7bbfbe54b3ff048dbf5e64 /vapi
parent245e905e7731a6423be90bbc98861a52c15b4a43 (diff)
parentd1a4d4e51d74192975dd2aa1dda35581b1d23d73 (diff)
downloadayatana-indicator-sound-36e86360c08f32ec163485232bc9e3ebd3840f71.tar.gz
ayatana-indicator-sound-36e86360c08f32ec163485232bc9e3ebd3840f71.tar.bz2
ayatana-indicator-sound-36e86360c08f32ec163485232bc9e3ebd3840f71.zip
* New upstream release.
- Broken images on playlist items (LP: #727325) - wrong icon for audio-input slider (LP: #723254) - blacklist dbus api lacks query functionality (LP: #730526) - volume goes to zero when using some players like banshee, rhythmbox (LP: #730925) - holding the FW or RW button should have an effect (LP: #694258) - With new notify-osd the volume notification on scroll doesn't work as expected (LP: #729849) * debian/control - Bumped build depends for dbusmenu to >= 0.3.101
Diffstat (limited to 'vapi')
-rw-r--r--vapi/common-defs.vapi26
1 files changed, 17 insertions, 9 deletions
diff --git a/vapi/common-defs.vapi b/vapi/common-defs.vapi
index 7b38e9c..7cac0de 100644
--- a/vapi/common-defs.vapi
+++ b/vapi/common-defs.vapi
@@ -41,14 +41,6 @@ namespace DbusmenuTitle{
}
[CCode (cheader_filename = "common-defs.h")]
-namespace DbusmenuScrub{
- public const string MENUITEM_TYPE;
- public const string MENUITEM_POSITION;
- public const string MENUITEM_DURATION;
- public const string MENUITEM_PLAY_STATE;
-}
-
-[CCode (cheader_filename = "common-defs.h")]
namespace DbusmenuPlaylists{
public const string MENUITEM_TYPE;
public const string MENUITEM_TITLE;
@@ -57,4 +49,20 @@ namespace DbusmenuPlaylists{
[CCode (cheader_filename = "common-defs.h")]
namespace DbusmenuPlaylist{
public const string MENUITEM_PATH;
-} \ No newline at end of file
+}
+
+
+[CCode (cprefix ="Transport", cheader_filename = "common-defs.h")]
+namespace Transport{
+ public enum Action{
+ PREVIOUS,
+ PLAY_PAUSE,
+ NEXT,
+ REWIND,
+ FORWIND
+ }
+ public enum State{
+ PLAYING,
+ PAUSED
+ }
+}