diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2005-01-17 11:37:36 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2005-01-17 11:37:36 +0000 |
| commit | fc53fd708fc12e1a67217c102ea8180b2bde6a6f (patch) | |
| tree | d27775cc09f28414d2d5b4bca0b6f22df910845b /apps/settings.h | |
| parent | 025f5c00845a328eb0b8674bc88fd5f9cb8ee76d (diff) | |
| download | rockbox-fc53fd708fc12e1a67217c102ea8180b2bde6a6f.zip rockbox-fc53fd708fc12e1a67217c102ea8180b2bde6a6f.tar.gz rockbox-fc53fd708fc12e1a67217c102ea8180b2bde6a6f.tar.bz2 rockbox-fc53fd708fc12e1a67217c102ea8180b2bde6a6f.tar.xz | |
Added ID3 database dirfilter
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5574 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
| -rw-r--r-- | apps/settings.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/settings.h b/apps/settings.h index 88bc718..a794065 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -194,7 +194,8 @@ struct user_settings /* misc options */ int repeat_mode; /* 0=off 1=repeat all 2=repeat one */ - int dirfilter; /* 0=display all, 1=only supported, 2=only music */ + int dirfilter; /* 0=display all, 1=only supported, 2=only music, + 3=dirs+playlists, 4=ID3 database */ bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */ int volume_type; /* how volume is displayed: 0=graphic, 1=percent */ int battery_type; /* how battery is displayed: 0=graphic, 1=percent */ @@ -351,8 +352,9 @@ enum { REPEAT_OFF, REPEAT_ALL, REPEAT_ONE, NUM_REPEAT_MODES }; /* Note: Any new filter modes need to be added before NUM_FILTER_MODES. * Any new rockbox browse filter modes (accessible through the menu) * must be added after NUM_FILTER_MODES. */ -enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, NUM_FILTER_MODES, -SHOW_WPS, SHOW_CFG, SHOW_LNG, SHOW_MOD, SHOW_FONT, SHOW_PLUGINS}; +enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, SHOW_ID3DB, + NUM_FILTER_MODES, + SHOW_WPS, SHOW_CFG, SHOW_LNG, SHOW_MOD, SHOW_FONT, SHOW_PLUGINS}; /* recursive dir insert options */ enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK }; |