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.tar.gz
rockbox-eb1dd38960214cb5581b9d39ef4fe73e2a050090.zip
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 2d2c125721..439a43809a 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -564,6 +564,8 @@ struct user_settings
564 int eq_hw_band4_cutoff; 564 int eq_hw_band4_cutoff;
565 int eq_hw_band4_gain; 565 int eq_hw_band4_gain;
566#endif 566#endif
567
568 int show_path_in_browser; /* 0=off, 1=current directory, 2=full path */
567}; 569};
568 570
569enum optiontype { INT, BOOL }; 571enum optiontype { INT, BOOL };
@@ -660,4 +662,7 @@ enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK };
660/* replaygain types */ 662/* replaygain types */
661enum { REPLAYGAIN_TRACK = 0, REPLAYGAIN_ALBUM, REPLAYGAIN_SHUFFLE }; 663enum { REPLAYGAIN_TRACK = 0, REPLAYGAIN_ALBUM, REPLAYGAIN_SHUFFLE };
662 664
665/* show path types */
666enum { SHOW_PATH_OFF = 0, SHOW_PATH_CURRENT, SHOW_PATH_FULL };
667
663#endif /* __SETTINGS_H__ */ 668#endif /* __SETTINGS_H__ */