summaryrefslogtreecommitdiff
path: root/apps/tree.h
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-02-02 20:42:56 +0000
committerDave Chapman <dave@dchapman.com>2006-02-02 20:42:56 +0000
commitd9e5b67b71cf246c11da8a9083af21752ac7bd15 (patch)
tree99ac1903b7b0a7197483fa64add73e6062d169af /apps/tree.h
parent9b4b4d0bf2366ebbbb3cbb14eeb457da9f2658eb (diff)
downloadrockbox-d9e5b67b71cf246c11da8a9083af21752ac7bd15.tar.gz
rockbox-d9e5b67b71cf246c11da8a9083af21752ac7bd15.zip
Patch #1421422 - Backdrop image patch started by Linus, finished by me. Adds ability to set backdrop images for file browser and menus (store full-screen bitmaps in /.rockbox/backdrops/) and also the ability to set a full-screen background image in a WPS using the %X|filename.bmp| WPS tag. Currently only implemented for targets with colour LCDs.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8536 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.h')
-rw-r--r--apps/tree.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/tree.h b/apps/tree.h
index fa0421865d..0967fb373f 100644
--- a/apps/tree.h
+++ b/apps/tree.h
@@ -245,7 +245,8 @@ struct tree_context {
245#define TREE_ATTR_LNG 0x0700 /* binary lang file */ 245#define TREE_ATTR_LNG 0x0700 /* binary lang file */
246#define TREE_ATTR_ROCK 0x0800 /* binary rockbox plugin */ 246#define TREE_ATTR_ROCK 0x0800 /* binary rockbox plugin */
247#define TREE_ATTR_MOD 0x0900 /* firmware file */ 247#define TREE_ATTR_MOD 0x0900 /* firmware file */
248#define TREE_ATTR_RWPS 0x1000 /* remote-wps config file */ 248#define TREE_ATTR_RWPS 0x1000 /* remote-wps config file */
249#define TREE_ATTR_BMP 0x1100 /* backdrop bmp file */
249#define TREE_ATTR_MASK 0xFF00 /* which bits tree.c uses for file types */ 250#define TREE_ATTR_MASK 0xFF00 /* which bits tree.c uses for file types */
250 251
251void tree_get_filetypes(const struct filetype**, int*); 252void tree_get_filetypes(const struct filetype**, int*);