summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/settings.h b/apps/settings.h
index e0ee4164bf..93a998ea1c 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -149,6 +149,9 @@ enum { REPLAYGAIN_TRACK = 0, REPLAYGAIN_ALBUM, REPLAYGAIN_SHUFFLE, REPLAYGAIN_OF
149/* show path types */ 149/* show path types */
150enum { SHOW_PATH_OFF = 0, SHOW_PATH_CURRENT, SHOW_PATH_FULL }; 150enum { SHOW_PATH_OFF = 0, SHOW_PATH_CURRENT, SHOW_PATH_FULL };
151 151
152/* statusbar visilibility */
153enum { STATUSBAR_OFF = 0, STATUSBAR_TOP, STATUSBAR_BOTTOM };
154
152/* Alarm settings */ 155/* Alarm settings */
153#ifdef HAVE_RTC_ALARM 156#ifdef HAVE_RTC_ALARM
154enum { ALARM_START_WPS = 0, 157enum { ALARM_START_WPS = 0,
@@ -535,7 +538,10 @@ struct user_settings
535 int volume_type; /* how volume is displayed: 0=graphic, 1=percent */ 538 int volume_type; /* how volume is displayed: 0=graphic, 1=percent */
536 int battery_display; /* how battery is displayed: 0=graphic, 1=percent */ 539 int battery_display; /* how battery is displayed: 0=graphic, 1=percent */
537 bool show_icons; /* 0=hide 1=show */ 540 bool show_icons; /* 0=hide 1=show */
538 bool statusbar; /* 0=hide, 1=show */ 541 int statusbar; /* STATUSBAR_* enum values */
542#ifdef HAVE_REMOTE_LCD
543 int remote_statusbar;
544#endif
539 545
540#if CONFIG_KEYPAD == RECORDER_PAD 546#if CONFIG_KEYPAD == RECORDER_PAD
541 bool buttonbar; /* 0=hide, 1=show */ 547 bool buttonbar; /* 0=hide, 1=show */