slider bar is now available

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1166 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Hak 2002-06-25 07:27:29 +00:00
parent 3be8df908d
commit d5dda2c360
2 changed files with 19 additions and 1 deletions

View file

@ -22,6 +22,18 @@
#ifdef HAVE_LCD_BITMAP #ifdef HAVE_LCD_BITMAP
unsigned char slider_bar[] =
{
0x38, 0x28, 0x28, 0x28, 0x28,
0x7c, 0x28, 0x28, 0x28, 0x28,
0x7c, 0x28, 0x28, 0x28, 0x28,
0x7c, 0x28, 0x28, 0x28, 0x28,
0x7c, 0x28, 0x28, 0x28, 0x28,
0x7c, 0x28, 0x28, 0x28, 0x28,
0x7c, 0x28, 0x28, 0x28, 0x28,
0x7c, 0x28, 0x28, 0x28, 0x28, 0x38
};
unsigned char bitmap_icons_6x8[LastIcon][6] = unsigned char bitmap_icons_6x8[LastIcon][6] =
{ {
/* Box_Filled */ /* Box_Filled */

View file

@ -25,7 +25,7 @@
#ifdef HAVE_LCD_BITMAP #ifdef HAVE_LCD_BITMAP
enum icons_6x8 { enum icons_6x8 {
Box_Filled, Box_Empty, Slider_Horizontal, File, Test, Box_Filled, Box_Empty, Slider_Horizontal, File,
Folder, Directory, Playlist, Repeat, Folder, Directory, Playlist, Repeat,
Selected, Cursor, LastIcon Selected, Cursor, LastIcon
}; };
@ -34,5 +34,11 @@ extern unsigned char bitmap_icons_6x8[LastIcon][6];
extern unsigned char rockbox112x37[]; extern unsigned char rockbox112x37[];
extern unsigned char slider_bar[];
#endif /* End HAVE_LCD_BITMAP */ #endif /* End HAVE_LCD_BITMAP */