summaryrefslogtreecommitdiff
path: root/apps/recorder/icons.h
diff options
context:
space:
mode:
authorKevin Ferrare <kevin@rockbox.org>2005-11-22 21:55:05 +0000
committerKevin Ferrare <kevin@rockbox.org>2005-11-22 21:55:05 +0000
commitf57d0220dd216937a210a18f8ab8394091bb6a08 (patch)
tree79b724000023174b931ce898a42f8a2fbf6d1438 /apps/recorder/icons.h
parentfd02642ee0238ae2b32b7a5ea7005abf0e72489d (diff)
downloadrockbox-f57d0220dd216937a210a18f8ab8394091bb6a08.tar.gz
rockbox-f57d0220dd216937a210a18f8ab8394091bb6a08.zip
Adapted and commited Markus Kaufhold's remote hold icon on statusbar patch for iriver ; generic logo handler (now it's possible to have a different USB logo on main screen and on remote), made the quickscreen behave as it was before
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8044 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder/icons.h')
-rw-r--r--apps/recorder/icons.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h
index c996fd92aa..a21b801cb9 100644
--- a/apps/recorder/icons.h
+++ b/apps/recorder/icons.h
@@ -29,7 +29,9 @@
29 29
30/* Symbolic names for icons */ 30/* Symbolic names for icons */
31enum icons_5x8 { 31enum icons_5x8 {
32 Icon_Lock 32 Icon_Lock_Main,
33 Icon_Lock_Remote,
34 Icon5x8Last
33}; 35};
34 36
35enum icons_6x8 { 37enum icons_6x8 {
@@ -46,7 +48,7 @@ enum icons_6x8 {
46 Icon_Bookmark, 48 Icon_Bookmark,
47 Icon_Queued, 49 Icon_Queued,
48 Icon_Moving, 50 Icon_Moving,
49 LastIcon 51 Icon6x8Last
50}; 52};
51 53
52enum icons_7x8 { 54enum icons_7x8 {
@@ -68,12 +70,12 @@ enum icons_7x8 {
68 Icon_DownArrow, 70 Icon_DownArrow,
69 Icon_UpArrow, 71 Icon_UpArrow,
70 Icon_RepeatAB, 72 Icon_RepeatAB,
71 Icon_Last 73 Icon7x8Last
72}; 74};
73 75
74extern const unsigned char bitmap_icons_5x8[1][5]; 76extern const unsigned char bitmap_icons_5x8[Icon5x8Last][5];
75extern const unsigned char bitmap_icons_6x8[LastIcon][6]; 77extern const unsigned char bitmap_icons_6x8[Icon6x8Last][6];
76extern const unsigned char bitmap_icons_7x8[Icon_Last][7]; 78extern const unsigned char bitmap_icons_7x8[Icon7x8Last][7];
77extern const unsigned char bitmap_icon_disk[]; 79extern const unsigned char bitmap_icon_disk[];
78 80
79#if LCD_WIDTH == 112 || LCD_WIDTH == 128 || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_WIDTH == 128) 81#if LCD_WIDTH == 112 || LCD_WIDTH == 128 || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_WIDTH == 128)