summaryrefslogtreecommitdiff
path: root/uisimulator/icons.c
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/icons.c')
-rw-r--r--uisimulator/icons.c50
1 files changed, 0 insertions, 50 deletions
diff --git a/uisimulator/icons.c b/uisimulator/icons.c
deleted file mode 100644
index 6627c7d06e..0000000000
--- a/uisimulator/icons.c
+++ /dev/null
@@ -1,50 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 Robert E. Hak
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#include <lcd.h>
20
21#include "icons.h"
22
23#ifdef HAVE_LCD_BITMAP
24
25unsigned char bitmap_icons_6x8[LastIcon][6] =
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 */
34 { 0x60, 0x7f, 0x03, 0x63, 0x7f, 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 },
47};
48
49
50#endif