summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
authorDan Everton <dan@iocaine.org>2006-08-15 09:38:13 +0000
committerDan Everton <dan@iocaine.org>2006-08-15 09:38:13 +0000
commiteb1dd38960214cb5581b9d39ef4fe73e2a050090 (patch)
tree225cdbae19e67685ba898f0559fa25a7177f91bd /apps/settings.h
parent1792170633842d274d623dcdd7265f2e55ff2fc9 (diff)
downloadrockbox-eb1dd38960214cb5581b9d39ef4fe73e2a050090.zip
rockbox-eb1dd38960214cb5581b9d39ef4fe73e2a050090.tar.gz
rockbox-eb1dd38960214cb5581b9d39ef4fe73e2a050090.tar.bz2
rockbox-eb1dd38960214cb5581b9d39ef4fe73e2a050090.tar.xz
Add support for displaying the the current path or the full path (or neither) in the file browser. Check General Settings -> File View -> Show Path for the options.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10578 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 2d2c125..439a438 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -564,6 +564,8 @@ struct user_settings
int eq_hw_band4_cutoff;
int eq_hw_band4_gain;
#endif
+
+ int show_path_in_browser; /* 0=off, 1=current directory, 2=full path */
};
enum optiontype { INT, BOOL };
@@ -660,4 +662,7 @@ enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK };
/* replaygain types */
enum { REPLAYGAIN_TRACK = 0, REPLAYGAIN_ALBUM, REPLAYGAIN_SHUFFLE };
+/* show path types */
+enum { SHOW_PATH_OFF = 0, SHOW_PATH_CURRENT, SHOW_PATH_FULL };
+
#endif /* __SETTINGS_H__ */