summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 1df1e0b418..a9a9f647e3 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -78,6 +78,13 @@ enum
78 TRIG_TYPE_NEW_FILE 78 TRIG_TYPE_NEW_FILE
79}; 79};
80 80
81enum {
82 PLAYLIST_VIEWER_ENTRY_SHOW_FILE_NAME = 0,
83 PLAYLIST_VIEWER_ENTRY_SHOW_FULL_PATH = 1,
84 PLAYLIST_VIEWER_ENTRY_SHOW_ID3_TITLE_AND_ALBUM = 2,
85 PLAYLIST_VIEWER_ENTRY_SHOW_ID3_TITLE = 3
86};
87
81#ifdef HAVE_CROSSFADE 88#ifdef HAVE_CROSSFADE
82enum { 89enum {
83 CROSSFADE_ENABLE_OFF = 0, 90 CROSSFADE_ENABLE_OFF = 0,
@@ -686,6 +693,7 @@ struct user_settings
686 int screen_scroll_step; 693 int screen_scroll_step;
687 int show_path_in_browser; /* 0=off, 1=current directory, 2=full path */ 694 int show_path_in_browser; /* 0=off, 1=current directory, 2=full path */
688 bool offset_out_of_view; 695 bool offset_out_of_view;
696 bool disable_mainmenu_scrolling;
689 unsigned char icon_file[MAX_FILENAME+1]; 697 unsigned char icon_file[MAX_FILENAME+1];
690 unsigned char viewers_icon_file[MAX_FILENAME+1]; 698 unsigned char viewers_icon_file[MAX_FILENAME+1];
691 unsigned char font_file[MAX_FILENAME+1]; /* last font */ 699 unsigned char font_file[MAX_FILENAME+1]; /* last font */
@@ -803,6 +811,7 @@ struct user_settings
803#ifdef HAVE_REMOTE_LCD 811#ifdef HAVE_REMOTE_LCD
804 unsigned char remote_ui_vp_config[64]; /* viewport string for the remote lists */ 812 unsigned char remote_ui_vp_config[64]; /* viewport string for the remote lists */
805#endif 813#endif
814 char player_name[64]; /* Name of the local player */
806 815
807 struct compressor_settings compressor_settings; 816 struct compressor_settings compressor_settings;
808 817