summaryrefslogtreecommitdiff
path: root/cursors.h
diff options
context:
space:
mode:
authorAxel Wagner <mail@merovius.de>2010-07-03 00:24:50 +0200
committerMichael Stapelberg <michael@stapelberg.de>2010-07-09 11:18:39 +0200
commitb4c10df0fc8440804d87e4df2f68a860b0bb08af (patch)
tree186aa91ea2ec05092c9f8b3e81c1723f6683c563 /cursors.h
parent2e5bee59d5444f84126df845bfb8e02cd252576f (diff)
Implement showing the default X- or a hardcoded Windows-Mousecursor.
Diffstat (limited to 'cursors.h')
-rw-r--r--cursors.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/cursors.h b/cursors.h
new file mode 100644
index 0000000..6a0b1f8
--- /dev/null
+++ b/cursors.h
@@ -0,0 +1,23 @@
+#define curs_invisible_width 8
+#define curs_invisible_height 8
+
+static unsigned char curs_invisible_bits[] = {
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
+
+#define curs_windows_width 11
+#define curs_windows_height 19
+
+static unsigned char curs_windows_bits[] = {
+ 0xfe, 0x07, 0xfc, 0x07, 0xfa, 0x07, 0xf6, 0x07, 0xee, 0x07, 0xde, 0x07,
+ 0xbe, 0x07, 0x7e, 0x07, 0xfe, 0x06, 0xfe, 0x05, 0x3e, 0x00, 0xb6, 0x07,
+ 0x6a, 0x07, 0x6c, 0x07, 0xde, 0x06, 0xdf, 0x06, 0xbf, 0x05, 0xbf, 0x05,
+ 0x7f, 0x06 };
+
+#define mask_windows_width 11
+#define mask_windows_height 19
+
+static unsigned char mask_windows_bits[] = {
+ 0x01, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x3f, 0x00,
+ 0x7f, 0x00, 0xff, 0x00, 0xff, 0x01, 0xff, 0x03, 0xff, 0x07, 0x7f, 0x00,
+ 0xf7, 0x00, 0xf3, 0x00, 0xe1, 0x01, 0xe0, 0x01, 0xc0, 0x03, 0xc0, 0x03,
+ 0x80, 0x01 };