summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Hak <adiamas@rockbox.org>2002-05-10 08:52:03 +0000
committerRobert Hak <adiamas@rockbox.org>2002-05-10 08:52:03 +0000
commita84f00f6426afb09850e3c1390f7f4f1b9bbe96d (patch)
tree880399741647a2929fb0afd1a6087fad49963a69
parente078eddff98e54e11dc3d59b248073d434d5da8b (diff)
downloadrockbox-a84f00f6426afb09850e3c1390f7f4f1b9bbe96d.tar.gz
rockbox-a84f00f6426afb09850e3c1390f7f4f1b9bbe96d.zip
Added new icons form the Recorder sim
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@538 a1c6a512-1295-4272-9138-f99709370657
-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 @@
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];