Mercurial > sdl-ios-xcode
annotate src/video/default_cursor.h @ 320:66f815c147ed
Date: Thu, 28 Mar 2002 09:20:03 +0200
From: "Mike Gorchak" <mike@malva.ua>
Subject: New QNX patch.
Hi !
1. Removed warning (possible bug) with invalid type, passing to the function
in ph_WarpedMotion.
2. Rewritten handler of Ph_WM_RESIZE message, now works, but buggy (old
handler doesn't work at all).
3. Added stub handler for Ph_WM_MAX (maximize) message.
4. Added more #ifdef HAVE_OPENGL to disable OpenGL stuff when it not needed.
5. Added support for SDL_NOFRAME and SDL_RESIZABLE flags (in OpenGL windows
too).
6. Added cosmetic changes, if no SDL_RESIZABLE flag defined, disable resize
handlers in window border and maximize button at caption.
7. Fixed my bug with invalid arguments count passed to PtCreateWidget call.
8. Fixed some palette problems.
9. Updated README.QNX file.
And I changed testgl.c test application:
10. Added in testgl.c application support for SDL_NOFRAME flag and
option -noframe.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 28 Mar 2002 16:20:10 +0000 |
parents | f6ffac90895c |
children | b8d311d90021 |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
297
f6ffac90895c
Updated copyright information for 2002
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
3 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga |
0 | 4 |
5 This library is free software; you can redistribute it and/or | |
6 modify it under the terms of the GNU Library General Public | |
7 License as published by the Free Software Foundation; either | |
8 version 2 of the License, or (at your option) any later version. | |
9 | |
10 This library is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 Library General Public License for more details. | |
14 | |
15 You should have received a copy of the GNU Library General Public | |
16 License along with this library; if not, write to the Free | |
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 | |
19 Sam Lantinga | |
252
e8157fcb3114
Updated the source with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents:
21
diff
changeset
|
20 slouken@libsdl.org |
0 | 21 */ |
22 | |
23 #ifdef SAVE_RCSID | |
24 static char rcsid = | |
25 "@(#) $Id$"; | |
26 #endif | |
27 | |
28 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * | |
29 * Default cursor - it happens to be the Mac cursor, but could be anything */ | |
30 | |
31 #define DEFAULT_CWIDTH 16 | |
32 #define DEFAULT_CHEIGHT 16 | |
33 #define DEFAULT_CHOTX 0 | |
34 #define DEFAULT_CHOTY 0 | |
35 | |
36 /* Added a real MacOS cursor, at the request of Luc-Olivier de Charrière */ | |
37 #define USE_MACOS_CURSOR | |
38 | |
39 #ifdef USE_MACOS_CURSOR | |
40 | |
41 static unsigned char default_cdata[] = | |
42 { | |
43 0x00,0x00, | |
44 0x40,0x00, | |
45 0x60,0x00, | |
46 0x70,0x00, | |
47 0x78,0x00, | |
48 0x7C,0x00, | |
49 0x7E,0x00, | |
50 0x7F,0x00, | |
51 0x7F,0x80, | |
52 0x7C,0x00, | |
53 0x6C,0x00, | |
54 0x46,0x00, | |
55 0x06,0x00, | |
56 0x03,0x00, | |
57 0x03,0x00, | |
58 0x00,0x00 | |
59 }; | |
60 static unsigned char default_cmask[] = | |
61 { | |
62 0xC0,0x00, | |
63 0xE0,0x00, | |
64 0xF0,0x00, | |
65 0xF8,0x00, | |
66 0xFC,0x00, | |
67 0xFE,0x00, | |
68 0xFF,0x00, | |
69 0xFF,0x80, | |
70 0xFF,0xC0, | |
71 0xFF,0xE0, | |
72 0xFE,0x00, | |
73 0xEF,0x00, | |
74 0xCF,0x00, | |
75 0x87,0x80, | |
76 0x07,0x80, | |
77 0x03,0x00 | |
78 }; | |
79 | |
80 #else | |
81 | |
82 static unsigned char default_cdata[] = | |
83 { | |
84 0x00,0x00, | |
85 0x40,0x00, | |
86 0x60,0x00, | |
87 0x70,0x00, | |
88 0x78,0x00, | |
89 0x7C,0x00, | |
90 0x7E,0x00, | |
91 0x7F,0x00, | |
92 0x7F,0x80, | |
93 0x7C,0x00, | |
94 0x6C,0x00, | |
95 0x46,0x00, | |
96 0x06,0x00, | |
97 0x03,0x00, | |
98 0x03,0x00, | |
99 0x00,0x00 | |
100 }; | |
101 static unsigned char default_cmask[] = | |
102 { | |
103 0x40,0x00, | |
104 0xE0,0x00, | |
105 0xF0,0x00, | |
106 0xF8,0x00, | |
107 0xFC,0x00, | |
108 0xFE,0x00, | |
109 0xFF,0x00, | |
110 0xFF,0x80, | |
111 0xFF,0xC0, | |
112 0xFF,0x80, | |
113 0xFE,0x00, | |
114 0xEF,0x00, | |
115 0x4F,0x00, | |
116 0x07,0x80, | |
117 0x07,0x80, | |
118 0x03,0x00 | |
119 }; | |
120 | |
121 #endif /* TRUE_MACINTOSH_CURSOR */ |