Skip to content

Latest commit

 

History

History
634 lines (569 loc) · 15.4 KB

SDL_sysevents.c

File metadata and controls

634 lines (569 loc) · 15.4 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997, 1998, 1999 Sam Lantinga
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
*/
#ifdef SAVE_RCSID
static char rcsid =
"@(#) $Id$";
#endif
#include <stdlib.h>
#include <stdio.h>
#include <windows.h>
#include "SDL_getenv.h"
#include "SDL_events.h"
#include "SDL_video.h"
#include "SDL_error.h"
#include "SDL_syswm.h"
#include "SDL_sysevents.h"
#include "SDL_events_c.h"
#include "SDL_sysvideo.h"
#include "SDL_lowvideo.h"
#include "SDL_syswm_c.h"
#include "SDL_main.h"
#ifdef WMMSG_DEBUG
#include "wmmsg.h"
#endif
#ifdef _WIN32_WCE
#define NO_GETKEYBOARDSTATE
Aug 20, 2002
Aug 20, 2002
50
#define NO_CHANGEDISPLAYSETTINGS
Apr 26, 2001
Apr 26, 2001
51
52
53
#endif
/* The window we use for everything... */
Aug 20, 2002
Aug 20, 2002
54
55
56
57
58
#ifdef _WIN32_WCE
LPWSTR SDL_Appname = NULL;
#else
LPSTR SDL_Appname = NULL;
#endif
Apr 26, 2001
Apr 26, 2001
59
60
61
62
63
64
HINSTANCE SDL_Instance = NULL;
HWND SDL_Window = NULL;
RECT SDL_bounds = {0, 0, 0, 0};
int SDL_resizing = 0;
int mouse_relative = 0;
int posted = 0;
Mar 10, 2002
Mar 10, 2002
65
66
67
#ifndef NO_CHANGEDISPLAYSETTINGS
DEVMODE SDL_fullscreen_mode;
#endif
Apr 11, 2002
Apr 11, 2002
68
WORD *gamma_saved = NULL;
Apr 26, 2001
Apr 26, 2001
69
70
71
72
73
74
75
76
/* Functions called by the message processing function */
LONG
(*HandleMessage)(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)=NULL;
void (*WIN_RealizePalette)(_THIS);
void (*WIN_PaletteChanged)(_THIS, HWND window);
void (*WIN_WinPAINT)(_THIS, HDC hdc);
Apr 11, 2002
Apr 11, 2002
77
extern void DIB_SwapGamma(_THIS);
Apr 26, 2001
Apr 26, 2001
78
Mar 10, 2002
Mar 10, 2002
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
static void SDL_RestoreGameMode(void)
{
#ifndef NO_CHANGEDISPLAYSETTINGS
ShowWindow(SDL_Window, SW_RESTORE);
ChangeDisplaySettings(&SDL_fullscreen_mode, CDS_FULLSCREEN);
#endif
}
static void SDL_RestoreDesktopMode(void)
{
#ifndef NO_CHANGEDISPLAYSETTINGS
ShowWindow(SDL_Window, SW_MINIMIZE);
ChangeDisplaySettings(NULL, 0);
#endif
}
Apr 26, 2001
Apr 26, 2001
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#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)
{
RECT rect;
POINT pt;
GetClientRect(hWnd, &rect);
MapWindowPoints(hWnd, NULL, (LPPOINT)&rect, 2);
GetCursorPos(&pt);
if ( !PtInRect(&rect, pt) || (WindowFromPoint(pt) != hWnd) ) {
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,
(TIMERPROC)TrackMouseTimerProc);
}
return FALSE;
}
#endif /* WM_MOUSELEAVE */
/* Function to retrieve the current keyboard modifiers */
static void WIN_GetKeyboardState(void)
{
#ifndef NO_GETKEYBOARDSTATE
SDLMod state;
BYTE keyboard[256];
Mar 31, 2002
Mar 31, 2002
140
Uint8 *kstate = SDL_GetKeyState(NULL);
Apr 26, 2001
Apr 26, 2001
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
state = KMOD_NONE;
if ( GetKeyboardState(keyboard) ) {
if ( keyboard[VK_LSHIFT] & 0x80) {
state |= KMOD_LSHIFT;
}
if ( keyboard[VK_RSHIFT] & 0x80) {
state |= KMOD_RSHIFT;
}
if ( keyboard[VK_LCONTROL] & 0x80) {
state |= KMOD_LCTRL;
}
if ( keyboard[VK_RCONTROL] & 0x80) {
state |= KMOD_RCTRL;
}
if ( keyboard[VK_LMENU] & 0x80) {
state |= KMOD_LALT;
}
if ( keyboard[VK_RMENU] & 0x80) {
state |= KMOD_RALT;
}
Apr 26, 2001
Apr 26, 2001
162
if ( keyboard[VK_NUMLOCK] & 0x01) {
Apr 26, 2001
Apr 26, 2001
163
state |= KMOD_NUM;
Mar 31, 2002
Mar 31, 2002
164
kstate[SDLK_NUMLOCK] = SDL_PRESSED;
Apr 26, 2001
Apr 26, 2001
165
}
Apr 26, 2001
Apr 26, 2001
166
if ( keyboard[VK_CAPITAL] & 0x01) {
Apr 26, 2001
Apr 26, 2001
167
state |= KMOD_CAPS;
Mar 31, 2002
Mar 31, 2002
168
kstate[SDLK_CAPSLOCK] = SDL_PRESSED;
Apr 26, 2001
Apr 26, 2001
169
170
171
172
173
174
}
}
SDL_SetModState(state);
#endif /* !NO_GETKEYBOARDSTATE */
}
Aug 9, 2001
Aug 9, 2001
175
176
177
178
/* The main Win32 event handler
DJM: This is no longer static as (DX5/DIB)_CreateWindow needs it
*/
LONG CALLBACK WinMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
Apr 26, 2001
Apr 26, 2001
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
{
SDL_VideoDevice *this = current_video;
static int mouse_pressed = 0;
static int in_window = 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;
BOOL minimized;
Uint8 appstate;
minimized = HIWORD(wParam);
if ( !minimized && (LOWORD(wParam) != WA_INACTIVE) ) {
/* Gain the following states */
appstate = SDL_APPACTIVE|SDL_APPINPUTFOCUS;
if ( this->input_grab != SDL_GRAB_OFF ) {
WIN_GrabInput(this, SDL_GRAB_ON);
}
if ( !(SDL_GetAppState()&SDL_APPINPUTFOCUS) ) {
Apr 11, 2002
Apr 11, 2002
207
208
209
if ( ! DDRAW_FULLSCREEN() ) {
DIB_SwapGamma(this);
}
Mar 10, 2002
Mar 10, 2002
210
211
212
if ( WINDIB_FULLSCREEN() ) {
SDL_RestoreGameMode();
}
Apr 26, 2001
Apr 26, 2001
213
214
215
216
217
218
219
220
221
222
223
224
225
}
posted = SDL_PrivateAppActive(1, appstate);
WIN_GetKeyboardState();
} else {
/* Lose the following states */
appstate = SDL_APPINPUTFOCUS;
if ( minimized ) {
appstate |= SDL_APPACTIVE;
}
if ( this->input_grab != SDL_GRAB_OFF ) {
WIN_GrabInput(this, SDL_GRAB_OFF);
}
if ( SDL_GetAppState() & SDL_APPINPUTFOCUS ) {
Apr 11, 2002
Apr 11, 2002
226
227
228
if ( ! DDRAW_FULLSCREEN() ) {
DIB_SwapGamma(this);
}
Mar 10, 2002
Mar 10, 2002
229
230
231
if ( WINDIB_FULLSCREEN() ) {
SDL_RestoreDesktopMode();
}
Apr 26, 2001
Apr 26, 2001
232
233
234
235
236
237
238
239
240
241
}
posted = SDL_PrivateAppActive(0, appstate);
}
return(0);
}
break;
case WM_MOUSEMOVE: {
/* Mouse is handled by DirectInput when fullscreen */
Apr 29, 2001
Apr 29, 2001
242
if ( SDL_VideoSurface && ! DINPUT_FULLSCREEN() ) {
Apr 26, 2001
Apr 26, 2001
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
Sint16 x, y;
/* mouse has entered the window */
if ( ! in_window ) {
#ifdef WM_MOUSELEAVE
TRACKMOUSEEVENT tme;
tme.cbSize = sizeof(tme);
tme.dwFlags = TME_LEAVE;
tme.hwndTrack = SDL_Window;
_TrackMouseEvent(&tme);
#endif /* WM_MOUSELEAVE */
in_window = TRUE;
posted = SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS);
}
/* mouse has moved within the window */
x = LOWORD(lParam);
y = HIWORD(lParam);
if ( mouse_relative ) {
POINT center;
center.x = (SDL_VideoSurface->w/2);
center.y = (SDL_VideoSurface->h/2);
x -= (Sint16)center.x;
y -= (Sint16)center.y;
if ( x || y ) {
ClientToScreen(SDL_Window, &center);
SetCursorPos(center.x, center.y);
posted = SDL_PrivateMouseMotion(0, 1, x, y);
}
} else {
posted = SDL_PrivateMouseMotion(0, 0, x, y);
}
}
}
return(0);
#ifdef WM_MOUSELEAVE
case WM_MOUSELEAVE: {
/* Mouse is handled by DirectInput when fullscreen */
Apr 29, 2001
Apr 29, 2001
285
if ( SDL_VideoSurface && ! DINPUT_FULLSCREEN() ) {
Apr 26, 2001
Apr 26, 2001
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
/* mouse has left the window */
/* or */
/* Elvis has left the building! */
in_window = FALSE;
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:
case WM_RBUTTONUP: {
/* Mouse is handled by DirectInput when fullscreen */
Apr 29, 2001
Apr 29, 2001
303
if ( SDL_VideoSurface && ! DINPUT_FULLSCREEN() ) {
Apr 26, 2001
Apr 26, 2001
304
305
306
Sint16 x, y;
Uint8 button, state;
Aug 9, 2001
Aug 9, 2001
307
308
309
310
311
312
313
/* 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
314
315
316
/* Figure out which button to use */
switch (msg) {
case WM_LBUTTONDOWN:
Aug 20, 2002
Aug 20, 2002
317
button = SDL_BUTTON_LEFT;
Apr 26, 2001
Apr 26, 2001
318
319
320
state = SDL_PRESSED;
break;
case WM_LBUTTONUP:
Aug 20, 2002
Aug 20, 2002
321
button = SDL_BUTTON_LEFT;
Apr 26, 2001
Apr 26, 2001
322
323
324
state = SDL_RELEASED;
break;
case WM_MBUTTONDOWN:
Aug 20, 2002
Aug 20, 2002
325
button = SDL_BUTTON_MIDDLE;
Apr 26, 2001
Apr 26, 2001
326
327
328
state = SDL_PRESSED;
break;
case WM_MBUTTONUP:
Aug 20, 2002
Aug 20, 2002
329
button = SDL_BUTTON_MIDDLE;
Apr 26, 2001
Apr 26, 2001
330
331
332
state = SDL_RELEASED;
break;
case WM_RBUTTONDOWN:
Aug 20, 2002
Aug 20, 2002
333
button = SDL_BUTTON_RIGHT;
Apr 26, 2001
Apr 26, 2001
334
335
336
state = SDL_PRESSED;
break;
case WM_RBUTTONUP:
Aug 20, 2002
Aug 20, 2002
337
button = SDL_BUTTON_RIGHT;
Apr 26, 2001
Apr 26, 2001
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
state = SDL_RELEASED;
break;
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;
}
}
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);
}
posted = SDL_PrivateMouseButton(
state, button, x, y);
}
}
return(0);
Jun 16, 2001
Jun 16, 2001
370
371
372
373
374
#if (_WIN32_WINNT >= 0x0400) || (_WIN32_WINDOWS > 0x0400)
case WM_MOUSEWHEEL:
if ( SDL_VideoSurface && ! DINPUT_FULLSCREEN() ) {
int move = (short)HIWORD(wParam);
Aug 31, 2001
Aug 31, 2001
375
376
377
if ( move ) {
Uint8 button;
if ( move > 0 )
Aug 19, 2002
Aug 19, 2002
378
button = SDL_BUTTON_WHEELUP;
Aug 31, 2001
Aug 31, 2001
379
else
Aug 19, 2002
Aug 19, 2002
380
button = SDL_BUTTON_WHEELDOWN;
Jun 16, 2001
Jun 16, 2001
381
posted = SDL_PrivateMouseButton(
Aug 31, 2001
Aug 31, 2001
382
SDL_PRESSED, button, 0, 0);
Apr 8, 2002
Apr 8, 2002
383
384
posted |= SDL_PrivateMouseButton(
SDL_RELEASED, button, 0, 0);
Jun 16, 2001
Jun 16, 2001
385
386
387
388
389
}
}
return(0);
#endif
Apr 26, 2001
Apr 26, 2001
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
#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;
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;
}
AdjustWindowRect(&size, GetWindowLong(hwnd, GWL_STYLE),
FALSE);
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 */
Aug 19, 2002
Aug 19, 2002
446
case WM_WINDOWPOSCHANGED: {
Apr 26, 2001
Apr 26, 2001
447
SDL_VideoDevice *this = current_video;
Aug 19, 2002
Aug 19, 2002
448
int w, h;
Apr 26, 2001
Apr 26, 2001
449
450
451
452
GetClientRect(SDL_Window, &SDL_bounds);
ClientToScreen(SDL_Window, (LPPOINT)&SDL_bounds);
ClientToScreen(SDL_Window, (LPPOINT)&SDL_bounds+1);
Aug 19, 2002
Aug 19, 2002
453
454
w = SDL_bounds.right-SDL_bounds.left;
h = SDL_bounds.bottom-SDL_bounds.top;
Apr 26, 2001
Apr 26, 2001
455
456
457
if ( this->input_grab != SDL_GRAB_OFF ) {
ClipCursor(&SDL_bounds);
}
Aug 19, 2002
Aug 19, 2002
458
if ( SDL_PublicSurface &&
Apr 26, 2001
Apr 26, 2001
459
(SDL_PublicSurface->flags & SDL_RESIZABLE) ) {
Aug 19, 2002
Aug 19, 2002
460
SDL_PrivateResize(w, h);
Apr 26, 2001
Apr 26, 2001
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
}
}
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
504
/* DJM: Send an expose event in this case */
Apr 26, 2001
Apr 26, 2001
505
case WM_ERASEBKGND: {
Aug 9, 2001
Aug 9, 2001
506
posted = SDL_PrivateExpose();
Apr 26, 2001
Apr 26, 2001
507
}
Aug 9, 2001
Aug 9, 2001
508
return(0);
Apr 26, 2001
Apr 26, 2001
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
case WM_CLOSE: {
if ( (posted = SDL_PrivateQuit()) )
PostQuitMessage(0);
}
return(0);
case WM_DESTROY: {
PostQuitMessage(0);
}
return(0);
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
533
/* Allow the application handle to be stored and retrieved later */
Aug 9, 2001
Aug 9, 2001
534
static void *SDL_handle = NULL;
Aug 9, 2001
Aug 9, 2001
535
Aug 9, 2001
Aug 9, 2001
536
void SDL_SetModuleHandle(void *handle)
Aug 9, 2001
Aug 9, 2001
537
538
539
{
SDL_handle = handle;
}
Aug 9, 2001
Aug 9, 2001
540
void *SDL_GetModuleHandle(void)
Aug 9, 2001
Aug 9, 2001
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
{
void *handle;
if ( SDL_handle ) {
handle = SDL_handle;
} else {
/* Warning:
If SDL is built as a DLL, this will return a handle to
the DLL, not the application, and DirectInput may fail
to initialize.
*/
handle = GetModuleHandle(NULL);
}
return(handle);
}
Apr 26, 2001
Apr 26, 2001
557
558
559
560
/* This allows the SDL_WINDOWID hack */
const char *SDL_windowid = NULL;
/* Register the class for this application -- exported for winmain.c */
Aug 9, 2001
Aug 9, 2001
561
int SDL_RegisterApp(char *name, Uint32 style, void *hInst)
Apr 26, 2001
Apr 26, 2001
562
563
564
565
566
567
568
569
570
571
572
573
574
{
static int initialized = 0;
WNDCLASS class;
#ifdef WM_MOUSELEAVE
HMODULE handle;
#endif
/* Only do this once... */
if ( initialized ) {
return(0);
}
/* This function needs to be passed the correct process handle
Aug 9, 2001
Aug 9, 2001
575
by the application.
Apr 26, 2001
Apr 26, 2001
576
577
*/
if ( ! hInst ) {
Aug 9, 2001
Aug 9, 2001
578
hInst = SDL_GetModuleHandle();
Apr 26, 2001
Apr 26, 2001
579
580
581
582
583
}
/* Register the application class */
class.hCursor = NULL;
#ifdef _WIN32_WCE
Aug 20, 2002
Aug 20, 2002
584
{
Aug 20, 2002
Aug 20, 2002
585
586
587
588
/* WinCE uses the UNICODE version */
int nLen = strlen(name)+1;
SDL_Appname = malloc(nLen*2);
MultiByteToWideChar(CP_ACP, 0, name, -1, SDL_Appname, nLen);
Aug 20, 2002
Aug 20, 2002
589
}
Apr 26, 2001
Apr 26, 2001
590
#else
Aug 20, 2002
Aug 20, 2002
591
592
593
594
595
{
int nLen = strlen(name)+1;
SDL_Appname = malloc(nLen);
strcpy(SDL_Appname, name);
}
Apr 26, 2001
Apr 26, 2001
596
#endif /* _WIN32_WCE */
Aug 20, 2002
Aug 20, 2002
597
598
599
600
class.hIcon = LoadImage(hInst, SDL_Appname, IMAGE_ICON,
0, 0, LR_DEFAULTCOLOR);
class.lpszMenuName = NULL;
class.lpszClassName = SDL_Appname;
Apr 26, 2001
Apr 26, 2001
601
class.hbrBackground = NULL;
Aug 9, 2001
Aug 9, 2001
602
class.hInstance = hInst;
Apr 26, 2001
Apr 26, 2001
603
604
605
606
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
class.style = style;
#ifdef HAVE_OPENGL
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);
}
SDL_Instance = hInst;
#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 */
/* Check for SDL_WINDOWID hack */
SDL_windowid = getenv("SDL_WINDOWID");
initialized = 1;
return(0);
}