summaryrefslogtreecommitdiff
path: root/firmware/export/lcd-remote.h
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2008-01-07 20:34:11 +0000
committerDave Chapman <dave@dchapman.com>2008-01-07 20:34:11 +0000
commit945c8a221ade41c462a93f8452320a806e5645b3 (patch)
tree2a17823e286e6252e60c44c7f4753d5c18ef5172 /firmware/export/lcd-remote.h
parent2a8f39820b49f116820356c2ca224f82f2106c21 (diff)
downloadrockbox-945c8a221ade41c462a93f8452320a806e5645b3.tar.gz
rockbox-945c8a221ade41c462a93f8452320a806e5645b3.zip
Add viewport capabilities to all the LCD drivers, and adapt scrolling code. This is the firmware/ part of FS#8385 - the changes to the WPS code still need more work and will be committed at a later date. NOTE: There are no user-visible changes with this commit - just the infrastructure.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16018 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/lcd-remote.h')
-rw-r--r--firmware/export/lcd-remote.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/firmware/export/lcd-remote.h b/firmware/export/lcd-remote.h
index 3be23747ea..34c40e52c1 100644
--- a/firmware/export/lcd-remote.h
+++ b/firmware/export/lcd-remote.h
@@ -24,6 +24,7 @@
24#include "cpu.h" 24#include "cpu.h"
25#include "config.h" 25#include "config.h"
26#include "adc.h" 26#include "adc.h"
27#include "lcd.h"
27 28
28#ifdef HAVE_REMOTE_LCD 29#ifdef HAVE_REMOTE_LCD
29 30
@@ -109,7 +110,9 @@ extern void lcd_remote_init(void);
109extern int lcd_remote_default_contrast(void); 110extern int lcd_remote_default_contrast(void);
110extern void lcd_remote_set_contrast(int val); 111extern void lcd_remote_set_contrast(int val);
111 112
113extern void lcd_remote_set_viewport(struct viewport* vp);
112extern void lcd_remote_clear_display(void); 114extern void lcd_remote_clear_display(void);
115extern void lcd_remote_clear_viewport(void);
113extern void lcd_remote_puts(int x, int y, const unsigned char *str); 116extern void lcd_remote_puts(int x, int y, const unsigned char *str);
114extern void lcd_remote_puts_style(int x, int y, const unsigned char *str, 117extern void lcd_remote_puts_style(int x, int y, const unsigned char *str,
115 int style); 118 int style);
@@ -132,6 +135,8 @@ extern void lcd_remote_puts_scroll_style_offset(int x, int y,
132 135
133extern void lcd_remote_update(void); 136extern void lcd_remote_update(void);
134extern void lcd_remote_update_rect(int x, int y, int width, int height); 137extern void lcd_remote_update_rect(int x, int y, int width, int height);
138extern void lcd_remote_update_viewport(void);
139extern void lcd_remote_update_viewport_rect(int x, int y, int width, int height);
135 140
136extern void lcd_remote_set_invert_display(bool yesno); 141extern void lcd_remote_set_invert_display(bool yesno);
137extern void lcd_remote_set_flip(bool yesno); 142extern void lcd_remote_set_flip(bool yesno);
@@ -141,6 +146,8 @@ extern int lcd_remote_get_drawmode(void);
141extern void lcd_remote_setmargins(int xmargin, int ymargin); 146extern void lcd_remote_setmargins(int xmargin, int ymargin);
142extern int lcd_remote_getxmargin(void); 147extern int lcd_remote_getxmargin(void);
143extern int lcd_remote_getymargin(void); 148extern int lcd_remote_getymargin(void);
149extern int lcd_remote_getwidth(void);
150extern int lcd_remote_getheight(void);
144extern void lcd_remote_setfont(int font); 151extern void lcd_remote_setfont(int font);
145extern int lcd_remote_getstringsize(const unsigned char *str, int *w, int *h); 152extern int lcd_remote_getstringsize(const unsigned char *str, int *w, int *h);
146 153