2 winnie - an experimental window system
4 Copyright (C) 2013 Eleni Maria Stea
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 Author: Eleni Maria Stea <elene.mst@gmail.com>
22 #ifndef MOUSE_CURSOR_H_
23 #define MOUSE_CURSOR_H_
25 const int mouse_cursor_width = 8;
26 const int mouse_cursor_height = 16;
28 const int mouse_cursor_bw[] = {
29 128, 128, 0, 0, 0, 0, 0, 0,
30 128, 255, 128, 0, 0, 0, 0, 0,
31 128, 255, 255, 128, 0, 0, 0, 0,
32 128, 255, 255, 255, 128, 0, 0, 0,
33 128, 255, 255, 255, 255, 128, 0, 0,
34 128, 255, 255, 255, 255, 255, 128, 0,
35 128, 255, 255, 255, 255, 255, 255, 128,
36 128, 255, 255, 255, 255, 255, 128, 0,
37 128, 255, 255, 255, 255, 128, 0, 0,
38 128, 255, 255, 255, 255, 128, 0, 0,
39 128, 255, 255, 255, 255, 255, 128, 0,
40 128, 255, 255, 255, 255, 255, 128, 0,
41 128, 255, 128, 128, 255, 255, 255, 128,
42 128, 128, 0, 128, 255, 255, 255, 128,
43 128, 0, 0, 0, 128, 255, 255, 128,
44 0, 0, 0, 0, 0, 128, 128, 128
49 #endif // MOUSE_CURSOR_H_