00001
00002
00003
00004
00005
00006
00007
00009
00010
00011
00012
00013
00014 #include <qbitmap.h>
00015
00016 static QBitmap uarrow;
00017 static unsigned char uarrow_bits[] = {
00018 0x00, 0x0c, 0x1e, 0x3f, 0x3f, 0x00};
00019
00020 static QBitmap darrow;
00021 static unsigned char darrow_bits[] = {
00022 0x00, 0x3f, 0x3f, 0x1e, 0x0c, 0x00};
00023
00024 static QBitmap larrow;
00025 static unsigned char larrow_bits[] = {
00026 0x18, 0x1c, 0x1e, 0x1e, 0x1c, 0x18};
00027
00028 static QBitmap rarrow;
00029 static unsigned char rarrow_bits[] = {
00030 0x06, 0x0e, 0x1e, 0x1e, 0x0e, 0x06};
00031
00032
00033
00034 static QBitmap bplus;
00035 static unsigned char bplus_bits[] = {
00036 0x0c, 0x0c, 0x3f, 0x3f, 0x0c, 0x0c};
00037
00038 static QBitmap bminus;
00039 static unsigned char bminus_bits[] = {
00040 0x00, 0x00, 0x3f, 0x3f, 0x00, 0x00};
00041
00042
00043
00044 static QBitmap bcheck;
00045 static unsigned char bcheck_bits[] = {
00046 0x00, 0x00, 0x80, 0x01, 0xc0, 0x01, 0xe0, 0x00, 0x73, 0x00, 0x3f, 0x00,
00047 0x1e, 0x00, 0x0c, 0x00, 0x00, 0x00};
00048
00049
00050
00051 static QBitmap dexpand;
00052 static unsigned char dexpand_bits[] = {
00053 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x38, 0x00,
00054 0x10, 0x00, 0x00, 0x00, 0x00, 0x00};
00055
00056 static QBitmap rexpand;
00057 static unsigned char rexpand_bits[] = {
00058 0x04, 0x00, 0x0c, 0x00, 0x1c, 0x00, 0x3c, 0x00, 0x7c, 0x00, 0x3c, 0x00,
00059 0x1c, 0x00, 0x0c, 0x00, 0x04, 0x00};
00060
00061
00062
00063 static QBitmap doodad_mid;
00064 static unsigned char doodad_mid_bits[] = {
00065 0x07, 0x01, 0x01, 0x00};
00066
00067 static QBitmap doodad_light;
00068 static unsigned char doodad_light_bits[] = {
00069 0x00, 0x08, 0x08, 0x0e};
00070