From 7d5e0d73758cbe20596653d730a5c4ba60d7a3eb Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Sun, 16 May 2010 11:13:42 +0000 Subject: FS#11263 - Radio Art support! %C and %Cl tags work in the radio screen and Base Skin when the radio is running. put your station images in .rockbox/fmpresets/.bmp or .jpg. Must be in preset mode and the preset name must match the filename git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26078 a1c6a512-1295-4272-9138-f99709370657 --- apps/appevents.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'apps/appevents.h') diff --git a/apps/appevents.h b/apps/appevents.h index 91c45c59b3..fd578b90a2 100644 --- a/apps/appevents.h +++ b/apps/appevents.h @@ -31,7 +31,8 @@ /** Playback events **/ enum { - PLAYBACK_EVENT_TRACK_BUFFER = (EVENT_CLASS_PLAYBACK|1), + PLAYBACK_EVENT_START_PLAYBACK = (EVENT_CLASS_PLAYBACK|1), + PLAYBACK_EVENT_TRACK_BUFFER, PLAYBACK_EVENT_TRACK_FINISH, PLAYBACK_EVENT_TRACK_CHANGE, PLAYBACK_EVENT_NEXTTRACKID3_AVAILABLE, @@ -53,6 +54,11 @@ enum { GUI_EVENT_THEME_CHANGED, }; +/** Recording events **/ +enum { + RECORDING_EVENT_START = (EVENT_CLASS_RECORDING|1), + RECORDING_EVENT_STOP, +}; #endif -- cgit v1.2.3