diff options
-rw-r--r-- | uisimulator/icons.c | 20 | ||||
-rw-r--r-- | uisimulator/icons.h | 4 |
2 files changed, 22 insertions, 2 deletions
diff --git a/uisimulator/icons.c b/uisimulator/icons.c index 5ea3f6ddf3..6627c7d06e 100644 --- a/uisimulator/icons.c +++ b/uisimulator/icons.c @@ -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 }, }; diff --git a/uisimulator/icons.h b/uisimulator/icons.h index 7603367fd7..08e4a7e1e8 100644 --- a/uisimulator/icons.h +++ b/uisimulator/icons.h @@ -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]; |