86 lines
3.4 KiB
C
86 lines
3.4 KiB
C
|
|
#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
|