summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
authorHardeep Sidhu <dyp@pobox.com>2003-07-02 15:54:44 +0000
committerHardeep Sidhu <dyp@pobox.com>2003-07-02 15:54:44 +0000
commit11e7ad50a07c0ffcb2005e40c3314bb49a9a1d8b (patch)
tree4ff3c606a0e46d353253c3b1cb44f4170cf31e4f /apps/settings.h
parent8dd3a822c7cf48ae23440697e8ba76415c441a55 (diff)
downloadrockbox-11e7ad50a07c0ffcb2005e40c3314bb49a9a1d8b.tar.gz
rockbox-11e7ad50a07c0ffcb2005e40c3314bb49a9a1d8b.zip
Added "Ask" option to recursive dir insert which, if enabled, will ask users whether they want to recursively insert selected dir. Also, renamed "Insert first" and "Queue first" to "Insert next" and "Queue next" respectively.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3799 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 25efd65e9a..e3eff50448 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -166,7 +166,7 @@ struct user_settings
166 int max_files_in_dir; /* Max entries in directory (file browser) */ 166 int max_files_in_dir; /* Max entries in directory (file browser) */
167 int max_files_in_playlist; /* Max entries in playlist */ 167 int max_files_in_playlist; /* Max entries in playlist */
168 bool show_icons; /* 0=hide 1=show */ 168 bool show_icons; /* 0=hide 1=show */
169 bool recursive_dir_insert;/* should directories be inserted recursively */ 169 int recursive_dir_insert; /* should directories be inserted recursively */
170}; 170};
171 171
172enum optiontype { INT, BOOL }; 172enum optiontype { INT, BOOL };
@@ -223,4 +223,7 @@ enum { REPEAT_OFF, REPEAT_ALL, REPEAT_ONE, NUM_REPEAT_MODES };
223/* dir filter options */ 223/* dir filter options */
224enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, NUM_FILTER_MODES }; 224enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, NUM_FILTER_MODES };
225 225
226/* recursive dir insert options */
227enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK };
228
226#endif /* __SETTINGS_H__ */ 229#endif /* __SETTINGS_H__ */