summaryrefslogtreecommitdiff
path: root/apps/gui/statusbar.h
diff options
context:
space:
mode:
authorKevin Ferrare <kevin@rockbox.org>2005-11-22 21:55:05 +0000
committerKevin Ferrare <kevin@rockbox.org>2005-11-22 21:55:05 +0000
commitf57d0220dd216937a210a18f8ab8394091bb6a08 (patch)
tree79b724000023174b931ce898a42f8a2fbf6d1438 /apps/gui/statusbar.h
parentfd02642ee0238ae2b32b7a5ea7005abf0e72489d (diff)
downloadrockbox-f57d0220dd216937a210a18f8ab8394091bb6a08.tar.gz
rockbox-f57d0220dd216937a210a18f8ab8394091bb6a08.zip
Adapted and commited Markus Kaufhold's remote hold icon on statusbar patch for iriver ; generic logo handler (now it's possible to have a different USB logo on main screen and on remote), made the quickscreen behave as it was before
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8044 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/statusbar.h')
-rw-r--r--apps/gui/statusbar.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/gui/statusbar.h b/apps/gui/statusbar.h
index 816205e2b4..88dfd4c4a2 100644
--- a/apps/gui/statusbar.h
+++ b/apps/gui/statusbar.h
@@ -23,6 +23,7 @@
23#include "config.h" 23#include "config.h"
24#include "status.h" 24#include "status.h"
25#include "screen_access.h" 25#include "screen_access.h"
26#include "button.h"
26 27
27#define STATUSBAR_X_POS 0 28#define STATUSBAR_X_POS 0
28#define STATUSBAR_Y_POS 0 /* MUST be a multiple of 8 */ 29#define STATUSBAR_Y_POS 0 /* MUST be a multiple of 8 */
@@ -40,6 +41,9 @@ struct status_info {
40 bool inserted; 41 bool inserted;
41 bool shuffle; 42 bool shuffle;
42 bool keylock; 43 bool keylock;
44#ifdef HAS_REMOTE_BUTTON_HOLD
45 bool keylockremote;
46#endif
43 bool battery_safe; 47 bool battery_safe;
44 bool redraw_volume; /* true if the volume gauge needs updating */ 48 bool redraw_volume; /* true if the volume gauge needs updating */
45 bool led; /* disk LED simulation in the status bar */ 49 bool led; /* disk LED simulation in the status bar */
@@ -101,6 +105,7 @@ void gui_statusbar_icon_play_state(struct screen * display, int state);
101void gui_statusbar_icon_play_mode(struct screen * display, int mode); 105void gui_statusbar_icon_play_mode(struct screen * display, int mode);
102void gui_statusbar_icon_shuffle(struct screen * display); 106void gui_statusbar_icon_shuffle(struct screen * display);
103void gui_statusbar_icon_lock(struct screen * display); 107void gui_statusbar_icon_lock(struct screen * display);
108void gui_statusbar_icon_lock_remote(struct screen * display);
104void gui_statusbar_led(struct screen * display); 109void gui_statusbar_led(struct screen * display);
105 110
106 111