summaryrefslogtreecommitdiff
path: root/firmware/export/lcd.h
diff options
context:
space:
mode:
authorKjell Ericson <kjell@haxx.se>2003-05-27 12:54:11 +0000
committerKjell Ericson <kjell@haxx.se>2003-05-27 12:54:11 +0000
commit6143eeb22bac4306031bd96307f3428483c09273 (patch)
treec6d568a5902668ded5cc4b2774f09a578fc98600 /firmware/export/lcd.h
parent6f2a1a6127194c92f04b346630cc7e5f2b5436d5 (diff)
downloadrockbox-6143eeb22bac4306031bd96307f3428483c09273.tar.gz
rockbox-6143eeb22bac4306031bd96307f3428483c09273.zip
Added "jump scroll delay" (for player).
Added that you can set how many times the jump scroll shall occur (max 5 times) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3697 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/lcd.h')
-rw-r--r--firmware/export/lcd.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index ff955e170b..0818f9d92e 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -87,7 +87,9 @@ enum
87extern void lcd_define_hw_pattern (int which,char *pattern,int length); 87extern void lcd_define_hw_pattern (int which,char *pattern,int length);
88extern void lcd_define_pattern (int which,char *pattern); 88extern void lcd_define_pattern (int which,char *pattern);
89extern void lcd_double_height (bool on); 89extern void lcd_double_height (bool on);
90extern void lcd_jump_scroll (int mode); /* 0=off, 1=once, 2=always */ 90#define JUMP_SCROLL_ALWAYS 5
91extern void lcd_jump_scroll (int mode); /* 0=off, 1=once, ..., ALWAYS */
92extern void lcd_jump_scroll_delay( int ms );
91unsigned char lcd_get_locked_pattern(void); 93unsigned char lcd_get_locked_pattern(void);
92void lcd_unlock_pattern(unsigned char pat); 94void lcd_unlock_pattern(unsigned char pat);
93void lcd_allow_bidirectional_scrolling(bool on); 95void lcd_allow_bidirectional_scrolling(bool on);