summaryrefslogtreecommitdiff
path: root/app/wm2/Cursors.h
blob: 321b203e7295b3ae3f42d9041480d2f595f0dff8 (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85

#ifndef _WM2_CURSORS_H_
#define _WM2_CURSORS_H_

#define cursor_width 16
#define cursor_height 16
#define cursor_x_hot 1
#define cursor_y_hot 1
static unsigned char cursor_bits[] = {
   0x00, 0x00, 0x06, 0x00, 0x1e, 0x00, 0x7c, 0x00, 0xfc, 0x01, 0xf8, 0x07,
   0xf8, 0x1f, 0xf0, 0x07, 0xf0, 0x03, 0xe0, 0x07, 0xe0, 0x0e, 0x40, 0x1c,
   0x40, 0x38, 0x00, 0x70, 0x00, 0x20, 0x00, 0x00};

#define cursor_mask_width 16
#define cursor_mask_height 16
static unsigned char cursor_mask_bits[] = {
   0x07, 0x00, 0x1f, 0x00, 0x7f, 0x00, 0xfe, 0x01, 0xfe, 0x07, 0xfc, 0x1f,
   0xfc, 0x3f, 0xf8, 0x1f, 0xf8, 0x07, 0xf0, 0x0f, 0xf0, 0x1f, 0xe0, 0x3e,
   0xe0, 0x7c, 0x40, 0xf8, 0x00, 0x70, 0x00, 0x20};

#define ninja_cross_width 16
#define ninja_cross_height 16
#define ninja_cross_x_hot 7
#define ninja_cross_y_hot 7
static unsigned char ninja_cross_bits[] = {
   0x00, 0x00, 0x00, 0x00, 0x18, 0x10, 0x3c, 0x18, 0x38, 0x0c, 0x70, 0x06,
   0xe0, 0x07, 0xc0, 0x03, 0xc0, 0x01, 0xe0, 0x03, 0x70, 0x06, 0x38, 0x06,
   0x1c, 0x0c, 0x08, 0x18, 0x00, 0x10, 0x00, 0x00};

#define ninja_cross_mask_width 16
#define ninja_cross_mask_height 16
static unsigned char ninja_cross_mask_bits[] = {
   0x00, 0x00, 0x18, 0x10, 0x3c, 0x38, 0x7e, 0x3c, 0x7c, 0x1e, 0xf8, 0x0f,
   0xf0, 0x0f, 0xe0, 0x07, 0xe0, 0x03, 0xf0, 0x07, 0xf8, 0x0f, 0x7c, 0x0f,
   0x3e, 0x1e, 0x1c, 0x3c, 0x08, 0x38, 0x00, 0x10};

#define cursor_right_width 16
#define cursor_right_height 16
#define cursor_right_x_hot 13
#define cursor_right_y_hot 7
static unsigned char cursor_right_bits[] = {
   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x03,
   0x80, 0x0f, 0xfe, 0x3f, 0xfe, 0x3f, 0x80, 0x0f, 0x80, 0x03, 0xc0, 0x00,
   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};

#define cursor_right_mask_width 16
#define cursor_right_mask_height 16
static unsigned char cursor_right_mask_bits[] = {
   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0xe0, 0x03, 0xc0, 0x0f,
   0xfe, 0x3f, 0xff, 0x7f, 0xff, 0x7f, 0xfe, 0x3f, 0xc0, 0x0f, 0xe0, 0x03,
   0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};

#define cursor_down_width 16
#define cursor_down_height 16
#define cursor_down_x_hot 7
#define cursor_down_y_hot 13
static unsigned char cursor_down_bits[] = {
   0x00, 0x00, 0x80, 0x01, 0x80, 0x01, 0x80, 0x01, 0x80, 0x01, 0x80, 0x01,
   0x90, 0x09, 0xf0, 0x0f, 0xe0, 0x07, 0xe0, 0x07, 0xc0, 0x03, 0xc0, 0x03,
   0x80, 0x01, 0x80, 0x01, 0x00, 0x00, 0x00, 0x00};

#define cursor_down_mask_width 16
#define cursor_down_mask_height 16
static unsigned char cursor_down_mask_bits[] = {
   0x80, 0x01, 0xc0, 0x03, 0xc0, 0x03, 0xc0, 0x03, 0xc0, 0x03, 0xd0, 0x0b,
   0xf8, 0x1f, 0xf8, 0x1f, 0xf0, 0x0f, 0xf0, 0x0f, 0xe0, 0x07, 0xe0, 0x07,
   0xc0, 0x03, 0xc0, 0x03, 0x80, 0x01, 0x00, 0x00};

#define cursor_down_right_width 16
#define cursor_down_right_height 16
#define cursor_down_right_x_hot 13
#define cursor_down_right_y_hot 13
static unsigned char cursor_down_right_bits[] = {
   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x70, 0x00,
   0xe0, 0x04, 0xc0, 0x05, 0x80, 0x0f, 0x00, 0x0f, 0xc0, 0x1f, 0x00, 0x1f,
   0x00, 0x3c, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00};

#define cursor_down_right_mask_width 16
#define cursor_down_right_mask_height 16
static unsigned char cursor_down_right_mask_bits[] = {
   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x70, 0x00, 0xf8, 0x04,
   0xf0, 0x0f, 0xe0, 0x0f, 0xc0, 0x1f, 0xc0, 0x1f, 0xe0, 0x3f, 0xc0, 0x3f,
   0x00, 0x7f, 0x00, 0x7c, 0x00, 0x70, 0x00, 0x00};

#endif