1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
/* Copyright (C) 1994 - 1996
Olav Woelfelschneider (wosch@rbg.informatik.th-darmstadt.de)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; see the file COPYING.LIB. If
not, write to the Free Software Foundation, Inc., 675 Mass Ave,
Cambridge, MA 02139, USA.
*/
#define dig_width 5
#define dig_height 8
static unsigned char dig0_bits[] = { 0x0e,0x11,0x11,0x11,0x11,0x11,0x11,0x0e };
static unsigned char dig1_bits[] = { 0x04,0x06,0x04,0x04,0x04,0x04,0x04,0x04 };
static unsigned char dig2_bits[] = { 0x0e,0x11,0x10,0x10,0x0c,0x02,0x01,0x1f };
static unsigned char dig3_bits[] = { 0x0e,0x11,0x10,0x0c,0x10,0x10,0x11,0x0e };
static unsigned char dig4_bits[] = { 0x08,0x0c,0x0a,0x0a,0x09,0x1f,0x08,0x08 };
static unsigned char dig5_bits[] = { 0x1f,0x01,0x01,0x0f,0x10,0x10,0x11,0x0e };
static unsigned char dig6_bits[] = { 0x0e,0x11,0x01,0x0d,0x13,0x11,0x11,0x0e };
static unsigned char dig7_bits[] = { 0x1f,0x10,0x08,0x08,0x04,0x04,0x02,0x02 };
static unsigned char dig8_bits[] = { 0x0e,0x11,0x11,0x0e,0x11,0x11,0x11,0x0e };
static unsigned char dig9_bits[] = { 0x0e,0x11,0x11,0x19,0x16,0x10,0x11,0x0e };
#define icn_width 8
#define icn_height 8
static unsigned char icn0_bits[] = { 0x08,0x04,0x02,0xff,0x02,0x04,0x08,0x00 };
static unsigned char icn1_bits[] = { 0x10,0x20,0x40,0xfe,0x40,0x20,0x10,0x00 };
static unsigned char icn2_bits[] = { 0x20,0x30,0x38,0x3c,0x38,0x30,0x20,0x00 };
static unsigned char icn3_bits[] = { 0x04,0x0c,0x1c,0x3c,0x1c,0x0c,0x04,0x00 };
|