summaryrefslogtreecommitdiff
path: root/apps/gui/skin_engine/wps_internals.h
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-02-28 08:36:13 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-02-28 08:36:13 +0000
commit8717c1eaa12ce23501d1c6e6103eaed310204243 (patch)
tree904e2ac64e5bf4388bad7307ff10cd9affd08358 /apps/gui/skin_engine/wps_internals.h
parent8c5eaa35ecd8b5239e2cb4848e29310daa6f4a88 (diff)
downloadrockbox-8717c1eaa12ce23501d1c6e6103eaed310204243.tar.gz
rockbox-8717c1eaa12ce23501d1c6e6103eaed310204243.zip
redo r24943. the font mappings are not needed once the skin is finished parsing so using the skin buffer there is a waste and overcomplicates things.
Also that commit breaks plain %pb so make sure you dont use %pb inside a viewport with a font number > 1 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24957 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/skin_engine/wps_internals.h')
-rw-r--r--apps/gui/skin_engine/wps_internals.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/gui/skin_engine/wps_internals.h b/apps/gui/skin_engine/wps_internals.h
index aa99804fd4..f6c7463804 100644
--- a/apps/gui/skin_engine/wps_internals.h
+++ b/apps/gui/skin_engine/wps_internals.h
@@ -264,12 +264,6 @@ struct skin_albumart {
264}; 264};
265#endif 265#endif
266 266
267struct skin_font {
268 int id; /* the id used in the %V tags */
269 int font_id; /* the id returned by font_load */
270 char *name; /* filename without path and extension */
271};
272
273/* wps_data 267/* wps_data
274 this struct holds all necessary data which describes the 268 this struct holds all necessary data which describes the
275 viewable content of a wps */ 269 viewable content of a wps */
@@ -278,7 +272,6 @@ struct wps_data
278#ifdef HAVE_LCD_BITMAP 272#ifdef HAVE_LCD_BITMAP
279 struct skin_token_list *images; 273 struct skin_token_list *images;
280 struct skin_token_list *progressbars; 274 struct skin_token_list *progressbars;
281 struct skin_token_list *fonts;
282#endif 275#endif
283#if LCD_DEPTH > 1 || defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1 276#if LCD_DEPTH > 1 || defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
284 char *backdrop; 277 char *backdrop;