summaryrefslogtreecommitdiff
path: root/apps/appevents.h
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2008-10-16 10:38:03 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2008-10-16 10:38:03 +0000
commit71898e5c547e1f92bb128aede558938873f56d3c (patch)
treea29ddd099bdefdd00db381b064f720801f275d56 /apps/appevents.h
parent9e0ebcc4e696ce058a35441c85afaf608d1dd25c (diff)
downloadrockbox-71898e5c547e1f92bb128aede558938873f56d3c.tar.gz
rockbox-71898e5c547e1f92bb128aede558938873f56d3c.zip
Accept FS#9480 - centralise and organise the events in the apps/ layer.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18819 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/appevents.h')
-rw-r--r--apps/appevents.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/apps/appevents.h b/apps/appevents.h
new file mode 100644
index 0000000000..36990f9768
--- /dev/null
+++ b/apps/appevents.h
@@ -0,0 +1,56 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id: events.h 17847 2008-06-28 18:10:04Z bagder $
9 *
10 * Copyright (C) 2008 by Jonathan Gordon
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#ifndef _APPEVENTS_H
23#define _APPEVENTS_H
24
25#include <stdbool.h>
26#include "events.h"
27
28/** Only app/ level events should be defined here.
29 * firmware/ level events and CLASS's are defined in firmware/export/events.h
30 */
31
32/** Playback events **/
33enum {
34 PLAYBACK_EVENT_TRACK_BUFFER = (EVENT_CLASS_PLAYBACK|1),
35 PLAYBACK_EVENT_TRACK_FINISH,
36 PLAYBACK_EVENT_TRACK_CHANGE,
37};
38
39/** Buffering events **/
40enum {
41 BUFFER_EVENT_BUFFER_LOW = (EVENT_CLASS_BUFFERING|1),
42 BUFFER_EVENT_REBUFFER,
43 BUFFER_EVENT_CLOSED,
44 BUFFER_EVENT_MOVED,
45 BUFFER_EVENT_FINISHED,
46};
47
48/** Generic GUI class events **/
49enum {
50 GUI_EVENT_THEME_CHANGED = (EVENT_CLASS_GUI|1),
51 GUI_EVENT_STATUSBAR_TOGGLE,
52};
53
54#endif
55
56