Skip to content

Latest commit

 

History

History
852 lines (749 loc) · 21.2 KB

SDL_sysevents.c

File metadata and controls

852 lines (749 loc) · 21.2 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Dec 8, 2008
Dec 8, 2008
3
Copyright (C) 1997-2009 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
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
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
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
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
Feb 25, 2006
Feb 25, 2006
24
25
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
Apr 26, 2001
Apr 26, 2001
26
Jun 16, 2007
Jun 16, 2007
27
28
29
30
31
32
33
34
35
36
37
/* 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
Apr 26, 2001
Apr 26, 2001
38
39
40
#include "SDL_events.h"
#include "SDL_video.h"
#include "SDL_syswm.h"
Feb 16, 2006
Feb 16, 2006
41
42
43
#include "../SDL_sysvideo.h"
#include "../../events/SDL_sysevents.h"
#include "../../events/SDL_events_c.h"
Apr 26, 2001
Apr 26, 2001
44
45
46
#include "SDL_lowvideo.h"
#include "SDL_syswm_c.h"
#include "SDL_main.h"
Sep 29, 2005
Sep 29, 2005
47
#include "SDL_loadso.h"
Apr 26, 2001
Apr 26, 2001
48
49
50
51
52
#ifdef WMMSG_DEBUG
#include "wmmsg.h"
#endif
Feb 16, 2009
Feb 16, 2009
53
54
55
#include "../windib/SDL_gapidibvideo.h"
#ifdef SDL_VIDEO_DRIVER_GAPI
Mar 4, 2006
Mar 4, 2006
56
#include "../gapi/SDL_gapivideo.h"
Feb 16, 2009
Feb 16, 2009
57
#endif
Mar 4, 2006
Mar 4, 2006
58
Feb 16, 2009
Feb 16, 2009
59
#ifdef _WIN32_WCE
Mar 4, 2006
Mar 4, 2006
60
#define IsZoomed(HWND) 1
Apr 26, 2001
Apr 26, 2001
61
#define NO_GETKEYBOARDSTATE
Mar 4, 2006
Mar 4, 2006
62
#if _WIN32_WCE < 420
Aug 20, 2002
Aug 20, 2002
63
#define NO_CHANGEDISPLAYSETTINGS
Apr 26, 2001
Apr 26, 2001
64
#endif
Mar 4, 2006
Mar 4, 2006
65
#endif
Apr 26, 2001
Apr 26, 2001
66
67
/* The window we use for everything... */
Aug 20, 2002
Aug 20, 2002
68
69
70
71
72
#ifdef _WIN32_WCE
LPWSTR SDL_Appname = NULL;
#else
LPSTR SDL_Appname = NULL;
#endif
Jan 29, 2006
Jan 29, 2006
73
Uint32 SDL_Appstyle = 0;
Apr 26, 2001
Apr 26, 2001
74
75
76
HINSTANCE SDL_Instance = NULL;
HWND SDL_Window = NULL;
RECT SDL_bounds = {0, 0, 0, 0};
Feb 16, 2004
Feb 16, 2004
77
78
int SDL_windowX = 0;
int SDL_windowY = 0;
Apr 26, 2001
Apr 26, 2001
79
80
81
int SDL_resizing = 0;
int mouse_relative = 0;
int posted = 0;
Mar 10, 2002
Mar 10, 2002
82
#ifndef NO_CHANGEDISPLAYSETTINGS
Jan 30, 2006
Jan 30, 2006
83
DEVMODE SDL_desktop_mode;
Mar 10, 2002
Mar 10, 2002
84
85
DEVMODE SDL_fullscreen_mode;
#endif
Apr 11, 2002
Apr 11, 2002
86
WORD *gamma_saved = NULL;
Apr 26, 2001
Apr 26, 2001
87
88
89
/* Functions called by the message processing function */
Sep 29, 2005
Sep 29, 2005
90
LONG (*HandleMessage)(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)=NULL;
Jul 3, 2007
Jul 3, 2007
91
void (*WIN_Activate)(_THIS, BOOL active, BOOL iconic);
Apr 26, 2001
Apr 26, 2001
92
93
94
void (*WIN_RealizePalette)(_THIS);
void (*WIN_PaletteChanged)(_THIS, HWND window);
void (*WIN_WinPAINT)(_THIS, HDC hdc);
Apr 11, 2002
Apr 11, 2002
95
extern void DIB_SwapGamma(_THIS);
Apr 26, 2001
Apr 26, 2001
96
Jan 26, 2006
Jan 26, 2006
97
#ifndef NO_GETKEYBOARDSTATE
Oct 13, 2011
Oct 13, 2011
98
#ifndef _WIN64
Jan 19, 2006
Jan 19, 2006
99
100
101
102
/* Variables and support functions for SDL_ToUnicode() */
static int codepage;
static int Is9xME();
static int GetCodePage();
Sep 11, 2011
Sep 11, 2011
103
static int WINAPI ToUnicode9xME(UINT vkey, UINT scancode, const BYTE *keystate, LPWSTR wchars, int wsize, UINT flags);
Jan 19, 2006
Jan 19, 2006
104
105
ToUnicodeFN SDL_ToUnicode = ToUnicode9xME;
Oct 13, 2011
Oct 13, 2011
106
#endif
Jan 26, 2006
Jan 26, 2006
107
#endif /* !NO_GETKEYBOARDSTATE */
Jan 19, 2006
Jan 19, 2006
108
109
Sep 29, 2005
Sep 29, 2005
110
111
#if defined(_WIN32_WCE)
Feb 16, 2009
Feb 16, 2009
112
113
114
//AdjustWindowRect is not available under WinCE 2003
#define AdjustWindowRect(a,b,c) (AdjustWindowRectEx((a),(b),(c),0))
Sep 29, 2005
Sep 29, 2005
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// dynamically load aygshell dll because we want SDL to work on HPC and be300
HINSTANCE aygshell = NULL;
BOOL (WINAPI *SHFullScreen)(HWND hwndRequester, DWORD dwState) = 0;
#define SHFS_SHOWTASKBAR 0x0001
#define SHFS_HIDETASKBAR 0x0002
#define SHFS_SHOWSIPBUTTON 0x0004
#define SHFS_HIDESIPBUTTON 0x0008
#define SHFS_SHOWSTARTICON 0x0010
#define SHFS_HIDESTARTICON 0x0020
static void LoadAygshell(void)
{
if( !aygshell )
aygshell = SDL_LoadObject("aygshell.dll");
Mar 11, 2006
Mar 11, 2006
130
if( (aygshell != 0) && (SHFullScreen == 0) )
Sep 29, 2005
Sep 29, 2005
131
132
133
134
135
136
137
{
SHFullScreen = (int (WINAPI *)(struct HWND__ *,unsigned long)) SDL_LoadFunction(aygshell, "SHFullScreen");
}
}
#endif
Mar 14, 2006
Mar 14, 2006
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/* JC 14 Mar 2006
This is used all over the place, in the windib driver and in the dx5 driver
So we may as well stick it here instead of having multiple copies scattered
about
*/
void WIN_FlushMessageQueue()
{
MSG msg;
while ( PeekMessage(&msg, NULL, 0, 0, PM_REMOVE) ) {
if ( msg.message == WM_QUIT ) break;
TranslateMessage( &msg );
DispatchMessage( &msg );
}
}
Mar 10, 2002
Mar 10, 2002
153
154
static void SDL_RestoreGameMode(void)
{
Feb 16, 2009
Feb 16, 2009
155
156
157
#ifdef _WIN32_WCE //Under ce we don't minimize, therefore no restore
#ifdef SDL_VIDEO_DRIVER_GAPI
Mar 11, 2006
Mar 11, 2006
158
159
160
SDL_VideoDevice *this = current_video;
if(SDL_strcmp(this->name, "gapi") == 0)
{
Feb 16, 2009
Feb 16, 2009
161
if( this->hidden->gapiInfo->suspended )
Mar 11, 2006
Mar 11, 2006
162
{
Feb 16, 2009
Feb 16, 2009
163
this->hidden->gapiInfo->suspended = 0;
Mar 11, 2006
Mar 11, 2006
164
165
}
}
Feb 16, 2009
Feb 16, 2009
166
167
#endif
Mar 11, 2006
Mar 11, 2006
168
#else
Mar 10, 2002
Mar 10, 2002
169
ShowWindow(SDL_Window, SW_RESTORE);
Mar 11, 2006
Mar 11, 2006
170
171
#endif
Mar 4, 2006
Mar 4, 2006
172
173
#ifndef NO_CHANGEDISPLAYSETTINGS
#ifndef _WIN32_WCE
Mar 10, 2002
Mar 10, 2002
174
175
ChangeDisplaySettings(&SDL_fullscreen_mode, CDS_FULLSCREEN);
#endif
Mar 4, 2006
Mar 4, 2006
176
#endif /* NO_CHANGEDISPLAYSETTINGS */
Mar 10, 2002
Mar 10, 2002
177
178
179
}
static void SDL_RestoreDesktopMode(void)
{
Mar 11, 2006
Mar 11, 2006
180
181
#ifdef _WIN32_WCE
Feb 16, 2009
Feb 16, 2009
182
183
#ifdef SDL_VIDEO_DRIVER_GAPI
Mar 11, 2006
Mar 11, 2006
184
185
186
SDL_VideoDevice *this = current_video;
if(SDL_strcmp(this->name, "gapi") == 0)
{
Feb 16, 2009
Feb 16, 2009
187
if( !this->hidden->gapiInfo->suspended )
Mar 11, 2006
Mar 11, 2006
188
{
Feb 16, 2009
Feb 16, 2009
189
this->hidden->gapiInfo->suspended = 1;
Mar 11, 2006
Mar 11, 2006
190
191
}
}
Feb 16, 2009
Feb 16, 2009
192
193
#endif
Mar 11, 2006
Mar 11, 2006
194
195
#else
/* WinCE does not have a taskbar, so minimizing is not convenient */
Mar 10, 2002
Mar 10, 2002
196
ShowWindow(SDL_Window, SW_MINIMIZE);
Mar 11, 2006
Mar 11, 2006
197
198
#endif
Mar 4, 2006
Mar 4, 2006
199
200
#ifndef NO_CHANGEDISPLAYSETTINGS
#ifndef _WIN32_WCE
Mar 10, 2002
Mar 10, 2002
201
202
ChangeDisplaySettings(NULL, 0);
#endif
Mar 4, 2006
Mar 4, 2006
203
#endif /* NO_CHANGEDISPLAYSETTINGS */
Mar 10, 2002
Mar 10, 2002
204
205
}
Apr 26, 2001
Apr 26, 2001
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
#ifdef WM_MOUSELEAVE
/*
Special code to handle mouse leave events - this sucks...
http://support.microsoft.com/support/kb/articles/q183/1/07.asp
TrackMouseEvent() is only available on Win98 and WinNT.
_TrackMouseEvent() is available on Win95, but isn't yet in the mingw32
development environment, and only works on systems that have had IE 3.0
or newer installed on them (which is not the case with the base Win95).
Therefore, we implement our own version of _TrackMouseEvent() which
uses our own implementation if TrackMouseEvent() is not available.
*/
static BOOL (WINAPI *_TrackMouseEvent)(TRACKMOUSEEVENT *ptme) = NULL;
static VOID CALLBACK
TrackMouseTimerProc(HWND hWnd, UINT uMsg, UINT idEvent, DWORD dwTime)
{
Oct 13, 2011
Oct 13, 2011
223
union { RECT rect; POINT pt; } rectpt; /* prevent type-punning issue. */
Apr 26, 2001
Apr 26, 2001
224
225
POINT pt;
Oct 13, 2011
Oct 13, 2011
226
227
GetClientRect(hWnd, &rectpt.rect);
MapWindowPoints(hWnd, NULL, &rectpt.pt, 2);
Apr 26, 2001
Apr 26, 2001
228
GetCursorPos(&pt);
Oct 13, 2011
Oct 13, 2011
229
if ( !PtInRect(&rectpt.rect, pt) || (WindowFromPoint(pt) != hWnd) ) {
Apr 26, 2001
Apr 26, 2001
230
231
232
233
234
235
236
237
238
239
if ( !KillTimer(hWnd, idEvent) ) {
/* Error killing the timer! */
}
PostMessage(hWnd, WM_MOUSELEAVE, 0, 0);
}
}
static BOOL WINAPI WIN_TrackMouseEvent(TRACKMOUSEEVENT *ptme)
{
if ( ptme->dwFlags == TME_LEAVE ) {
return SetTimer(ptme->hwndTrack, ptme->dwFlags, 100,
Mar 1, 2006
Mar 1, 2006
240
(TIMERPROC)TrackMouseTimerProc) != 0;
Apr 26, 2001
Apr 26, 2001
241
242
243
244
245
}
return FALSE;
}
#endif /* WM_MOUSELEAVE */
Aug 9, 2001
Aug 9, 2001
246
247
248
/* The main Win32 event handler
DJM: This is no longer static as (DX5/DIB)_CreateWindow needs it
*/
Mar 1, 2006
Mar 1, 2006
249
LRESULT CALLBACK WinMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
Apr 26, 2001
Apr 26, 2001
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
{
SDL_VideoDevice *this = current_video;
static int mouse_pressed = 0;
#ifdef WMMSG_DEBUG
fprintf(stderr, "Received windows message: ");
if ( msg > MAX_WMMSG ) {
fprintf(stderr, "%d", msg);
} else {
fprintf(stderr, "%s", wmtab[msg]);
}
fprintf(stderr, " -- 0x%X, 0x%X\n", wParam, lParam);
#endif
switch (msg) {
case WM_ACTIVATE: {
SDL_VideoDevice *this = current_video;
Jul 3, 2007
Jul 3, 2007
266
BOOL active, minimized;
Apr 26, 2001
Apr 26, 2001
267
268
269
Uint8 appstate;
minimized = HIWORD(wParam);
Jul 3, 2007
Jul 3, 2007
270
271
active = (LOWORD(wParam) != WA_INACTIVE) && !minimized;
if ( active ) {
Apr 26, 2001
Apr 26, 2001
272
273
/* Gain the following states */
appstate = SDL_APPACTIVE|SDL_APPINPUTFOCUS;
Dec 11, 2009
Dec 11, 2009
274
275
276
277
if ( !(SDL_GetAppState() & SDL_APPINPUTFOCUS) ) {
if ( this->input_grab != SDL_GRAB_OFF ) {
WIN_GrabInput(this, SDL_GRAB_ON);
}
Apr 11, 2002
Apr 11, 2002
278
279
280
if ( ! DDRAW_FULLSCREEN() ) {
DIB_SwapGamma(this);
}
Mar 10, 2002
Mar 10, 2002
281
282
283
if ( WINDIB_FULLSCREEN() ) {
SDL_RestoreGameMode();
}
Apr 26, 2001
Apr 26, 2001
284
}
Sep 29, 2005
Sep 29, 2005
285
#if defined(_WIN32_WCE)
Jul 3, 2007
Jul 3, 2007
286
287
288
289
290
291
292
if ( WINDIB_FULLSCREEN() ) {
LoadAygshell();
if( SHFullScreen )
SHFullScreen(SDL_Window, SHFS_HIDESTARTICON|SHFS_HIDETASKBAR|SHFS_HIDESIPBUTTON);
else
ShowWindow(FindWindow(TEXT("HHTaskBar"),NULL),SW_HIDE);
}
Sep 29, 2005
Sep 29, 2005
293
#endif
Apr 26, 2001
Apr 26, 2001
294
295
296
297
298
299
300
posted = SDL_PrivateAppActive(1, appstate);
} else {
/* Lose the following states */
appstate = SDL_APPINPUTFOCUS;
if ( minimized ) {
appstate |= SDL_APPACTIVE;
}
Dec 11, 2009
Dec 11, 2009
301
Apr 26, 2001
Apr 26, 2001
302
if ( SDL_GetAppState() & SDL_APPINPUTFOCUS ) {
Dec 11, 2009
Dec 11, 2009
303
304
305
if ( this->input_grab != SDL_GRAB_OFF ) {
WIN_GrabInput(this, SDL_GRAB_OFF);
}
Apr 11, 2002
Apr 11, 2002
306
307
308
if ( ! DDRAW_FULLSCREEN() ) {
DIB_SwapGamma(this);
}
Mar 10, 2002
Mar 10, 2002
309
if ( WINDIB_FULLSCREEN() ) {
Dec 11, 2009
Dec 11, 2009
310
appstate |= SDL_APPMOUSEFOCUS;
Mar 10, 2002
Mar 10, 2002
311
SDL_RestoreDesktopMode();
Sep 29, 2005
Sep 29, 2005
312
313
#if defined(_WIN32_WCE)
LoadAygshell();
Mar 11, 2006
Mar 11, 2006
314
if( SHFullScreen )
Sep 29, 2005
Sep 29, 2005
315
316
317
318
SHFullScreen(SDL_Window, SHFS_SHOWSTARTICON|SHFS_SHOWTASKBAR|SHFS_SHOWSIPBUTTON);
else
ShowWindow(FindWindow(TEXT("HHTaskBar"),NULL),SW_SHOW);
#endif
Mar 10, 2002
Mar 10, 2002
319
}
Apr 26, 2001
Apr 26, 2001
320
321
322
}
posted = SDL_PrivateAppActive(0, appstate);
}
Jul 3, 2007
Jul 3, 2007
323
WIN_Activate(this, active, minimized);
Apr 26, 2001
Apr 26, 2001
324
325
326
327
328
329
330
return(0);
}
break;
case WM_MOUSEMOVE: {
#ifdef WM_MOUSELEAVE
Dec 11, 2009
Dec 11, 2009
331
if ( SDL_VideoSurface ) {
Apr 13, 2009
Apr 13, 2009
332
333
334
/* mouse has entered the window */
if ( !(SDL_GetAppState() & SDL_APPMOUSEFOCUS) ) {
Apr 26, 2001
Apr 26, 2001
335
336
337
338
339
340
TRACKMOUSEEVENT tme;
tme.cbSize = sizeof(tme);
tme.dwFlags = TME_LEAVE;
tme.hwndTrack = SDL_Window;
_TrackMouseEvent(&tme);
Apr 13, 2009
Apr 13, 2009
341
342
}
}
Apr 26, 2001
Apr 26, 2001
343
344
#endif /* WM_MOUSELEAVE */
Apr 13, 2009
Apr 13, 2009
345
346
347
/* Mouse motion is handled in DIB_PumpEvents or
* DX5_PumpEvents, depending on the video driver
* in use */
Apr 26, 2001
Apr 26, 2001
348
Apr 13, 2009
Apr 13, 2009
349
posted = SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS);
Apr 26, 2001
Apr 26, 2001
350
351
352
353
354
355
}
return(0);
#ifdef WM_MOUSELEAVE
case WM_MOUSELEAVE: {
Dec 11, 2009
Dec 11, 2009
356
if ( SDL_VideoSurface ) {
Apr 26, 2001
Apr 26, 2001
357
358
359
360
361
362
363
364
365
366
367
368
/* mouse has left the window */
posted = SDL_PrivateAppActive(0, SDL_APPMOUSEFOCUS);
}
}
return(0);
#endif /* WM_MOUSELEAVE */
case WM_LBUTTONDOWN:
case WM_LBUTTONUP:
case WM_MBUTTONDOWN:
case WM_MBUTTONUP:
case WM_RBUTTONDOWN:
Jun 16, 2007
Jun 16, 2007
369
370
371
case WM_RBUTTONUP:
case WM_XBUTTONDOWN:
case WM_XBUTTONUP: {
Apr 26, 2001
Apr 26, 2001
372
/* Mouse is handled by DirectInput when fullscreen */
Apr 2, 2009
Apr 2, 2009
373
if ( SDL_VideoSurface && ! DINPUT() ) {
Jun 16, 2007
Jun 16, 2007
374
WORD xbuttonval = 0;
Apr 26, 2001
Apr 26, 2001
375
Uint8 button, state;
Feb 4, 2011
Feb 4, 2011
376
int x, y;
Apr 26, 2001
Apr 26, 2001
377
Aug 9, 2001
Aug 9, 2001
378
379
380
381
382
383
384
/* DJM:
We want the SDL window to take focus so that
it acts like a normal windows "component"
(e.g. gains keyboard focus on a mouse click).
*/
SetFocus(SDL_Window);
Apr 26, 2001
Apr 26, 2001
385
386
387
/* Figure out which button to use */
switch (msg) {
case WM_LBUTTONDOWN:
Aug 20, 2002
Aug 20, 2002
388
button = SDL_BUTTON_LEFT;
Apr 26, 2001
Apr 26, 2001
389
390
391
state = SDL_PRESSED;
break;
case WM_LBUTTONUP:
Aug 20, 2002
Aug 20, 2002
392
button = SDL_BUTTON_LEFT;
Apr 26, 2001
Apr 26, 2001
393
394
395
state = SDL_RELEASED;
break;
case WM_MBUTTONDOWN:
Aug 20, 2002
Aug 20, 2002
396
button = SDL_BUTTON_MIDDLE;
Apr 26, 2001
Apr 26, 2001
397
398
399
state = SDL_PRESSED;
break;
case WM_MBUTTONUP:
Aug 20, 2002
Aug 20, 2002
400
button = SDL_BUTTON_MIDDLE;
Apr 26, 2001
Apr 26, 2001
401
402
403
state = SDL_RELEASED;
break;
case WM_RBUTTONDOWN:
Aug 20, 2002
Aug 20, 2002
404
button = SDL_BUTTON_RIGHT;
Apr 26, 2001
Apr 26, 2001
405
406
407
state = SDL_PRESSED;
break;
case WM_RBUTTONUP:
Aug 20, 2002
Aug 20, 2002
408
button = SDL_BUTTON_RIGHT;
Apr 26, 2001
Apr 26, 2001
409
410
state = SDL_RELEASED;
break;
Jun 16, 2007
Jun 16, 2007
411
412
case WM_XBUTTONDOWN:
xbuttonval = GET_XBUTTON_WPARAM(wParam);
Dec 29, 2007
Dec 29, 2007
413
button = SDL_BUTTON_X1 + xbuttonval - 1;
Jun 16, 2007
Jun 16, 2007
414
415
416
417
state = SDL_PRESSED;
break;
case WM_XBUTTONUP:
xbuttonval = GET_XBUTTON_WPARAM(wParam);
Dec 29, 2007
Dec 29, 2007
418
button = SDL_BUTTON_X1 + xbuttonval - 1;
Jun 16, 2007
Jun 16, 2007
419
420
state = SDL_RELEASED;
break;
Apr 26, 2001
Apr 26, 2001
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
default:
/* Eh? Unknown button? */
return(0);
}
if ( state == SDL_PRESSED ) {
/* Grab mouse so we get up events */
if ( ++mouse_pressed > 0 ) {
SetCapture(hwnd);
}
} else {
/* Release mouse after all up events */
if ( --mouse_pressed <= 0 ) {
ReleaseCapture();
mouse_pressed = 0;
}
}
Jan 24, 2011
Jan 24, 2011
437
438
439
440
441
442
443
444
445
446
447
448
449
if ( mouse_relative ) {
/* RJR: March 28, 2000
report internal mouse position if in relative mode */
x = 0; y = 0;
} else {
x = (Sint16)LOWORD(lParam);
y = (Sint16)HIWORD(lParam);
#ifdef _WIN32_WCE
if (SDL_VideoSurface)
GapiTransform(this->hidden->userOrientation,
this->hidden->hiresFix, &x, &y);
#endif
}
Apr 26, 2001
Apr 26, 2001
450
posted = SDL_PrivateMouseButton(
Jan 24, 2011
Jan 24, 2011
451
state, button, x, y);
Jun 16, 2007
Jun 16, 2007
452
453
454
455
456
457
458
459
460
461
462
463
464
/*
* MSDN says:
* "Unlike the WM_LBUTTONUP, WM_MBUTTONUP, and WM_RBUTTONUP
* messages, an application should return TRUE from [an
* XBUTTON message] if it processes it. Doing so will allow
* software that simulates this message on Microsoft Windows
* systems earlier than Windows 2000 to determine whether
* the window procedure processed the message or called
* DefWindowProc to process it.
*/
if (xbuttonval > 0)
return(TRUE);
Apr 26, 2001
Apr 26, 2001
465
466
467
468
}
}
return(0);
Jun 16, 2001
Jun 16, 2001
469
470
471
#if (_WIN32_WINNT >= 0x0400) || (_WIN32_WINDOWS > 0x0400)
case WM_MOUSEWHEEL:
Apr 2, 2009
Apr 2, 2009
472
if ( SDL_VideoSurface && ! DINPUT() ) {
Jun 16, 2001
Jun 16, 2001
473
int move = (short)HIWORD(wParam);
Aug 31, 2001
Aug 31, 2001
474
475
476
if ( move ) {
Uint8 button;
if ( move > 0 )
Aug 19, 2002
Aug 19, 2002
477
button = SDL_BUTTON_WHEELUP;
Aug 31, 2001
Aug 31, 2001
478
else
Aug 19, 2002
Aug 19, 2002
479
button = SDL_BUTTON_WHEELDOWN;
Jun 16, 2001
Jun 16, 2001
480
posted = SDL_PrivateMouseButton(
Aug 31, 2001
Aug 31, 2001
481
SDL_PRESSED, button, 0, 0);
Apr 8, 2002
Apr 8, 2002
482
483
posted |= SDL_PrivateMouseButton(
SDL_RELEASED, button, 0, 0);
Jun 16, 2001
Jun 16, 2001
484
485
486
487
488
}
}
return(0);
#endif
Apr 26, 2001
Apr 26, 2001
489
490
491
492
493
494
495
496
497
#ifdef WM_GETMINMAXINFO
/* This message is sent as a way for us to "check" the values
* of a position change. If we don't like it, we can adjust
* the values before they are changed.
*/
case WM_GETMINMAXINFO: {
MINMAXINFO *info;
RECT size;
int x, y;
Jan 20, 2003
Jan 20, 2003
498
int style;
Apr 26, 2001
Apr 26, 2001
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
int width;
int height;
/* We don't want to clobber an internal resize */
if ( SDL_resizing )
return(0);
/* We allow resizing with the SDL_RESIZABLE flag */
if ( SDL_PublicSurface &&
(SDL_PublicSurface->flags & SDL_RESIZABLE) ) {
return(0);
}
/* Get the current position of our window */
GetWindowRect(SDL_Window, &size);
x = size.left;
y = size.top;
/* Calculate current width and height of our window */
size.top = 0;
size.left = 0;
if ( SDL_PublicSurface != NULL ) {
size.bottom = SDL_PublicSurface->h;
size.right = SDL_PublicSurface->w;
} else {
size.bottom = 0;
size.right = 0;
}
Jan 20, 2003
Jan 20, 2003
527
528
529
530
531
532
/* 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.
*/
Mar 7, 2006
Mar 7, 2006
533
style = GetWindowLong(hwnd, GWL_STYLE);
Jan 20, 2003
Jan 20, 2003
534
535
536
537
538
539
AdjustWindowRect(
&size,
style,
style & WS_CHILDWINDOW ? FALSE
: GetMenu(hwnd) != NULL);
Apr 26, 2001
Apr 26, 2001
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
width = size.right - size.left;
height = size.bottom - size.top;
/* Fix our size to the current size */
info = (MINMAXINFO *)lParam;
info->ptMaxSize.x = width;
info->ptMaxSize.y = height;
info->ptMaxPosition.x = x;
info->ptMaxPosition.y = y;
info->ptMinTrackSize.x = width;
info->ptMinTrackSize.y = height;
info->ptMaxTrackSize.x = width;
info->ptMaxTrackSize.y = height;
}
return(0);
#endif /* WM_GETMINMAXINFO */
Sep 27, 2009
Sep 27, 2009
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
case WM_WINDOWPOSCHANGING: {
WINDOWPOS *windowpos = (WINDOWPOS*)lParam;
/* When menu is at the side or top, Windows likes
to try to reposition the fullscreen window when
changing video modes.
*/
if ( !SDL_resizing &&
SDL_PublicSurface &&
(SDL_PublicSurface->flags & SDL_FULLSCREEN) ) {
windowpos->x = 0;
windowpos->y = 0;
}
}
return(0);
Aug 19, 2002
Aug 19, 2002
573
case WM_WINDOWPOSCHANGED: {
Apr 26, 2001
Apr 26, 2001
574
SDL_VideoDevice *this = current_video;
Oct 13, 2011
Oct 13, 2011
575
POINT pt;
Aug 19, 2002
Aug 19, 2002
576
int w, h;
Apr 26, 2001
Apr 26, 2001
577
578
GetClientRect(SDL_Window, &SDL_bounds);
Oct 13, 2011
Oct 13, 2011
579
580
581
582
583
584
585
586
587
588
589
590
591
592
/* avoiding type-punning here... */
pt.x = SDL_bounds.left;
pt.y = SDL_bounds.top;
ClientToScreen(SDL_Window, &pt);
SDL_bounds.left = pt.x;
SDL_bounds.top = pt.y;
pt.x = SDL_bounds.right;
pt.y = SDL_bounds.bottom;
ClientToScreen(SDL_Window, &pt);
SDL_bounds.right = pt.x;
SDL_bounds.bottom = pt.y;
Jan 29, 2006
Jan 29, 2006
593
594
595
596
597
598
if ( !SDL_resizing && !IsZoomed(SDL_Window) &&
SDL_PublicSurface &&
!(SDL_PublicSurface->flags & SDL_FULLSCREEN) ) {
SDL_windowX = SDL_bounds.left;
SDL_windowY = SDL_bounds.top;
}
Aug 19, 2002
Aug 19, 2002
599
600
w = SDL_bounds.right-SDL_bounds.left;
h = SDL_bounds.bottom-SDL_bounds.top;
Apr 26, 2001
Apr 26, 2001
601
602
603
if ( this->input_grab != SDL_GRAB_OFF ) {
ClipCursor(&SDL_bounds);
}
Aug 19, 2002
Aug 19, 2002
604
if ( SDL_PublicSurface &&
Apr 26, 2001
Apr 26, 2001
605
(SDL_PublicSurface->flags & SDL_RESIZABLE) ) {
Aug 19, 2002
Aug 19, 2002
606
SDL_PrivateResize(w, h);
Apr 26, 2001
Apr 26, 2001
607
608
609
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
641
642
643
644
645
646
647
648
649
}
}
break;
/* We need to set the cursor */
case WM_SETCURSOR: {
Uint16 hittest;
hittest = LOWORD(lParam);
if ( hittest == HTCLIENT ) {
SetCursor(SDL_hcursor);
return(TRUE);
}
}
break;
/* We are about to get palette focus! */
case WM_QUERYNEWPALETTE: {
WIN_RealizePalette(current_video);
return(TRUE);
}
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: {
HDC hdc;
PAINTSTRUCT ps;
hdc = BeginPaint(SDL_Window, &ps);
if ( current_video->screen &&
!(current_video->screen->flags & SDL_OPENGL) ) {
WIN_WinPAINT(current_video, hdc);
}
EndPaint(SDL_Window, &ps);
}
return(0);
Aug 9, 2001
Aug 9, 2001
650
/* DJM: Send an expose event in this case */
Apr 26, 2001
Apr 26, 2001
651
case WM_ERASEBKGND: {
Aug 9, 2001
Aug 9, 2001
652
posted = SDL_PrivateExpose();
Apr 26, 2001
Apr 26, 2001
653
}
Aug 9, 2001
Aug 9, 2001
654
return(0);
Apr 26, 2001
Apr 26, 2001
655
656
657
658
659
660
661
662
663
664
665
666
case WM_CLOSE: {
if ( (posted = SDL_PrivateQuit()) )
PostQuitMessage(0);
}
return(0);
case WM_DESTROY: {
PostQuitMessage(0);
}
return(0);
Jan 26, 2006
Jan 26, 2006
667
#ifndef NO_GETKEYBOARDSTATE
Oct 13, 2011
Oct 13, 2011
668
669
case WM_INPUTLANGCHANGE:
#ifndef _WIN64
Jan 19, 2006
Jan 19, 2006
670
codepage = GetCodePage();
Oct 13, 2011
Oct 13, 2011
671
#endif
Jan 19, 2006
Jan 19, 2006
672
return(TRUE);
Jan 26, 2006
Jan 26, 2006
673
#endif
Jan 19, 2006
Jan 19, 2006
674
Apr 26, 2001
Apr 26, 2001
675
676
677
678
679
680
681
682
683
684
685
686
default: {
/* Special handling by the video driver */
if (HandleMessage) {
return(HandleMessage(current_video,
hwnd, msg, wParam, lParam));
}
}
break;
}
return(DefWindowProc(hwnd, msg, wParam, lParam));
}
Aug 9, 2001
Aug 9, 2001
687
/* Allow the application handle to be stored and retrieved later */
Aug 9, 2001
Aug 9, 2001
688
static void *SDL_handle = NULL;
Aug 9, 2001
Aug 9, 2001
689
Aug 9, 2001
Aug 9, 2001
690
void SDL_SetModuleHandle(void *handle)
Aug 9, 2001
Aug 9, 2001
691
692
693
{
SDL_handle = handle;
}
Aug 9, 2001
Aug 9, 2001
694
void *SDL_GetModuleHandle(void)
Aug 9, 2001
Aug 9, 2001
695
696
697
698
699
700
701
702
703
704
705
{
void *handle;
if ( SDL_handle ) {
handle = SDL_handle;
} else {
handle = GetModuleHandle(NULL);
}
return(handle);
}
Apr 26, 2001
Apr 26, 2001
706
/* This allows the SDL_WINDOWID hack */
Jan 29, 2006
Jan 29, 2006
707
BOOL SDL_windowid = FALSE;
Apr 26, 2001
Apr 26, 2001
708
Sep 27, 2005
Sep 27, 2005
709
710
static int app_registered = 0;
Apr 26, 2001
Apr 26, 2001
711
/* Register the class for this application -- exported for winmain.c */
Aug 9, 2001
Aug 9, 2001
712
int SDL_RegisterApp(char *name, Uint32 style, void *hInst)
Apr 26, 2001
Apr 26, 2001
713
714
715
716
717
718
719
{
WNDCLASS class;
#ifdef WM_MOUSELEAVE
HMODULE handle;
#endif
/* Only do this once... */
Sep 27, 2005
Sep 27, 2005
720
if ( app_registered ) {
Mar 12, 2006
Mar 12, 2006
721
++app_registered;
Apr 26, 2001
Apr 26, 2001
722
723
724
return(0);
}
Jan 29, 2006
Jan 29, 2006
725
726
727
728
729
730
731
#ifndef CS_BYTEALIGNCLIENT
#define CS_BYTEALIGNCLIENT 0
#endif
if ( ! name && ! SDL_Appname ) {
name = "SDL_app";
SDL_Appstyle = CS_BYTEALIGNCLIENT;
SDL_Instance = hInst ? hInst : SDL_GetModuleHandle();
Apr 26, 2001
Apr 26, 2001
732
733
}
Jan 29, 2006
Jan 29, 2006
734
if ( name ) {
Apr 26, 2001
Apr 26, 2001
735
#ifdef _WIN32_WCE
Aug 20, 2002
Aug 20, 2002
736
/* WinCE uses the UNICODE version */
Mar 13, 2006
Mar 13, 2006
737
SDL_Appname = SDL_iconv_utf8_ucs2(name);
Apr 26, 2001
Apr 26, 2001
738
#else
Jul 5, 2007
Jul 5, 2007
739
SDL_Appname = SDL_iconv_utf8_locale(name);
Apr 26, 2001
Apr 26, 2001
740
#endif /* _WIN32_WCE */
Jan 29, 2006
Jan 29, 2006
741
742
743
744
745
746
747
748
SDL_Appstyle = style;
SDL_Instance = hInst ? hInst : SDL_GetModuleHandle();
}
/* Register the application class */
class.hCursor = NULL;
class.hIcon = LoadImage(SDL_Instance, SDL_Appname,
IMAGE_ICON,
Aug 20, 2002
Aug 20, 2002
749
750
751
0, 0, LR_DEFAULTCOLOR);
class.lpszMenuName = NULL;
class.lpszClassName = SDL_Appname;
Apr 26, 2001
Apr 26, 2001
752
class.hbrBackground = NULL;
Jan 29, 2006
Jan 29, 2006
753
754
class.hInstance = SDL_Instance;
class.style = SDL_Appstyle;
Feb 16, 2006
Feb 16, 2006
755
#if SDL_VIDEO_OPENGL
Apr 26, 2001
Apr 26, 2001
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
class.style |= CS_OWNDC;
#endif
class.lpfnWndProc = WinMessage;
class.cbWndExtra = 0;
class.cbClsExtra = 0;
if ( ! RegisterClass(&class) ) {
SDL_SetError("Couldn't register application class");
return(-1);
}
#ifdef WM_MOUSELEAVE
/* Get the version of TrackMouseEvent() we use */
_TrackMouseEvent = NULL;
handle = GetModuleHandle("USER32.DLL");
if ( handle ) {
_TrackMouseEvent = (BOOL (WINAPI *)(TRACKMOUSEEVENT *))GetProcAddress(handle, "TrackMouseEvent");
}
if ( _TrackMouseEvent == NULL ) {
_TrackMouseEvent = WIN_TrackMouseEvent;
}
#endif /* WM_MOUSELEAVE */
Jan 26, 2006
Jan 26, 2006
778
#ifndef NO_GETKEYBOARDSTATE
Oct 13, 2011
Oct 13, 2011
779
#ifndef _WIN64
Jan 19, 2006
Jan 19, 2006
780
781
/* Initialise variables for SDL_ToUnicode() */
codepage = GetCodePage();
Sep 12, 2011
Sep 12, 2011
782
783
784
/* Cygwin headers don't match windows.h, so we have to cast around a
const issue here... */
Sep 12, 2011
Sep 12, 2011
785
SDL_ToUnicode = Is9xME() ? ToUnicode9xME : (ToUnicodeFN) ToUnicode;
Jan 26, 2006
Jan 26, 2006
786
#endif
Oct 13, 2011
Oct 13, 2011
787
#endif /* NO_GETKEYBOARDSTATE */
Jan 19, 2006
Jan 19, 2006
788
Sep 27, 2005
Sep 27, 2005
789
app_registered = 1;
Apr 26, 2001
Apr 26, 2001
790
791
792
return(0);
}
Jan 29, 2006
Jan 29, 2006
793
/* Unregisters the windowclass registered in SDL_RegisterApp above. */
Sep 28, 2005
Sep 28, 2005
794
void SDL_UnregisterApp()
Sep 27, 2005
Sep 27, 2005
795
796
797
798
{
WNDCLASS class;
/* SDL_RegisterApp might not have been called before */
Mar 12, 2006
Mar 12, 2006
799
800
801
802
803
if ( !app_registered ) {
return;
}
--app_registered;
if ( app_registered == 0 ) {
Jan 29, 2006
Jan 29, 2006
804
805
/* Check for any registered window classes. */
if ( GetClassInfo(SDL_Instance, SDL_Appname, &class) ) {
Sep 27, 2005
Sep 27, 2005
806
807
UnregisterClass(SDL_Appname, SDL_Instance);
}
Mar 12, 2006
Mar 12, 2006
808
809
SDL_free(SDL_Appname);
SDL_Appname = NULL;
Sep 27, 2005
Sep 27, 2005
810
811
812
}
}
Jan 26, 2006
Jan 26, 2006
813
#ifndef NO_GETKEYBOARDSTATE
Oct 13, 2011
Oct 13, 2011
814
#ifndef _WIN64
Jan 19, 2006
Jan 19, 2006
815
816
817
818
819
820
/* JFP: Implementation of ToUnicode() that works on 9x/ME/2K/XP */
static int Is9xME()
{
OSVERSIONINFO info;
Feb 7, 2006
Feb 7, 2006
821
SDL_memset(&info, 0, sizeof(info));
Jan 19, 2006
Jan 19, 2006
822
823
824
825
826
827
828
829
830
831
832
833
834
835
info.dwOSVersionInfoSize = sizeof(info);
if (!GetVersionEx(&info)) {
return 0;
}
return (info.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS);
}
static int GetCodePage()
{
char buff[8];
int lcid = MAKELCID(LOWORD(GetKeyboardLayout(0)), SORT_DEFAULT);
int cp = GetACP();
if (GetLocaleInfo(lcid, LOCALE_IDEFAULTANSICODEPAGE, buff, sizeof(buff))) {
Feb 7, 2006
Feb 7, 2006
836
cp = SDL_atoi(buff);
Jan 19, 2006
Jan 19, 2006
837
838
839
840
}
return cp;
}
Sep 11, 2011
Sep 11, 2011
841
static int WINAPI ToUnicode9xME(UINT vkey, UINT scancode, const BYTE *keystate, LPWSTR wchars, int wsize, UINT flags)
Jan 19, 2006
Jan 19, 2006
842
843
844
{
BYTE chars[2];
Sep 11, 2011
Sep 11, 2011
845
846
/* arg #3 should be const BYTE *, but cygwin lists it as PBYTE. */
if (ToAsciiEx(vkey, scancode, (PBYTE) keystate, (WORD*)chars, 0, GetKeyboardLayout(0)) == 1) {
Oct 13, 2011
Oct 13, 2011
847
return MultiByteToWideChar(codepage, 0, (LPCSTR) chars, 1, wchars, wsize);
Jan 19, 2006
Jan 19, 2006
848
849
850
}
return 0;
}
Oct 13, 2011
Oct 13, 2011
851
#endif
Jan 26, 2006
Jan 26, 2006
852
#endif /* !NO_GETKEYBOARDSTATE */