Mercurial > sdl-ios-xcode
annotate src/video/default_cursor.h @ 816:428f688f2ad2
Date: Fri, 13 Feb 2004 17:03:16 +0100
From: Max Horn
Subject: Modifier key fix
The internal modifier state can get out of sync with reality. To
trigger this, do for example this:
1) Launch an SDL app
2) Alt-click on the desktop (this will hide the SDL app).
3) Bring the SDL app back to the front
4) SDL will still think alt is pressed (and as such will treat left
clicks like middle clicks). If you press and release alt, it'll be fine
again.
The attached patch cures this by rechecking the modifier state whenever
we process an event.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 13 Feb 2004 17:57:16 +0000 |
parents | b8d311d90021 |
children | c9b51268668f |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
769
b8d311d90021
Updated copyright information for 2004 (Happy New Year!)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
3 Copyright (C) 1997-2004 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 */ |