forked from len0rd/rockbox
FS#7808 by Tom Ross, Ken Fazzone and me, with help from Antoine Cellerier.
Add two new line selector types: solid colour and gradient. Solid colour only uses the primary colour setting. The secondary colour setting is used for the gradient. Text colour for the selected item is also changeable. These new settings are a bit controversial so they may be removed later. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14868 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5353473b72
commit
f3b015f73b
14 changed files with 327 additions and 33 deletions
|
@ -43,8 +43,12 @@ struct scrollinfo
|
|||
int startx;
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
int width; /* length of line in pixels */
|
||||
bool invert; /* invert the scrolled text */
|
||||
#ifdef HAVE_LCD_COLOR
|
||||
int invert; /* invert the scrolled text */
|
||||
#else
|
||||
bool invert;
|
||||
#endif
|
||||
#endif/* HAVE_LCD_BITMAP */
|
||||
bool backward; /* scroll presently forward or backward? */
|
||||
bool bidir;
|
||||
long start_tick;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue