summaryrefslogtreecommitdiff
path: root/firmware/export/lcd.h
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2008-01-08 01:22:14 +0000
committerDave Chapman <dave@dchapman.com>2008-01-08 01:22:14 +0000
commit3646c313679c4bd16c9eec98c2e35c7a7bf5c961 (patch)
treeb6508cc00ae60c70c9499090fb87d97f3370c131 /firmware/export/lcd.h
parent08e6c6bc2a90e953372e503367c406c469994da2 (diff)
downloadrockbox-3646c313679c4bd16c9eec98c2e35c7a7bf5c961.tar.gz
rockbox-3646c313679c4bd16c9eec98c2e35c7a7bf5c961.zip
Add the viewport functions to the screens API, including a new getfont() function to return the font used by the current viewport. A change to the screens API makes the plugin API incompatible, so we bump version and sort. Also commit the test_viewports plugin (not built by default). This is some more of FS#8385.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16022 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/lcd.h')
-rw-r--r--firmware/export/lcd.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index 276dcdfedc..57c9b1d3b8 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -372,6 +372,7 @@ extern void lcd_set_flip(bool yesno);
372extern void lcd_set_drawmode(int mode); 372extern void lcd_set_drawmode(int mode);
373extern int lcd_get_drawmode(void); 373extern int lcd_get_drawmode(void);
374extern void lcd_setfont(int font); 374extern void lcd_setfont(int font);
375extern int lcd_getfont(void);
375 376
376extern void lcd_puts_style_offset(int x, int y, const unsigned char *str, 377extern void lcd_puts_style_offset(int x, int y, const unsigned char *str,
377 int style, int offset); 378 int style, int offset);