summaryrefslogtreecommitdiff
path: root/apps/appevents.h
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-05-16 11:13:42 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-05-16 11:13:42 +0000
commit7d5e0d73758cbe20596653d730a5c4ba60d7a3eb (patch)
treef9e621da19dcb490f05376ba2dcbdf13e21da1b1 /apps/appevents.h
parentc785722fecb9f653d70d37af3d5e47a7a5442def (diff)
downloadrockbox-7d5e0d73758cbe20596653d730a5c4ba60d7a3eb.tar.gz
rockbox-7d5e0d73758cbe20596653d730a5c4ba60d7a3eb.zip
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/<preset name>.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
Diffstat (limited to 'apps/appevents.h')
-rw-r--r--apps/appevents.h8
1 files changed, 7 insertions, 1 deletions
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 @@
31 31
32/** Playback events **/ 32/** Playback events **/
33enum { 33enum {
34 PLAYBACK_EVENT_TRACK_BUFFER = (EVENT_CLASS_PLAYBACK|1), 34 PLAYBACK_EVENT_START_PLAYBACK = (EVENT_CLASS_PLAYBACK|1),
35 PLAYBACK_EVENT_TRACK_BUFFER,
35 PLAYBACK_EVENT_TRACK_FINISH, 36 PLAYBACK_EVENT_TRACK_FINISH,
36 PLAYBACK_EVENT_TRACK_CHANGE, 37 PLAYBACK_EVENT_TRACK_CHANGE,
37 PLAYBACK_EVENT_NEXTTRACKID3_AVAILABLE, 38 PLAYBACK_EVENT_NEXTTRACKID3_AVAILABLE,
@@ -53,6 +54,11 @@ enum {
53 GUI_EVENT_THEME_CHANGED, 54 GUI_EVENT_THEME_CHANGED,
54}; 55};
55 56
57/** Recording events **/
58enum {
59 RECORDING_EVENT_START = (EVENT_CLASS_RECORDING|1),
60 RECORDING_EVENT_STOP,
61};
56#endif 62#endif
57 63
58 64