diff options
Diffstat (limited to 'uisimulator/icons.c')
-rw-r--r-- | uisimulator/icons.c | 20 |
1 files changed, 19 insertions, 1 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 }, }; |