summaryrefslogtreecommitdiff
path: root/apps/gui/statusbar.h
diff options
context:
space:
mode:
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