diff options
author | Hardeep Sidhu <dyp@pobox.com> | 2004-01-26 17:05:21 +0000 |
---|---|---|
committer | Hardeep Sidhu <dyp@pobox.com> | 2004-01-26 17:05:21 +0000 |
commit | 107ebc5ba950acee1108a5cb52f25be371b2ec8f (patch) | |
tree | 08a833f8f7a1242612cb2ef8cf97299048f46743 /apps/settings.h | |
parent | 1c7a88de787c612598ac47a59b99e00e9a2e3106 (diff) |
Modified playlist handling to allow for multiple playlists to be edited at the same time. Added support in playlist viewer for viewing/editing playlists on disk (accessed via ON+PLAY->Playlist->View on a playlist). Added menu in playlist viewer for changing a few settings and saving playlist. Added File Options menu in playlist viewer ON+PLAY menu.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4276 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r-- | apps/settings.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h index 436b5204d5..3634087cab 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -194,6 +194,11 @@ struct user_settings int recursive_dir_insert; /* should directories be inserted recursively */ bool line_in; /* false=off, true=active */ + + /* playlist viewer settings */ + bool playlist_viewer_icons; /* display icons on viewer */ + bool playlist_viewer_indices; /* display playlist indices on viewer */ + int playlist_viewer_track_display; /* how to display tracks in viewer */ }; enum optiontype { INT, BOOL }; |