summaryrefslogtreecommitdiff
path: root/apps/status.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-03-16 13:44:56 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-03-16 13:44:56 +0000
commit77936e6ec5c2d71f605df855ed24677c307b1bc7 (patch)
treef58c287f2a9f575c764b026116e32787c6c5bc0e /apps/status.h
parentce0878bd40ea07d126181d1827a235f7c3ee1b00 (diff)
downloadrockbox-77936e6ec5c2d71f605df855ed24677c307b1bc7.tar.gz
rockbox-77936e6ec5c2d71f605df855ed24677c307b1bc7.zip
First shot at a nice little button bar at the bottom of the recorder LCD. Enable Button Bar in the Display settings. Only the dir browser uses it at the moment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4391 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/status.h')
-rw-r--r--apps/status.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/status.h b/apps/status.h
index 72a490f499..3c501e019b 100644
--- a/apps/status.h
+++ b/apps/status.h
@@ -35,7 +35,11 @@ void status_set_playmode(enum playmode mode);
35#ifdef HAVE_LCD_BITMAP 35#ifdef HAVE_LCD_BITMAP
36bool statusbar(bool state); 36bool statusbar(bool state);
37void buttonbar_set(char* caption1, char* caption2, char* caption3); 37void buttonbar_set(char* caption1, char* caption2, char* caption3);
38void buttonbar_unset(void);
39bool buttonbar_isset(void);
38void buttonbar_draw(void); 40void buttonbar_draw(void);
41
42#define BUTTONBAR_HEIGHT 8
39#endif 43#endif
40void status_draw(bool force_redraw); 44void status_draw(bool force_redraw);
41 45