summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 9ba3c182c3..c45e3b3110 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -159,6 +159,9 @@ enum { SHOW_PATH_OFF = 0, SHOW_PATH_CURRENT, SHOW_PATH_FULL };
159/* statusbar visibility/position */ 159/* statusbar visibility/position */
160enum { STATUSBAR_OFF = 0, STATUSBAR_TOP, STATUSBAR_BOTTOM }; 160enum { STATUSBAR_OFF = 0, STATUSBAR_TOP, STATUSBAR_BOTTOM };
161 161
162/* scrollbar visibility/position */
163enum { SCROLLBAR_OFF = 0, SCROLLBAR_LEFT, SCROLLBAR_RIGHT };
164
162/* Alarm settings */ 165/* Alarm settings */
163#ifdef HAVE_RTC_ALARM 166#ifdef HAVE_RTC_ALARM
164enum { ALARM_START_WPS = 0, 167enum { ALARM_START_WPS = 0,
@@ -560,7 +563,11 @@ struct user_settings
560 bool buttonbar; /* 0=hide, 1=show */ 563 bool buttonbar; /* 0=hide, 1=show */
561#endif 564#endif
562 565
563 bool scrollbar; /* 0=hide, 1=show */ 566#ifdef HAVE_LCD_BITMAP
567 int scrollbar; /* SCROLLBAR_* enum values */
568 int scrollbar_width;
569#endif
570
564 /* goto current song when exiting WPS */ 571 /* goto current song when exiting WPS */
565 bool browse_current; /* 1=goto current song, 572 bool browse_current; /* 1=goto current song,
566 0=goto previous location */ 573 0=goto previous location */
@@ -768,8 +775,6 @@ struct user_settings
768#ifdef HAVE_REMOTE_LCD 775#ifdef HAVE_REMOTE_LCD
769 unsigned char remote_ui_vp_config[64]; /* viewport string for the remote lists */ 776 unsigned char remote_ui_vp_config[64]; /* viewport string for the remote lists */
770#endif 777#endif
771 int scrollbar_width;
772 bool scrollbar_position; /* false=left true=right */
773#endif 778#endif
774 779
775#if CONFIG_CODEC == SWCODEC 780#if CONFIG_CODEC == SWCODEC