summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uisimulator/icons.c20
-rw-r--r--uisimulator/icons.h4
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 @@
24 24
25unsigned char bitmap_icons_6x8[LastIcon][6] = 25unsigned char bitmap_icons_6x8[LastIcon][6] =
26{ 26{
27 /* Box_Filled */
28 { 0x00, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f },
29 /* Box_Empty */
30 { 0x00, 0x7f, 0x41, 0x41, 0x41, 0x7f },
31 /* Slider_Horizontal */
32 { 0x00, 0x3e, 0x7f, 0x63, 0x7f, 0x3e },
33 /* File */
27 { 0x60, 0x7f, 0x03, 0x63, 0x7f, 0x00 }, 34 { 0x60, 0x7f, 0x03, 0x63, 0x7f, 0x00 },
28 { 0x3e, 0x26, 0x26, 0x24, 0x3c, 0x00 } 35 /* Folder */
36 { 0x00, 0x7e, 0x41, 0x41, 0x42, 0x7e },
37 /* Directory */
38 { 0x3e, 0x26, 0x26, 0x24, 0x3c, 0x00 },
39 /* Playlist */
40 { 0x55, 0x00, 0x55, 0x55, 0x55, 0x00 },
41 /* Repeat */
42 { 0x39, 0x43, 0x47, 0x71, 0x61, 0x4e },
43 /* Selected */
44 { 0x00, 0x1c, 0x3e, 0x3e, 0x3e, 0x1c },
45 /* Selector */
46 { 0x00, 0x7f, 0x3e, 0x1c, 0x08, 0x00 },
29}; 47};
30 48
31 49
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 @@
25#ifdef HAVE_LCD_BITMAP 25#ifdef HAVE_LCD_BITMAP
26 26
27enum icons_6x8 { 27enum icons_6x8 {
28 FileIcon, DirIcon, LastIcon 28 Box_Filled, Box_Empty, Slider_Horizontal, File,
29 Folder, Directory, Playlist, Repeat,
30 Selected, Selector, LastIcon
29}; 31};
30 32
31extern unsigned char bitmap_icons_6x8[LastIcon][6]; 33extern unsigned char bitmap_icons_6x8[LastIcon][6];