]> git.sur5r.net Git - i3/i3lock/blob - cursors.h
Port the pointer-code to xcb
[i3/i3lock] / cursors.h
1 #define CURS_NONE    0
2 #define CURS_WIN     1
3 #define CURS_DEFAULT 2
4
5 #define curs_invisible_width 8
6 #define curs_invisible_height 8
7
8 static unsigned char curs_invisible_bits[] = {
9  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
10
11 #define curs_windows_width 11
12 #define curs_windows_height 19
13
14 static unsigned char curs_windows_bits[] = {
15  0xfe, 0x07, 0xfc, 0x07, 0xfa, 0x07, 0xf6, 0x07, 0xee, 0x07, 0xde, 0x07,
16  0xbe, 0x07, 0x7e, 0x07, 0xfe, 0x06, 0xfe, 0x05, 0x3e, 0x00, 0xb6, 0x07,
17  0x6a, 0x07, 0x6c, 0x07, 0xde, 0x06, 0xdf, 0x06, 0xbf, 0x05, 0xbf, 0x05,
18  0x7f, 0x06 };
19
20 #define mask_windows_width 11
21 #define mask_windows_height 19
22
23 static unsigned char mask_windows_bits[] = {
24  0x01, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x3f, 0x00,
25  0x7f, 0x00, 0xff, 0x00, 0xff, 0x01, 0xff, 0x03, 0xff, 0x07, 0x7f, 0x00,
26  0xf7, 0x00, 0xf3, 0x00, 0xe1, 0x01, 0xe0, 0x01, 0xc0, 0x03, 0xc0, 0x03,
27  0x80, 0x01 };