Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
788 lines (700 loc) · 23.9 KB

SDL_win32events.c

File metadata and controls

788 lines (700 loc) · 23.9 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Jan 24, 2010
Jan 24, 2010
3
Copyright (C) 1997-2010 Sam Lantinga
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Sam Lantinga
slouken@libsdl.org
*/
Aug 25, 2008
Aug 25, 2008
22
Jun 10, 2010
Jun 10, 2010
23
#if (_WIN32_WINNT < 0x601)
Aug 25, 2008
Aug 25, 2008
24
#undef _WIN32_WINNT
Jun 10, 2010
Jun 10, 2010
25
#define _WIN32_WINNT 0x601
Aug 25, 2008
Aug 25, 2008
26
27
#endif
28
29
30
31
32
33
34
#include "SDL_config.h"
#include "SDL_win32video.h"
#include "SDL_syswm.h"
#include "SDL_vkeys.h"
#include "../../events/SDL_events_c.h"
Jun 10, 2010
Jun 10, 2010
35
36
37
#define WMMSG_DEBUG
38
#ifdef WMMSG_DEBUG
Jun 10, 2010
Jun 10, 2010
39
#include <stdio.h>
40
41
#include "wmmsg.h"
#endif
Jun 10, 2010
Jun 10, 2010
42
//#include <stdio.h>
43
44
/* Masks for processing the windows KEYDOWN and KEYUP messages */
Feb 11, 2008
Feb 11, 2008
45
46
#define REPEATED_KEYMASK (1<<30)
#define EXTENDED_KEYMASK (1<<24)
Mar 7, 2008
Mar 7, 2008
48
#define VK_ENTER 10 /* Keypad Enter ... no VKEY defined? */
Feb 10, 2008
Feb 10, 2008
49
Jun 16, 2007
Jun 16, 2007
50
51
52
53
54
55
56
57
58
59
/* Make sure XBUTTON stuff is defined that isn't in older Platform SDKs... */
#ifndef WM_XBUTTONDOWN
#define WM_XBUTTONDOWN 0x020B
#endif
#ifndef WM_XBUTTONUP
#define WM_XBUTTONUP 0x020C
#endif
#ifndef GET_XBUTTON_WPARAM
#define GET_XBUTTON_WPARAM(w) (HIWORD(w))
#endif
Aug 26, 2008
Aug 26, 2008
60
61
62
#ifndef WM_INPUT
#define WM_INPUT 0x00ff
#endif
Aug 25, 2008
Aug 25, 2008
64
65
66
67
68
69
extern HCTX *g_hCtx;
extern HANDLE *mice;
extern int total_mice;
extern int tablet;
int pressure = 0; /* the pressure reported by the tablet */
Feb 9, 2008
Feb 9, 2008
70
71
72
static WPARAM
RemapVKEY(WPARAM wParam, LPARAM lParam)
{
Feb 11, 2008
Feb 11, 2008
73
int i;
Mar 7, 2008
Mar 7, 2008
74
BYTE scancode = (BYTE) ((lParam >> 16) & 0xFF);
Feb 11, 2008
Feb 11, 2008
75
Feb 9, 2008
Feb 9, 2008
76
77
78
79
/* Windows remaps alphabetic keys based on current layout.
We try to provide USB scancodes, so undo this mapping.
*/
if (wParam >= 'A' && wParam <= 'Z') {
Feb 9, 2008
Feb 9, 2008
80
81
82
if (scancode != alpha_scancodes[wParam - 'A']) {
for (i = 0; i < SDL_arraysize(alpha_scancodes); ++i) {
if (scancode == alpha_scancodes[i]) {
Feb 9, 2008
Feb 9, 2008
83
84
85
86
87
88
wParam = 'A' + i;
break;
}
}
}
}
Feb 11, 2008
Feb 11, 2008
89
Jan 27, 2010
Jan 27, 2010
90
91
92
93
94
95
96
97
98
99
/* Keypad keys are a little trickier, we always scan for them.
Keypad arrow keys have the same scancode as normal arrow keys,
except they don't have the extended bit (0x1000000) set.
*/
if (!(lParam & 0x1000000)) {
for (i = 0; i < SDL_arraysize(keypad_scancodes); ++i) {
if (scancode == keypad_scancodes[i]) {
wParam = VK_NUMPAD0 + i;
break;
}
Feb 11, 2008
Feb 11, 2008
100
101
102
}
}
Feb 9, 2008
Feb 9, 2008
103
104
105
return wParam;
}
106
107
108
109
LRESULT CALLBACK
WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
SDL_WindowData *data;
Aug 25, 2008
Aug 25, 2008
110
111
RAWINPUT *raw;
PACKET packet;
Dec 15, 2009
Dec 15, 2009
112
LRESULT returnCode = -1;
Jul 27, 2006
Jul 27, 2006
114
/* Send a SDL_SYSWMEVENT if the application wants them */
Mar 25, 2010
Mar 25, 2010
115
if (SDL_GetEventState(SDL_SYSWMEVENT) == SDL_ENABLE) {
Jul 27, 2006
Jul 27, 2006
116
117
118
119
120
121
122
123
124
125
SDL_SysWMmsg wmmsg;
SDL_VERSION(&wmmsg.version);
wmmsg.hwnd = hwnd;
wmmsg.msg = msg;
wmmsg.wParam = wParam;
wmmsg.lParam = lParam;
SDL_SendSysWMEvent(&wmmsg);
}
126
127
128
129
130
/* Get the window data for the window */
data = (SDL_WindowData *) GetProp(hwnd, TEXT("SDL_WindowData"));
if (!data) {
return CallWindowProc(DefWindowProc, hwnd, msg, wParam, lParam);
}
Jun 10, 2010
Jun 10, 2010
131
132
#ifdef WMMSG_DEBUG
Jun 10, 2010
Jun 10, 2010
133
134
{
FILE *log = fopen("wmmsg.txt", "a");
Jul 17, 2006
Jul 17, 2006
135
136
137
138
139
140
141
142
fprintf(log, "Received windows message: %p ", hwnd);
if (msg > MAX_WMMSG) {
fprintf(log, "%d", msg);
} else {
fprintf(log, "%s", wmtab[msg]);
}
fprintf(log, " -- 0x%X, 0x%X\n", wParam, lParam);
fclose(log);
Aug 25, 2008
Aug 25, 2008
144
145
146
147
148
#endif
switch (msg) {
Aug 25, 2008
Aug 25, 2008
149
150
151
case WT_PACKET:
{
/* if we receive such data we need to update the pressure */
Aug 26, 2008
Aug 26, 2008
152
153
SDL_VideoData *videodata = data->videodata;
if (videodata->wintabDLL
Sep 5, 2009
Sep 5, 2009
154
&& videodata->WTPacket((HCTX) lParam, (UINT) wParam, &packet)) {
Aug 25, 2008
Aug 25, 2008
155
156
157
158
159
160
161
162
163
164
SDL_ChangeEnd(tablet, (int) packet.pkCursor);
pressure = (int) packet.pkNormalPressure;
}
}
break;
case WT_PROXIMITY:
{
/* checking where the proximity message showed up */
int h_context = LOWORD(lParam);
Aug 26, 2008
Aug 26, 2008
165
POINT point;
Aug 25, 2008
Aug 25, 2008
166
167
168
169
170
GetCursorPos(&point);
ScreenToClient(hwnd, &point);
/* are we in proximity or out of proximity */
if (h_context == 0) {
Aug 26, 2008
Aug 26, 2008
171
SDL_SendProximity(tablet, point.x, point.y, SDL_PROXIMITYOUT);
Aug 25, 2008
Aug 25, 2008
172
} else {
Aug 26, 2008
Aug 26, 2008
173
SDL_SendProximity(tablet, point.x, point.y, SDL_PROXIMITYIN);
Aug 25, 2008
Aug 25, 2008
174
175
176
177
}
}
break;
178
179
180
case WM_SHOWWINDOW:
{
if (wParam) {
Jan 21, 2010
Jan 21, 2010
181
SDL_SendWindowEvent(data->window, SDL_WINDOWEVENT_SHOWN, 0, 0);
Jan 21, 2010
Jan 21, 2010
183
SDL_SendWindowEvent(data->window, SDL_WINDOWEVENT_HIDDEN, 0, 0);
184
185
186
187
188
189
190
191
192
193
194
195
196
197
}
}
break;
case WM_ACTIVATE:
{
int index;
SDL_Keyboard *keyboard;
BOOL minimized;
minimized = HIWORD(wParam);
index = data->videodata->keyboard;
keyboard = SDL_GetKeyboard(index);
if (!minimized && (LOWORD(wParam) != WA_INACTIVE)) {
Jan 21, 2010
Jan 21, 2010
198
199
SDL_SendWindowEvent(data->window, SDL_WINDOWEVENT_SHOWN, 0, 0);
SDL_SendWindowEvent(data->window,
200
SDL_WINDOWEVENT_RESTORED, 0, 0);
May 23, 2009
May 23, 2009
201
#ifndef _WIN32_WCE /* WinCE misses IsZoomed() */
202
if (IsZoomed(hwnd)) {
Jan 21, 2010
Jan 21, 2010
203
SDL_SendWindowEvent(data->window,
204
205
SDL_WINDOWEVENT_MAXIMIZED, 0, 0);
}
May 23, 2009
May 23, 2009
206
#endif
Jan 21, 2010
Jan 21, 2010
207
208
if (keyboard && keyboard->focus != data->window) {
SDL_SetKeyboardFocus(index, data->window);
209
210
211
}
/* FIXME: Update keyboard state */
} else {
Jan 21, 2010
Jan 21, 2010
212
if (keyboard && keyboard->focus == data->window) {
213
214
215
SDL_SetKeyboardFocus(index, 0);
}
if (minimized) {
Jan 21, 2010
Jan 21, 2010
216
SDL_SendWindowEvent(data->window,
217
218
219
220
SDL_WINDOWEVENT_MINIMIZED, 0, 0);
}
}
}
Dec 15, 2009
Dec 15, 2009
221
222
returnCode = 0;
break;
Mar 23, 2009
Mar 23, 2009
224
225
226
227
228
/* WinCE has no RawInput, so we use the classic mouse events.
In classic Win32 this is done by WM_INPUT
*/
#ifdef _WIN32_WCE
case WM_MOUSEMOVE:
May 23, 2009
May 23, 2009
229
230
231
SDL_SendMouseMotion(0, 0, LOWORD(lParam), HIWORD(lParam), 0);
break;
Mar 23, 2009
Mar 23, 2009
232
case WM_LBUTTONDOWN:
May 23, 2009
May 23, 2009
233
234
235
236
SDL_SendMouseMotion(0, 0, LOWORD(lParam), HIWORD(lParam), 0);
SDL_SendMouseButton(0, SDL_PRESSED, SDL_BUTTON_LEFT);
break;
Mar 23, 2009
Mar 23, 2009
237
case WM_LBUTTONUP:
May 23, 2009
May 23, 2009
238
239
240
SDL_SendMouseMotion(0, 0, LOWORD(lParam), HIWORD(lParam), 0);
SDL_SendMouseButton(0, SDL_RELEASED, SDL_BUTTON_LEFT);
break;
Mar 23, 2009
Mar 23, 2009
241
242
#else /* _WIN32_WCE */
Aug 25, 2008
Aug 25, 2008
243
case WM_INPUT: /* mouse events */
Aug 25, 2008
Aug 25, 2008
245
246
LPBYTE lpb;
const RAWINPUTHEADER *header;
Sep 7, 2009
Sep 7, 2009
247
int index = -1;
Aug 25, 2008
Aug 25, 2008
248
249
250
int i;
int size = 0;
const RAWMOUSE *raw_mouse = NULL;
Aug 26, 2008
Aug 26, 2008
251
POINT point;
Aug 25, 2008
Aug 25, 2008
252
USHORT flags;
Jan 3, 2009
Jan 3, 2009
253
int w, h;
Aug 25, 2008
Aug 25, 2008
254
Mar 23, 2009
Mar 23, 2009
255
/* we're collecting raw data to be able to identify the mouse (if there are several) */
Aug 25, 2008
Aug 25, 2008
256
257
GetRawInputData((HRAWINPUT) lParam, RID_INPUT, NULL, &size,
sizeof(RAWINPUTHEADER));
Oct 12, 2008
Oct 12, 2008
258
lpb = SDL_stack_alloc(BYTE, size);
Aug 25, 2008
Aug 25, 2008
259
260
261
262
263
264
265
266
267
268
269
270
GetRawInputData((HRAWINPUT) lParam, RID_INPUT, lpb, &size,
sizeof(RAWINPUTHEADER));
raw = (RAWINPUT *) lpb;
header = &raw->header;
flags = raw->data.mouse.usButtonFlags;
/* we're checking which mouse generated the event */
for (i = 0; i < total_mice; ++i) {
if (mice[i] == header->hDevice) {
index = i;
break;
}
Sep 7, 2009
Sep 7, 2009
272
273
if (index < 0) {
/* New mouse? Should we dynamically update mouse list? */
Dec 15, 2009
Dec 15, 2009
274
275
returnCode = 0;
break;
Sep 7, 2009
Sep 7, 2009
276
}
May 23, 2009
May 23, 2009
277
Aug 25, 2008
Aug 25, 2008
278
GetCursorPos(&point);
Jan 3, 2009
Jan 3, 2009
279
280
ScreenToClient(hwnd, &point);
Jan 21, 2010
Jan 21, 2010
281
SDL_GetWindowSize(data->window, &w, &h);
Jan 3, 2009
Jan 3, 2009
282
if (point.x >= 0 && point.y >= 0 && point.x < w && point.y < h) {
Jan 21, 2010
Jan 21, 2010
283
SDL_SetMouseFocus(index, data->window);
Jan 3, 2009
Jan 3, 2009
284
285
286
287
288
} else {
SDL_SetMouseFocus(index, 0);
/* FIXME: Should we be doing anything else here? */
break;
}
Aug 25, 2008
Aug 25, 2008
290
/* if the message was sent by a tablet we have to send also pressure */
Nov 27, 2008
Nov 27, 2008
291
if (index == tablet) {
Aug 26, 2008
Aug 26, 2008
292
SDL_SendMouseMotion(index, 0, point.x, point.y, pressure);
Aug 26, 2008
Aug 26, 2008
294
SDL_SendMouseMotion(index, 0, point.x, point.y, 0);
Aug 25, 2008
Aug 25, 2008
295
296
}
/* we're sending mouse buttons messages to check up if sth changed */
Oct 12, 2008
Oct 12, 2008
297
if (flags & RI_MOUSE_LEFT_BUTTON_DOWN) {
Aug 25, 2008
Aug 25, 2008
298
SDL_SendMouseButton(index, SDL_PRESSED, SDL_BUTTON_LEFT);
Oct 12, 2008
Oct 12, 2008
299
} else if (flags & RI_MOUSE_LEFT_BUTTON_UP) {
Aug 25, 2008
Aug 25, 2008
300
301
SDL_SendMouseButton(index, SDL_RELEASED, SDL_BUTTON_LEFT);
}
Oct 12, 2008
Oct 12, 2008
302
if (flags & RI_MOUSE_MIDDLE_BUTTON_DOWN) {
Aug 25, 2008
Aug 25, 2008
303
SDL_SendMouseButton(index, SDL_PRESSED, SDL_BUTTON_MIDDLE);
Oct 12, 2008
Oct 12, 2008
304
} else if (flags & RI_MOUSE_MIDDLE_BUTTON_UP) {
Aug 25, 2008
Aug 25, 2008
305
306
SDL_SendMouseButton(index, SDL_RELEASED, SDL_BUTTON_MIDDLE);
}
Oct 12, 2008
Oct 12, 2008
307
if (flags & RI_MOUSE_RIGHT_BUTTON_DOWN) {
Aug 25, 2008
Aug 25, 2008
308
SDL_SendMouseButton(index, SDL_PRESSED, SDL_BUTTON_RIGHT);
Oct 12, 2008
Oct 12, 2008
309
} else if (flags & RI_MOUSE_RIGHT_BUTTON_UP) {
Aug 25, 2008
Aug 25, 2008
310
311
SDL_SendMouseButton(index, SDL_RELEASED, SDL_BUTTON_RIGHT);
}
Aug 25, 2008
Aug 25, 2008
312
313
314
315
316
317
318
319
320
321
if (flags & RI_MOUSE_BUTTON_4_DOWN) {
SDL_SendMouseButton(index, SDL_PRESSED, SDL_BUTTON_X1);
} else if (flags & RI_MOUSE_BUTTON_4_UP) {
SDL_SendMouseButton(index, SDL_RELEASED, SDL_BUTTON_X1);
}
if (flags & RI_MOUSE_BUTTON_5_DOWN) {
SDL_SendMouseButton(index, SDL_PRESSED, SDL_BUTTON_X2);
} else if (flags & RI_MOUSE_BUTTON_5_UP) {
SDL_SendMouseButton(index, SDL_RELEASED, SDL_BUTTON_X2);
}
Aug 25, 2008
Aug 25, 2008
322
if (flags & RI_MOUSE_WHEEL) {
Jan 3, 2009
Jan 3, 2009
323
SDL_SendMouseWheel(index, 0,
Jan 4, 2009
Jan 4, 2009
324
(short) raw->data.mouse.usButtonData);
Oct 12, 2008
Oct 12, 2008
326
SDL_stack_free(lpb);
Dec 15, 2009
Dec 15, 2009
328
329
returnCode = 0;
break;
Mar 23, 2009
Mar 23, 2009
330
#endif /* _WIN32_WCE */
May 23, 2009
May 23, 2009
331
332
333
case WM_MOUSELEAVE:
{
Jan 3, 2009
Jan 3, 2009
334
int i;
Jan 3, 2009
Jan 3, 2009
336
337
for (i = 0; i < SDL_GetNumMice(); ++i) {
SDL_Mouse *mouse = SDL_GetMouse(i);
Jan 21, 2010
Jan 21, 2010
339
if (mouse->focus == data->window) {
Jan 3, 2009
Jan 3, 2009
340
341
SDL_SetMouseFocus(i, 0);
}
Dec 15, 2009
Dec 15, 2009
344
345
returnCode = 0;
break;
346
347
348
349
350
351
352
353
case WM_SYSKEYDOWN:
case WM_KEYDOWN:
{
int index;
/* Ignore repeated keys */
if (lParam & REPEATED_KEYMASK) {
Dec 15, 2009
Dec 15, 2009
354
355
returnCode = 0;
break;
356
357
358
}
index = data->videodata->keyboard;
Feb 9, 2008
Feb 9, 2008
359
wParam = RemapVKEY(wParam, lParam);
360
361
362
363
364
365
366
367
368
369
switch (wParam) {
case VK_CONTROL:
if (lParam & EXTENDED_KEYMASK)
wParam = VK_RCONTROL;
else
wParam = VK_LCONTROL;
break;
case VK_SHIFT:
/* EXTENDED trick doesn't work here */
{
Feb 8, 2008
Feb 8, 2008
370
371
Uint8 *state = SDL_GetKeyboardState(NULL);
if (state[SDL_SCANCODE_LSHIFT] == SDL_RELEASED
372
373
&& (GetKeyState(VK_LSHIFT) & 0x8000)) {
wParam = VK_LSHIFT;
Feb 8, 2008
Feb 8, 2008
374
} else if (state[SDL_SCANCODE_RSHIFT] == SDL_RELEASED
375
376
377
378
&& (GetKeyState(VK_RSHIFT) & 0x8000)) {
wParam = VK_RSHIFT;
} else {
/* Probably a key repeat */
Dec 15, 2009
Dec 15, 2009
379
wParam = 256;
380
381
382
383
384
385
386
387
388
}
}
break;
case VK_MENU:
if (lParam & EXTENDED_KEYMASK)
wParam = VK_RMENU;
else
wParam = VK_LMENU;
break;
Feb 10, 2008
Feb 10, 2008
389
390
391
392
case VK_RETURN:
if (lParam & EXTENDED_KEYMASK)
wParam = VK_ENTER;
break;
Feb 8, 2008
Feb 8, 2008
394
395
396
397
if (wParam < 256) {
SDL_SendKeyboardKey(index, SDL_PRESSED,
data->videodata->key_layout[wParam]);
}
Dec 15, 2009
Dec 15, 2009
399
400
returnCode = 0;
break;
401
402
403
404
405
406
407
case WM_SYSKEYUP:
case WM_KEYUP:
{
int index;
index = data->videodata->keyboard;
Feb 9, 2008
Feb 9, 2008
408
wParam = RemapVKEY(wParam, lParam);
409
410
411
412
413
414
415
416
417
418
switch (wParam) {
case VK_CONTROL:
if (lParam & EXTENDED_KEYMASK)
wParam = VK_RCONTROL;
else
wParam = VK_LCONTROL;
break;
case VK_SHIFT:
/* EXTENDED trick doesn't work here */
{
Feb 8, 2008
Feb 8, 2008
419
420
Uint8 *state = SDL_GetKeyboardState(NULL);
if (state[SDL_SCANCODE_LSHIFT] == SDL_PRESSED
421
422
&& !(GetKeyState(VK_LSHIFT) & 0x8000)) {
wParam = VK_LSHIFT;
Feb 8, 2008
Feb 8, 2008
423
} else if (state[SDL_SCANCODE_RSHIFT] == SDL_PRESSED
424
425
426
427
&& !(GetKeyState(VK_RSHIFT) & 0x8000)) {
wParam = VK_RSHIFT;
} else {
/* Probably a key repeat */
Dec 15, 2009
Dec 15, 2009
428
wParam = 256;
429
430
431
432
433
434
435
436
437
}
}
break;
case VK_MENU:
if (lParam & EXTENDED_KEYMASK)
wParam = VK_RMENU;
else
wParam = VK_LMENU;
break;
Feb 10, 2008
Feb 10, 2008
438
439
440
441
case VK_RETURN:
if (lParam & EXTENDED_KEYMASK)
wParam = VK_ENTER;
break;
Aug 25, 2008
Aug 25, 2008
443
444
445
/* Windows only reports keyup for print screen */
if (wParam == VK_SNAPSHOT
Feb 8, 2008
Feb 8, 2008
446
447
&& SDL_GetKeyboardState(NULL)[SDL_SCANCODE_PRINTSCREEN] ==
SDL_RELEASED) {
448
SDL_SendKeyboardKey(index, SDL_PRESSED,
Feb 8, 2008
Feb 8, 2008
449
450
451
452
453
data->videodata->key_layout[wParam]);
}
if (wParam < 256) {
SDL_SendKeyboardKey(index, SDL_RELEASED,
data->videodata->key_layout[wParam]);
Dec 15, 2009
Dec 15, 2009
456
457
returnCode = 0;
break;
Feb 9, 2008
Feb 9, 2008
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
case WM_CHAR:
{
char text[4];
/* Convert to UTF-8 and send it on... */
if (wParam <= 0x7F) {
text[0] = (char) wParam;
text[1] = '\0';
} else if (wParam <= 0x7FF) {
text[0] = 0xC0 | (char) ((wParam >> 6) & 0x1F);
text[1] = 0x80 | (char) (wParam & 0x3F);
text[2] = '\0';
} else {
text[0] = 0xE0 | (char) ((wParam >> 12) & 0x0F);
text[1] = 0x80 | (char) ((wParam >> 6) & 0x3F);
text[2] = 0x80 | (char) (wParam & 0x3F);
text[3] = '\0';
}
SDL_SendKeyboardText(data->videodata->keyboard, text);
}
Dec 15, 2009
Dec 15, 2009
479
480
returnCode = 0;
break;
Feb 9, 2008
Feb 9, 2008
481
Feb 9, 2008
Feb 9, 2008
482
483
484
485
case WM_INPUTLANGCHANGE:
{
WIN_UpdateKeymap(data->videodata->keyboard);
}
Dec 15, 2009
Dec 15, 2009
486
487
returnCode = 1;
break;
Feb 9, 2008
Feb 9, 2008
488
489
490
491
492
493
494
495
case WM_GETMINMAXINFO:
{
MINMAXINFO *info;
RECT size;
int x, y;
int w, h;
int style;
Jun 7, 2009
Jun 7, 2009
496
BOOL menu;
497
498
/* If we allow resizing, let the resize happen naturally */
Jan 21, 2010
Jan 21, 2010
499
if (SDL_GetWindowFlags(data->window) & SDL_WINDOW_RESIZABLE) {
Dec 15, 2009
Dec 15, 2009
500
501
returnCode = 0;
break;
502
503
504
505
506
507
508
509
}
/* Get the current position of our window */
GetWindowRect(hwnd, &size);
x = size.left;
y = size.top;
/* Calculate current size of our window */
Jan 21, 2010
Jan 21, 2010
510
SDL_GetWindowSize(data->window, &w, &h);
511
512
513
514
515
size.top = 0;
size.left = 0;
size.bottom = h;
size.right = w;
Jun 7, 2009
Jun 7, 2009
516
517
518
519
520
style = GetWindowLong(hwnd, GWL_STYLE);
#ifdef _WIN32_WCE
menu = FALSE;
#else
521
522
523
524
525
/* DJM - according to the docs for GetMenu(), the
return value is undefined if hwnd is a child window.
Aparently it's too difficult for MS to check
inside their function, so I have to do it here.
*/
Jun 7, 2009
Jun 7, 2009
526
527
528
menu = (style & WS_CHILDWINDOW) ? FALSE : (GetMenu(hwnd) != NULL);
#endif
AdjustWindowRectEx(&size, style, menu, 0);
529
530
531
532
533
534
535
536
537
538
539
540
541
542
w = size.right - size.left;
h = size.bottom - size.top;
/* Fix our size to the current size */
info = (MINMAXINFO *) lParam;
info->ptMaxSize.x = w;
info->ptMaxSize.y = h;
info->ptMaxPosition.x = x;
info->ptMaxPosition.y = y;
info->ptMinTrackSize.x = w;
info->ptMinTrackSize.y = h;
info->ptMaxTrackSize.x = w;
info->ptMaxTrackSize.y = h;
}
Dec 15, 2009
Dec 15, 2009
543
544
returnCode = 0;
break;
545
546
547
548
549
550
551
552
case WM_WINDOWPOSCHANGED:
{
RECT rect;
int x, y;
int w, h;
Uint32 window_flags;
Sep 6, 2009
Sep 6, 2009
553
554
555
556
if (!GetClientRect(hwnd, &rect) ||
(rect.right == rect.left && rect.bottom == rect.top)) {
break;
}
557
558
559
ClientToScreen(hwnd, (LPPOINT) & rect);
ClientToScreen(hwnd, (LPPOINT) & rect + 1);
Jan 21, 2010
Jan 21, 2010
560
window_flags = SDL_GetWindowFlags(data->window);
561
562
563
564
565
566
567
if ((window_flags & SDL_WINDOW_INPUT_GRABBED) &&
(window_flags & SDL_WINDOW_INPUT_FOCUS)) {
ClipCursor(&rect);
}
x = rect.left;
y = rect.top;
Jan 21, 2010
Jan 21, 2010
568
SDL_SendWindowEvent(data->window, SDL_WINDOWEVENT_MOVED, x, y);
569
570
571
w = rect.right - rect.left;
h = rect.bottom - rect.top;
Jan 21, 2010
Jan 21, 2010
572
SDL_SendWindowEvent(data->window, SDL_WINDOWEVENT_RESIZED, w,
573
574
575
576
577
578
h);
}
break;
case WM_SETCURSOR:
{
Feb 19, 2009
Feb 19, 2009
579
580
581
582
583
584
585
586
587
588
Uint16 hittest;
hittest = LOWORD(lParam);
if (hittest == HTCLIENT) {
/* FIXME: Implement the cursor API */
static HCURSOR cursor;
if (!cursor) {
cursor = LoadCursor(NULL, IDC_ARROW);
}
SetCursor(cursor);
Dec 15, 2009
Dec 15, 2009
589
returnCode = TRUE;
Feb 19, 2009
Feb 19, 2009
590
}
591
592
593
594
595
596
597
}
break;
/* We are about to get palette focus! */
case WM_QUERYNEWPALETTE:
{
/*
Dec 15, 2009
Dec 15, 2009
598
599
WIN_RealizePalette(current_video);
returnCode = TRUE;
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
*/
}
break;
/* Another application changed the palette */
case WM_PALETTECHANGED:
{
/*
WIN_PaletteChanged(current_video, (HWND) wParam);
*/
}
break;
/* We were occluded, refresh our display */
case WM_PAINT:
{
RECT rect;
if (GetUpdateRect(hwnd, &rect, FALSE)) {
ValidateRect(hwnd, &rect);
Jan 21, 2010
Jan 21, 2010
619
SDL_SendWindowEvent(data->window, SDL_WINDOWEVENT_EXPOSED,
620
621
622
0, 0);
}
}
Dec 15, 2009
Dec 15, 2009
623
624
returnCode = 0;
break;
Mar 23, 2009
Mar 23, 2009
625
626
627
628
629
630
631
632
633
634
635
636
/* We'll do our own drawing, prevent flicker */
case WM_ERASEBKGND:
{
}
return (1);
case WM_SYSCOMMAND:
{
/* Don't start the screensaver or blank the monitor in fullscreen apps */
if ((wParam & 0xFFF0) == SC_SCREENSAVE ||
(wParam & 0xFFF0) == SC_MONITORPOWER) {
Jan 12, 2009
Jan 12, 2009
637
if (SDL_GetVideoDevice()->suspend_screensaver) {
638
639
640
641
642
643
644
645
return (0);
}
}
}
break;
case WM_CLOSE:
{
Jan 21, 2010
Jan 21, 2010
646
SDL_SendWindowEvent(data->window, SDL_WINDOWEVENT_CLOSE, 0, 0);
Dec 15, 2009
Dec 15, 2009
648
649
returnCode = 0;
break;
Jun 10, 2010
Jun 10, 2010
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
case WM_TOUCH:
{
//printf("Got Touch Event!\n");
FILE *log = fopen("wmmsg.txt", "a");
fprintf(log, "Received Touch Message: %p ", hwnd);
if (msg > MAX_WMMSG) {
fprintf(log, "%d", msg);
} else {
fprintf(log, "%s", wmtab[msg]);
}
fprintf(log, "WM_TOUCH = %d -- 0x%X, 0x%X\n",msg, wParam, lParam);
fclose(log);
}
break;
case WM_GESTURE:
{
//printf("Got Touch Event!\n");
FILE *log = fopen("wmmsg.txt", "a");
fprintf(log, "Received Gesture Message: %p ", hwnd);
if (msg > MAX_WMMSG) {
fprintf(log, "%d", msg);
} else {
fprintf(log, "%s", wmtab[msg]);
}
fprintf(log, "WM_GESTURE = %d -- 0x%X, 0x%X\n",msg, wParam, lParam);
fclose(log);
}
break;
}
Dec 15, 2009
Dec 15, 2009
683
684
685
686
687
688
689
690
/* If there's a window proc, assume it's going to handle messages */
if (data->wndproc) {
return CallWindowProc(data->wndproc, hwnd, msg, wParam, lParam);
} else if (returnCode >= 0) {
return returnCode;
} else {
return CallWindowProc(DefWindowProc, hwnd, msg, wParam, lParam);
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
}
}
void
WIN_PumpEvents(_THIS)
{
MSG msg;
while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
static int app_registered = 0;
LPTSTR SDL_Appname = NULL;
Uint32 SDL_Appstyle = 0;
HINSTANCE SDL_Instance = NULL;
/* Register the class for this application */
int
SDL_RegisterApp(char *name, Uint32 style, void *hInst)
{
WNDCLASS class;
/* Only do this once... */
if (app_registered) {
++app_registered;
return (0);
}
if (!name && !SDL_Appname) {
name = "SDL_app";
SDL_Appstyle = (CS_BYTEALIGNCLIENT | CS_OWNDC);
SDL_Instance = hInst ? hInst : GetModuleHandle(NULL);
}
if (name) {
SDL_Appname = WIN_UTF8ToString(name);
SDL_Appstyle = style;
SDL_Instance = hInst ? hInst : GetModuleHandle(NULL);
}
/* Register the application class */
class.hCursor = NULL;
Aug 25, 2008
Aug 25, 2008
734
735
736
class.hIcon =
LoadImage(SDL_Instance, SDL_Appname, IMAGE_ICON, 0, 0,
LR_DEFAULTCOLOR);
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
class.lpszMenuName = NULL;
class.lpszClassName = SDL_Appname;
class.hbrBackground = NULL;
class.hInstance = SDL_Instance;
class.style = SDL_Appstyle;
class.lpfnWndProc = DefWindowProc;
class.cbWndExtra = 0;
class.cbClsExtra = 0;
if (!RegisterClass(&class)) {
SDL_SetError("Couldn't register application class");
return (-1);
}
app_registered = 1;
return (0);
}
/* Unregisters the windowclass registered in SDL_RegisterApp above. */
void
SDL_UnregisterApp()
{
WNDCLASS class;
/* SDL_RegisterApp might not have been called before */
if (!app_registered) {
return;
}
--app_registered;
if (app_registered == 0) {
/* Check for any registered window classes. */
if (GetClassInfo(SDL_Instance, SDL_Appname, &class)) {
UnregisterClass(SDL_Appname, SDL_Instance);
}
SDL_free(SDL_Appname);
SDL_Appname = NULL;
}
}
/* Sets an error message based on GetLastError() */
void
WIN_SetError(const char *prefix)
{
TCHAR buffer[1024];
char *message;
Aug 25, 2008
Aug 25, 2008
781
782
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(), 0,
buffer, SDL_arraysize(buffer), NULL);
783
message = WIN_StringToUTF8(buffer);
Dec 15, 2009
Dec 15, 2009
784
SDL_SetError("%s%s%s", prefix ? prefix : "", prefix ? ": " : "", message);
785
786
787
788
SDL_free(message);
}
/* vi: set ts=4 sw=4 expandtab: */