Initial import of Scalos. To decrease size I have
[AROS-Contrib.git] / scalos / Prefs / MainPrefs / Images / filedisplay.c
blobe59d5a395abb17c57e29b3acafb0d2c9c23b0b8f
1 #ifdef USE_FILEDISPLAY_COLORS
2 const ULONG filedisplay_colors[48] =
4 0xffffffff,0xaaaaaaaa,0x99999999,
5 0xa0a0a0a0,0xa0a0a0a0,0xa0a0a0a0,
6 0x44444444,0x44444444,0x44444444,
7 0x66666666,0x66666666,0x66666666,
8 0x77777777,0x77777777,0x77777777,
9 0x44444444,0x88888888,0x88888888,
10 0xbbbbbbbb,0x00000000,0x00000000,
11 0xffffffff,0x11111111,0x11111111,
12 0x88888888,0x88888888,0x88888888,
13 0xbbbbbbbb,0xbbbbbbbb,0xbbbbbbbb,
14 0x00000000,0x00000000,0x00000000,
15 0xcccccccc,0xcccccccc,0xcccccccc,
16 0xeeeeeeee,0xeeeeeeee,0xeeeeeeee,
17 0xffffffff,0xffffffff,0xffffffff,
18 0x00000000,0x55555555,0x77777777,
19 0x88888888,0x88888888,0x88888888,
21 #endif
23 #define FILEDISPLAY_WIDTH 24
24 #define FILEDISPLAY_HEIGHT 16
25 #define FILEDISPLAY_DEPTH 4
26 #define FILEDISPLAY_COMPRESSION 0
27 #define FILEDISPLAY_MASKING 2
29 #ifdef USE_FILEDISPLAY_HEADER
30 const struct BitMapHeader filedisplay_header =
31 { 24,16,0,0,4,2,0,0,0,44,44,320,256 };
32 #endif
34 #ifdef USE_FILEDISPLAY_BODY
35 const UBYTE filedisplay_body[256] = {
36 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
37 0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,
38 0x00,0x00,0x7f,0xfe,0x00,0x00,0xc0,0x03,0x00,0x00,0x3f,0xfc,0x00,0x00,0xff,
39 0xff,0x00,0x00,0x7f,0xfe,0x00,0x00,0x80,0x01,0x00,0x00,0x7f,0xfe,0x00,0x00,
40 0xff,0xf3,0x00,0x00,0x55,0x48,0x00,0x00,0xae,0x85,0x00,0x00,0x51,0x7e,0x00,
41 0x00,0xd1,0x77,0x00,0x00,0x7f,0x20,0x00,0x00,0x80,0x3f,0xff,0x00,0x7f,0xc0,
42 0x00,0x00,0xff,0xdf,0xff,0x00,0x54,0x53,0xfe,0x00,0xba,0x5c,0x01,0x00,0x45,
43 0x83,0x3c,0x00,0xc5,0x9b,0xff,0x00,0x7e,0x37,0xfa,0x00,0x80,0x78,0x11,0x00,
44 0x7f,0x02,0x6c,0x00,0xff,0xff,0xeb,0x00,0x7e,0x87,0x7e,0x00,0xc0,0xf8,0x01,
45 0x00,0x3f,0x03,0xbe,0x00,0xff,0x7f,0x7f,0x00,0x00,0x0f,0xde,0x00,0xff,0xf0,
46 0x15,0x00,0x00,0x02,0x6a,0x00,0xff,0xcf,0xcb,0x00,0x7f,0xbf,0x7e,0x00,0x7f,
47 0xd4,0x01,0x00,0x00,0x2b,0xbe,0x00,0x00,0x6b,0x7f,0x00,0x00,0x3f,0x72,0x00,
48 0x00,0x40,0x9d,0x00,0x3f,0xbe,0x7e,0x00,0x00,0x7f,0x63,0x00,0x00,0x27,0x76,
49 0x00,0x00,0x40,0x1d,0x00,0x00,0x3f,0xbe,0x00,0x00,0x67,0x63,0x00,0x00,0x3f,
50 0x7e,0x00,0x00,0x60,0x83,0x00,0x00,0x1e,0x7c,0x00,0x00,0x7f,0x7f,0x00,0x00,
51 0x00,0x00,0x00,0x00,0x7f,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0x00,
52 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
53 0x00, };
54 #endif