diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-02-14 06:58:30 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-02-14 06:58:30 +0000 |
commit | 5599d6806d12d22b724d7967717edae07db3e08f (patch) | |
tree | accbaab8ecb8b3d7078daeb2df1d76a4b0ab67df /apps/recorder | |
parent | 7df87126f0ff5fea2554928db3d8ab7af06c6737 (diff) |
Icons in the menus. Thanks midkay for them.
Any menus which dont yet show them are not converted to the new system.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12300 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder')
-rw-r--r-- | apps/recorder/icons.c | 14 | ||||
-rw-r--r-- | apps/recorder/icons.h | 16 |
2 files changed, 28 insertions, 2 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c index 4e1496e721..216486effb 100644 --- a/apps/recorder/icons.c +++ b/apps/recorder/icons.c @@ -56,12 +56,24 @@ const unsigned char bitmap_icons_6x8[][6] = { 0x3e, 0x2a, 0x3e, 0x2a, 0x2a, 0x3e }, /* Language file */ { 0x4e, 0x51, 0x51, 0x40, 0x55, 0x55 }, /* Config file */ { 0x0a, 0x0a, 0x5f, 0x4e, 0x24, 0x18 }, /* Plugin file */ - { 0xff, 0x81, 0xaf, 0xaa, 0x8c, 0xf8 }, /* Bookmark file */ + { 0x7f, 0x41, 0x4f, 0x4a, 0x4c, 0x78 }, /* Bookmark file */ { 0x5f, 0x45, 0x5b, 0x40, 0x55, 0x55 }, /* Preset file */ { 0x77, 0x55, 0x55, 0x55, 0x55, 0x77 }, /* Queued Item */ { 0x3e, 0x41, 0x3e, 0x1c, 0x1c, 0x08 }, /* Moving Item */ { 0x7f, 0x7f, 0x1c, 0x3e, 0x77, 0x63 }, /* Keyboard file */ { 0x00, 0x00, 0x00, 0x08, 0x1c, 0x3e }, /* Reverse Cursor / Marker */ + { 0x06, 0x03, 0x5b, 0x5b, 0x0f, 0x06 }, /* question mark */ + { 0x00, 0x18, 0x24, 0x24, 0x18, 0x00 }, /* Menu Settings */ + { 0x00, 0x18, 0x3c, 0x3c, 0x18, 0x00 }, /* function call from the menu */ + { 0x18, 0x18, 0x7e, 0x7e, 0x18, 0x18 }, /* sub menu */ + { 0x01, 0x55, 0x01, 0x55, 0x54, 0x54 }, /* in submenu */ + { 0x1c, 0x3e, 0x7f, 0x7f, 0x3e, 0x1c }, /* Recording menu */ + { 0x1c, 0x1c, 0x22, 0x41, 0x7f, 0x00 }, /* voice menu */ + { 0x06, 0x0f, 0x78, 0x78, 0x0f, 0x06 }, /* general settings menu */ + { 0x1e, 0x22, 0x49, 0x49, 0x22, 0x1e }, /* system menu */ + { 0x7f, 0x7f, 0x3e, 0x1c, 0x08, 0x00 }, /* playback menu */ + { 0x1f, 0x51, 0x71, 0x71, 0x51, 0x1f }, /* display menu */ + { 0x03, 0x05, 0x7f, 0x05, 0x03, 0x00 }, /* radio */ }; const unsigned char bitmap_icons_7x8[][7] = diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h index 5aec0730c6..7b10f0c44a 100644 --- a/apps/recorder/icons.h +++ b/apps/recorder/icons.h @@ -19,6 +19,8 @@ #ifndef _ICONS_H_ #define _ICONS_H_ +#ifndef PLUGIN + #include <lcd.h> #ifdef HAVE_LCD_BITMAP @@ -64,6 +66,18 @@ enum icons_6x8 { Icon_Moving, Icon_Keyboard, Icon_Reverse_Cursor, + Icon_Questionmark, + Icon_Menu_setting, + Icon_Menu_functioncall, + Icon_Submenu, + Icon_Submenu_Entered, + Icon_Recording, + Icon_Voice, + Icon_General_settings_menu, + Icon_System_menu, + Icon_Playback_menu, + Icon_Display_menu, + Icon_Radio_screen, Icon6x8Last, }; @@ -163,5 +177,5 @@ extern void statusbar_led(void); #endif #endif /* End HAVE_LCD_BITMAP */ - +#endif /* PLUGIN */ #endif /* _ICONS_H_ */ |