diff options
| author | Robert Kukla <roolku@rockbox.org> | 2008-03-01 22:55:09 +0000 |
|---|---|---|
| committer | Robert Kukla <roolku@rockbox.org> | 2008-03-01 22:55:09 +0000 |
| commit | d6c8b57b507658ef2e45f73d1f00e9ea88ac8d34 (patch) | |
| tree | 2c3e35f7d1f705c08d963a21ede3b42f1bee5019 /apps/plugins/viewer.c | |
| parent | 9876d91e351f457bac7f5ea3459dc12ef021078a (diff) | |
| download | rockbox-d6c8b57b507658ef2e45f73d1f00e9ea88ac8d34.zip rockbox-d6c8b57b507658ef2e45f73d1f00e9ea88ac8d34.tar.gz rockbox-d6c8b57b507658ef2e45f73d1f00e9ea88ac8d34.tar.bz2 rockbox-d6c8b57b507658ef2e45f73d1f00e9ea88ac8d34.tar.xz | |
M:Robe 100: add button definition/bitmaps to plugins and enable compilation
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16469 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/viewer.c')
| -rw-r--r-- | apps/plugins/viewer.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/plugins/viewer.c b/apps/plugins/viewer.c index da288f1..ea33314 100644 --- a/apps/plugins/viewer.c +++ b/apps/plugins/viewer.c @@ -223,6 +223,17 @@ PLUGIN_HEADER #define VIEWER_MENU BUTTON_MENU #define VIEWER_AUTOSCROLL BUTTON_PLAY +#elif CONFIG_KEYPAD == MROBE100_PAD +#define VIEWER_QUIT BUTTON_POWER +#define VIEWER_PAGE_UP BUTTON_UP +#define VIEWER_PAGE_DOWN BUTTON_DOWN +#define VIEWER_SCREEN_LEFT BUTTON_LEFT +#define VIEWER_SCREEN_RIGHT BUTTON_RIGHT +#define VIEWER_MENU BUTTON_MENU +#define VIEWER_AUTOSCROLL BUTTON_DISPLAY + +#else +#error No keymap defined! #endif /* stuff for the bookmarking */ |