forked from len0rd/rockbox
Added new icons form the Recorder sim
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@538 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e078eddff9
commit
a84f00f642
2 changed files with 22 additions and 2 deletions
|
@ -24,8 +24,26 @@
|
|||
|
||||
unsigned char bitmap_icons_6x8[LastIcon][6] =
|
||||
{
|
||||
/* Box_Filled */
|
||||
{ 0x00, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f },
|
||||
/* Box_Empty */
|
||||
{ 0x00, 0x7f, 0x41, 0x41, 0x41, 0x7f },
|
||||
/* Slider_Horizontal */
|
||||
{ 0x00, 0x3e, 0x7f, 0x63, 0x7f, 0x3e },
|
||||
/* File */
|
||||
{ 0x60, 0x7f, 0x03, 0x63, 0x7f, 0x00 },
|
||||
{ 0x3e, 0x26, 0x26, 0x24, 0x3c, 0x00 }
|
||||
/* Folder */
|
||||
{ 0x00, 0x7e, 0x41, 0x41, 0x42, 0x7e },
|
||||
/* Directory */
|
||||
{ 0x3e, 0x26, 0x26, 0x24, 0x3c, 0x00 },
|
||||
/* Playlist */
|
||||
{ 0x55, 0x00, 0x55, 0x55, 0x55, 0x00 },
|
||||
/* Repeat */
|
||||
{ 0x39, 0x43, 0x47, 0x71, 0x61, 0x4e },
|
||||
/* Selected */
|
||||
{ 0x00, 0x1c, 0x3e, 0x3e, 0x3e, 0x1c },
|
||||
/* Selector */
|
||||
{ 0x00, 0x7f, 0x3e, 0x1c, 0x08, 0x00 },
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -25,7 +25,9 @@
|
|||
#ifdef HAVE_LCD_BITMAP
|
||||
|
||||
enum icons_6x8 {
|
||||
FileIcon, DirIcon, LastIcon
|
||||
Box_Filled, Box_Empty, Slider_Horizontal, File,
|
||||
Folder, Directory, Playlist, Repeat,
|
||||
Selected, Selector, LastIcon
|
||||
};
|
||||
|
||||
extern unsigned char bitmap_icons_6x8[LastIcon][6];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue