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

Latest commit

 

History

History
696 lines (614 loc) · 20.5 KB

SDL_windowsevents.c

File metadata and controls

696 lines (614 loc) · 20.5 KB
 
Apr 8, 2011
Apr 8, 2011
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Simple DirectMedia Layer
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Aug 25, 2008
Aug 25, 2008
21
22
23
#include "SDL_config.h"
Jan 21, 2011
Jan 21, 2011
24
25
#include "SDL_windowsvideo.h"
#include "SDL_windowsshape.h"
26
27
28
#include "SDL_syswm.h"
#include "SDL_vkeys.h"
#include "../../events/SDL_events_c.h"
Dec 1, 2010
Dec 1, 2010
29
#include "../../events/SDL_touch_c.h"
Jun 10, 2010
Jun 10, 2010
31
32
Aug 29, 2010
Aug 29, 2010
33
/*#define WMMSG_DEBUG*/
34
#ifdef WMMSG_DEBUG
Jun 10, 2010
Jun 10, 2010
35
#include <stdio.h>
36
37
38
39
#include "wmmsg.h"
#endif
/* Masks for processing the windows KEYDOWN and KEYUP messages */
Feb 11, 2008
Feb 11, 2008
40
41
#define REPEATED_KEYMASK (1<<30)
#define EXTENDED_KEYMASK (1<<24)
Mar 7, 2008
Mar 7, 2008
43
#define VK_ENTER 10 /* Keypad Enter ... no VKEY defined? */
Feb 10, 2008
Feb 10, 2008
44
Jun 16, 2007
Jun 16, 2007
45
46
47
48
49
50
51
52
53
54
/* 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
55
56
57
#ifndef WM_INPUT
#define WM_INPUT 0x00ff
#endif
Dec 29, 2010
Dec 29, 2010
58
#ifndef WM_TOUCH
Aug 29, 2010
Aug 29, 2010
59
#define WM_TOUCH 0x0240
Dec 29, 2010
Dec 29, 2010
60
#endif
Dec 1, 2010
Dec 1, 2010
61
Feb 9, 2008
Feb 9, 2008
63
64
65
static WPARAM
RemapVKEY(WPARAM wParam, LPARAM lParam)
{
Feb 11, 2008
Feb 11, 2008
66
int i;
Mar 7, 2008
Mar 7, 2008
67
BYTE scancode = (BYTE) ((lParam >> 16) & 0xFF);
Feb 11, 2008
Feb 11, 2008
68
Feb 9, 2008
Feb 9, 2008
69
70
71
72
/* 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
73
74
75
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
76
77
78
79
80
81
wParam = 'A' + i;
break;
}
}
}
}
Feb 11, 2008
Feb 11, 2008
82
Jan 27, 2010
Jan 27, 2010
83
84
85
86
87
/* 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)) {
Jul 21, 2010
Jul 21, 2010
88
89
90
91
92
93
94
95
if (wParam == VK_DELETE) {
wParam = VK_DECIMAL;
} else {
for (i = 0; i < SDL_arraysize(keypad_scancodes); ++i) {
if (scancode == keypad_scancodes[i]) {
wParam = VK_NUMPAD0 + i;
break;
}
Jan 27, 2010
Jan 27, 2010
96
}
Feb 11, 2008
Feb 11, 2008
97
98
99
}
}
Feb 9, 2008
Feb 9, 2008
100
101
102
return wParam;
}
103
104
105
106
LRESULT CALLBACK
WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
SDL_WindowData *data;
Dec 15, 2009
Dec 15, 2009
107
LRESULT returnCode = -1;
Jul 27, 2006
Jul 27, 2006
109
/* Send a SDL_SYSWMEVENT if the application wants them */
Mar 25, 2010
Mar 25, 2010
110
if (SDL_GetEventState(SDL_SYSWMEVENT) == SDL_ENABLE) {
Jul 27, 2006
Jul 27, 2006
111
112
113
SDL_SysWMmsg wmmsg;
SDL_VERSION(&wmmsg.version);
Sep 27, 2010
Sep 27, 2010
114
wmmsg.subsystem = SDL_SYSWM_WINDOWS;
Jan 21, 2011
Jan 21, 2011
115
116
117
118
wmmsg.msg.win.hwnd = hwnd;
wmmsg.msg.win.msg = msg;
wmmsg.msg.win.wParam = wParam;
wmmsg.msg.win.lParam = lParam;
Jul 27, 2006
Jul 27, 2006
119
120
121
SDL_SendSysWMEvent(&wmmsg);
}
122
123
124
125
126
/* 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
127
128
#ifdef WMMSG_DEBUG
Jun 10, 2010
Jun 10, 2010
129
130
{
FILE *log = fopen("wmmsg.txt", "a");
Jul 17, 2006
Jul 17, 2006
131
132
133
134
135
136
137
138
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 29, 2010
Aug 29, 2010
141
Jul 12, 2010
Jul 12, 2010
142
143
if (IME_HandleMessage(hwnd, msg, wParam, &lParam, data->videodata))
return 0;
144
145
146
147
148
149
switch (msg) {
case WM_SHOWWINDOW:
{
if (wParam) {
Jan 21, 2010
Jan 21, 2010
150
SDL_SendWindowEvent(data->window, SDL_WINDOWEVENT_SHOWN, 0, 0);
Jan 21, 2010
Jan 21, 2010
152
SDL_SendWindowEvent(data->window, SDL_WINDOWEVENT_HIDDEN, 0, 0);
153
154
155
156
157
158
159
160
161
162
}
}
break;
case WM_ACTIVATE:
{
BOOL minimized;
minimized = HIWORD(wParam);
if (!minimized && (LOWORD(wParam) != WA_INACTIVE)) {
Jan 21, 2010
Jan 21, 2010
163
164
SDL_SendWindowEvent(data->window, SDL_WINDOWEVENT_SHOWN, 0, 0);
SDL_SendWindowEvent(data->window,
165
SDL_WINDOWEVENT_RESTORED, 0, 0);
May 23, 2009
May 23, 2009
166
#ifndef _WIN32_WCE /* WinCE misses IsZoomed() */
167
if (IsZoomed(hwnd)) {
Jan 21, 2010
Jan 21, 2010
168
SDL_SendWindowEvent(data->window,
169
170
SDL_WINDOWEVENT_MAXIMIZED, 0, 0);
}
May 23, 2009
May 23, 2009
171
#endif
May 10, 2010
May 10, 2010
172
173
if (SDL_GetKeyboardFocus() != data->window) {
SDL_SetKeyboardFocus(data->window);
Jul 9, 2010
Jul 9, 2010
175
176
177
178
/*
* FIXME: Update keyboard state
*/
WIN_CheckClipboardUpdate(data->videodata);
May 10, 2010
May 10, 2010
180
181
if (SDL_GetKeyboardFocus() == data->window) {
SDL_SetKeyboardFocus(NULL);
182
183
}
if (minimized) {
Jan 21, 2010
Jan 21, 2010
184
SDL_SendWindowEvent(data->window,
185
186
187
188
SDL_WINDOWEVENT_MINIMIZED, 0, 0);
}
}
}
Dec 15, 2009
Dec 15, 2009
189
190
returnCode = 0;
break;
Jun 17, 2010
Jun 17, 2010
192
case WM_MOUSEMOVE:
Mar 23, 2009
Mar 23, 2009
193
#ifdef _WIN32_WCE
Jan 24, 2011
Jan 24, 2011
194
195
196
/* transform coords for VGA, WVGA... */
{
SDL_VideoData *videodata = data->videodata;
Feb 1, 2011
Feb 1, 2011
197
if(videodata->CoordTransform) {
Jan 24, 2011
Jan 24, 2011
198
199
200
201
POINT pt;
pt.x = LOWORD(lParam);
pt.y = HIWORD(lParam);
videodata->CoordTransform(data->window, &pt);
Feb 1, 2011
Feb 1, 2011
202
SDL_SendMouseMotion(data->window, 0, pt.x, pt.y);
Jan 24, 2011
Jan 24, 2011
203
204
205
break;
}
}
Jul 28, 2010
Jul 28, 2010
206
#endif
Jul 6, 2010
Jul 6, 2010
207
SDL_SendMouseMotion(data->window, 0, LOWORD(lParam), HIWORD(lParam));
May 23, 2009
May 23, 2009
208
209
break;
Mar 23, 2009
Mar 23, 2009
210
case WM_LBUTTONDOWN:
Jul 6, 2010
Jul 6, 2010
211
SDL_SendMouseButton(data->window, SDL_PRESSED, SDL_BUTTON_LEFT);
May 23, 2009
May 23, 2009
212
213
break;
Mar 23, 2009
Mar 23, 2009
214
case WM_LBUTTONUP:
Jul 6, 2010
Jul 6, 2010
215
SDL_SendMouseButton(data->window, SDL_RELEASED, SDL_BUTTON_LEFT);
Dec 15, 2009
Dec 15, 2009
216
break;
May 23, 2009
May 23, 2009
217
Jan 20, 2011
Jan 20, 2011
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
case WM_RBUTTONDOWN:
SDL_SendMouseButton(data->window, SDL_PRESSED, SDL_BUTTON_RIGHT);
break;
case WM_RBUTTONUP:
SDL_SendMouseButton(data->window, SDL_RELEASED, SDL_BUTTON_RIGHT);
break;
case WM_MBUTTONDOWN:
SDL_SendMouseButton(data->window, SDL_PRESSED, SDL_BUTTON_MIDDLE);
break;
case WM_MBUTTONUP:
SDL_SendMouseButton(data->window, SDL_RELEASED, SDL_BUTTON_MIDDLE);
break;
case WM_XBUTTONDOWN:
SDL_SendMouseButton(data->window, SDL_PRESSED, SDL_BUTTON_X1 + GET_XBUTTON_WPARAM(wParam) - 1);
returnCode = TRUE;
break;
case WM_XBUTTONUP:
SDL_SendMouseButton(data->window, SDL_RELEASED, SDL_BUTTON_X1 + GET_XBUTTON_WPARAM(wParam) - 1);
returnCode = TRUE;
break;
case WM_MOUSEWHEEL:
{
int motion = (short) HIWORD(wParam);
SDL_SendMouseWheel(data->window, 0, motion);
break;
}
Jan 24, 2011
Jan 24, 2011
252
253
#ifdef WM_MOUSELEAVE
/* FIXME: Do we need the SDL 1.2 hack to generate WM_MOUSELEAVE now? */
254
case WM_MOUSELEAVE:
Jun 17, 2010
Jun 17, 2010
255
256
if (SDL_GetMouseFocus() == data->window) {
SDL_SetMouseFocus(NULL);
Dec 15, 2009
Dec 15, 2009
258
259
returnCode = 0;
break;
Jan 24, 2011
Jan 24, 2011
260
#endif /* WM_MOUSELEAVE */
261
262
263
264
case WM_SYSKEYDOWN:
case WM_KEYDOWN:
{
Feb 9, 2008
Feb 9, 2008
265
wParam = RemapVKEY(wParam, lParam);
266
267
268
269
270
271
272
273
274
275
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
276
277
Uint8 *state = SDL_GetKeyboardState(NULL);
if (state[SDL_SCANCODE_LSHIFT] == SDL_RELEASED
278
279
&& (GetKeyState(VK_LSHIFT) & 0x8000)) {
wParam = VK_LSHIFT;
Feb 8, 2008
Feb 8, 2008
280
} else if (state[SDL_SCANCODE_RSHIFT] == SDL_RELEASED
281
282
283
284
&& (GetKeyState(VK_RSHIFT) & 0x8000)) {
wParam = VK_RSHIFT;
} else {
/* Probably a key repeat */
Dec 15, 2009
Dec 15, 2009
285
wParam = 256;
286
287
288
289
290
291
292
293
294
}
}
break;
case VK_MENU:
if (lParam & EXTENDED_KEYMASK)
wParam = VK_RMENU;
else
wParam = VK_LMENU;
break;
Feb 10, 2008
Feb 10, 2008
295
296
297
298
case VK_RETURN:
if (lParam & EXTENDED_KEYMASK)
wParam = VK_ENTER;
break;
Feb 8, 2008
Feb 8, 2008
300
if (wParam < 256) {
May 10, 2010
May 10, 2010
301
SDL_SendKeyboardKey(SDL_PRESSED,
Feb 8, 2008
Feb 8, 2008
302
303
data->videodata->key_layout[wParam]);
}
Dec 15, 2009
Dec 15, 2009
305
306
returnCode = 0;
break;
307
308
309
310
case WM_SYSKEYUP:
case WM_KEYUP:
{
Feb 9, 2008
Feb 9, 2008
311
wParam = RemapVKEY(wParam, lParam);
312
313
314
315
316
317
318
319
320
321
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
322
323
Uint8 *state = SDL_GetKeyboardState(NULL);
if (state[SDL_SCANCODE_LSHIFT] == SDL_PRESSED
324
325
&& !(GetKeyState(VK_LSHIFT) & 0x8000)) {
wParam = VK_LSHIFT;
Feb 8, 2008
Feb 8, 2008
326
} else if (state[SDL_SCANCODE_RSHIFT] == SDL_PRESSED
327
328
329
330
&& !(GetKeyState(VK_RSHIFT) & 0x8000)) {
wParam = VK_RSHIFT;
} else {
/* Probably a key repeat */
Dec 15, 2009
Dec 15, 2009
331
wParam = 256;
332
333
334
335
336
337
338
339
340
}
}
break;
case VK_MENU:
if (lParam & EXTENDED_KEYMASK)
wParam = VK_RMENU;
else
wParam = VK_LMENU;
break;
Feb 10, 2008
Feb 10, 2008
341
342
343
344
case VK_RETURN:
if (lParam & EXTENDED_KEYMASK)
wParam = VK_ENTER;
break;
Aug 25, 2008
Aug 25, 2008
346
347
348
/* Windows only reports keyup for print screen */
if (wParam == VK_SNAPSHOT
Feb 8, 2008
Feb 8, 2008
349
350
&& SDL_GetKeyboardState(NULL)[SDL_SCANCODE_PRINTSCREEN] ==
SDL_RELEASED) {
May 10, 2010
May 10, 2010
351
SDL_SendKeyboardKey(SDL_PRESSED,
Feb 8, 2008
Feb 8, 2008
352
353
354
data->videodata->key_layout[wParam]);
}
if (wParam < 256) {
May 10, 2010
May 10, 2010
355
SDL_SendKeyboardKey(SDL_RELEASED,
Feb 8, 2008
Feb 8, 2008
356
data->videodata->key_layout[wParam]);
Dec 15, 2009
Dec 15, 2009
359
360
returnCode = 0;
break;
Feb 9, 2008
Feb 9, 2008
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
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';
}
May 10, 2010
May 10, 2010
380
SDL_SendKeyboardText(text);
Feb 9, 2008
Feb 9, 2008
381
}
Dec 15, 2009
Dec 15, 2009
382
383
returnCode = 0;
break;
Feb 9, 2008
Feb 9, 2008
384
Jan 24, 2011
Jan 24, 2011
385
#ifdef WM_INPUTLANGCHANGE
Feb 9, 2008
Feb 9, 2008
386
387
case WM_INPUTLANGCHANGE:
{
May 10, 2010
May 10, 2010
388
WIN_UpdateKeymap();
Feb 9, 2008
Feb 9, 2008
389
}
Dec 15, 2009
Dec 15, 2009
390
391
returnCode = 1;
break;
Jan 24, 2011
Jan 24, 2011
392
#endif /* WM_INPUTLANGCHANGE */
Feb 9, 2008
Feb 9, 2008
393
Jan 24, 2011
Jan 24, 2011
394
#ifdef WM_GETMINMAXINFO
395
396
397
398
399
400
401
case WM_GETMINMAXINFO:
{
MINMAXINFO *info;
RECT size;
int x, y;
int w, h;
int style;
Jun 7, 2009
Jun 7, 2009
402
BOOL menu;
403
404
/* If we allow resizing, let the resize happen naturally */
Jul 10, 2010
Jul 10, 2010
405
if(SDL_IsShapedWindow(data->window))
Jul 30, 2010
Jul 30, 2010
406
Win32_ResizeWindowShape(data->window);
Jan 21, 2010
Jan 21, 2010
407
if (SDL_GetWindowFlags(data->window) & SDL_WINDOW_RESIZABLE) {
Dec 15, 2009
Dec 15, 2009
408
409
returnCode = 0;
break;
410
411
412
413
414
415
416
417
}
/* 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
418
SDL_GetWindowSize(data->window, &w, &h);
419
420
421
422
423
size.top = 0;
size.left = 0;
size.bottom = h;
size.right = w;
Jun 7, 2009
Jun 7, 2009
424
425
426
427
428
style = GetWindowLong(hwnd, GWL_STYLE);
#ifdef _WIN32_WCE
menu = FALSE;
#else
429
430
431
432
433
/* 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
434
435
436
menu = (style & WS_CHILDWINDOW) ? FALSE : (GetMenu(hwnd) != NULL);
#endif
AdjustWindowRectEx(&size, style, menu, 0);
437
438
439
440
441
442
443
444
445
446
447
448
449
450
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
451
452
returnCode = 0;
break;
Jan 24, 2011
Jan 24, 2011
453
#endif /* WM_GETMINMAXINFO */
454
455
456
457
458
459
460
461
case WM_WINDOWPOSCHANGED:
{
RECT rect;
int x, y;
int w, h;
Uint32 window_flags;
Sep 6, 2009
Sep 6, 2009
462
463
464
465
if (!GetClientRect(hwnd, &rect) ||
(rect.right == rect.left && rect.bottom == rect.top)) {
break;
}
466
467
468
ClientToScreen(hwnd, (LPPOINT) & rect);
ClientToScreen(hwnd, (LPPOINT) & rect + 1);
Jan 21, 2010
Jan 21, 2010
469
window_flags = SDL_GetWindowFlags(data->window);
470
471
472
473
474
475
476
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
477
SDL_SendWindowEvent(data->window, SDL_WINDOWEVENT_MOVED, x, y);
478
479
480
w = rect.right - rect.left;
h = rect.bottom - rect.top;
Jan 21, 2010
Jan 21, 2010
481
SDL_SendWindowEvent(data->window, SDL_WINDOWEVENT_RESIZED, w,
482
483
484
485
486
487
h);
}
break;
case WM_SETCURSOR:
{
Feb 19, 2009
Feb 19, 2009
488
489
490
491
Uint16 hittest;
hittest = LOWORD(lParam);
if (hittest == HTCLIENT) {
Mar 1, 2011
Mar 1, 2011
492
SetCursor(SDL_cursor);
Dec 15, 2009
Dec 15, 2009
493
returnCode = TRUE;
Feb 19, 2009
Feb 19, 2009
494
}
495
496
497
498
499
500
501
502
503
}
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
504
SDL_SendWindowEvent(data->window, SDL_WINDOWEVENT_EXPOSED,
505
506
507
0, 0);
}
}
Dec 15, 2009
Dec 15, 2009
508
509
returnCode = 0;
break;
Mar 23, 2009
Mar 23, 2009
510
511
512
513
514
515
516
/* We'll do our own drawing, prevent flicker */
case WM_ERASEBKGND:
{
}
return (1);
Jan 24, 2011
Jan 24, 2011
517
#if defined(SC_SCREENSAVE) || defined(SC_MONITORPOWER)
518
519
520
521
522
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
523
if (SDL_GetVideoDevice()->suspend_screensaver) {
524
525
526
527
528
return (0);
}
}
}
break;
Jan 24, 2011
Jan 24, 2011
529
#endif /* System has screensaver support */
530
531
532
case WM_CLOSE:
{
Jan 21, 2010
Jan 21, 2010
533
SDL_SendWindowEvent(data->window, SDL_WINDOWEVENT_CLOSE, 0, 0);
Dec 15, 2009
Dec 15, 2009
535
536
returnCode = 0;
break;
Dec 1, 2010
Dec 1, 2010
537
Jun 10, 2010
Jun 10, 2010
538
case WM_TOUCH:
Dec 29, 2010
Dec 29, 2010
539
540
541
{
UINT i, num_inputs = LOWORD(wParam);
PTOUCHINPUT inputs = SDL_stack_alloc(TOUCHINPUT, num_inputs);
Dec 1, 2010
Dec 1, 2010
542
if (data->videodata->GetTouchInputInfo((HTOUCHINPUT)lParam, num_inputs, inputs, sizeof(TOUCHINPUT))) {
Dec 29, 2010
Dec 29, 2010
543
RECT rect;
Dec 1, 2010
Dec 1, 2010
544
545
546
547
548
549
550
float x, y;
if (!GetClientRect(hwnd, &rect) ||
(rect.right == rect.left && rect.bottom == rect.top)) {
break;
}
ClientToScreen(hwnd, (LPPOINT) & rect);
Dec 29, 2010
Dec 29, 2010
551
552
553
554
555
556
557
558
ClientToScreen(hwnd, (LPPOINT) & rect + 1);
rect.top *= 100;
rect.left *= 100;
rect.bottom *= 100;
rect.right *= 100;
for (i = 0; i < num_inputs; ++i) {
PTOUCHINPUT input = &inputs[i];
Dec 1, 2010
Dec 1, 2010
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
SDL_TouchID touchId = (SDL_TouchID)input->hSource;
if (!SDL_GetTouch(touchId)) {
SDL_Touch touch;
touch.id = touchId;
touch.x_min = 0;
touch.x_max = 1;
touch.native_xres = touch.x_max - touch.x_min;
touch.y_min = 0;
touch.y_max = 1;
touch.native_yres = touch.y_max - touch.y_min;
touch.pressure_min = 0;
touch.pressure_max = 1;
touch.native_pressureres = touch.pressure_max - touch.pressure_min;
if (SDL_AddTouch(&touch, "") < 0) {
continue;
}
Dec 29, 2010
Dec 29, 2010
578
579
580
581
582
583
}
// Get the normalized coordinates for the window
x = (float)(input->x - rect.left)/(rect.right - rect.left);
y = (float)(input->y - rect.top)/(rect.bottom - rect.top);
Dec 1, 2010
Dec 1, 2010
584
if (input->dwFlags & TOUCHEVENTF_DOWN) {
Dec 29, 2010
Dec 29, 2010
585
586
SDL_SendFingerDown(touchId, input->dwID, SDL_TRUE, x, y, 1);
}
Dec 1, 2010
Dec 1, 2010
587
if (input->dwFlags & TOUCHEVENTF_MOVE) {
Dec 29, 2010
Dec 29, 2010
588
589
SDL_SendTouchMotion(touchId, input->dwID, SDL_FALSE, x, y, 1);
}
Dec 1, 2010
Dec 1, 2010
590
if (input->dwFlags & TOUCHEVENTF_UP) {
Dec 29, 2010
Dec 29, 2010
591
592
593
594
595
596
597
SDL_SendFingerDown(touchId, input->dwID, SDL_FALSE, x, y, 1);
}
}
}
SDL_stack_free(inputs);
data->videodata->CloseTouchInputHandle((HTOUCHINPUT)lParam);
Dec 1, 2010
Dec 1, 2010
598
return 0;
Jun 10, 2010
Jun 10, 2010
599
600
601
}
break;
}
Dec 15, 2009
Dec 15, 2009
602
603
604
605
606
607
608
609
/* 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);
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
}
}
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";
Jan 24, 2011
Jan 24, 2011
641
#if defined(CS_BYTEALIGNCLIENT) || defined(CS_OWNDC)
642
SDL_Appstyle = (CS_BYTEALIGNCLIENT | CS_OWNDC);
Jan 24, 2011
Jan 24, 2011
643
#endif
644
645
646
647
648
649
650
651
652
653
654
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
655
656
657
class.hIcon =
LoadImage(SDL_Instance, SDL_Appname, IMAGE_ICON, 0, 0,
LR_DEFAULTCOLOR);
658
659
660
661
662
class.lpszMenuName = NULL;
class.lpszClassName = SDL_Appname;
class.hbrBackground = NULL;
class.hInstance = SDL_Instance;
class.style = SDL_Appstyle;
Jun 8, 2010
Jun 8, 2010
663
class.lpfnWndProc = WIN_WindowProc;
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
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;
}
}
/* vi: set ts=4 sw=4 expandtab: */