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

Latest commit

 

History

History
619 lines (525 loc) · 17.1 KB

SDL_cocoawindow.m

File metadata and controls

619 lines (525 loc) · 17.1 KB
 
Jul 24, 2006
Jul 24, 2006
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997-2006 Sam Lantinga
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
*/
#include "SDL_config.h"
#include "SDL_syswm.h"
#include "../SDL_sysvideo.h"
#include "../../events/SDL_keyboard_c.h"
#include "../../events/SDL_mouse_c.h"
#include "../../events/SDL_windowevents_c.h"
#include "SDL_cocoavideo.h"
static __inline__ void ConvertNSRect(NSRect *r)
{
Jul 25, 2006
Jul 25, 2006
34
/* FIXME: Cache the display used for this window */
Jul 24, 2006
Jul 24, 2006
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
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
r->origin.y = CGDisplayPixelsHigh(kCGDirectMainDisplay) - r->origin.y - r->size.height;
}
@implementation Cocoa_WindowListener
- (void)listen:(SDL_WindowData *)data
{
NSNotificationCenter *center;
_data = data;
center = [NSNotificationCenter defaultCenter];
[_data->window setNextResponder:self];
if ([_data->window delegate] != nil) {
[center addObserver:self selector:@selector(windowDisExpose:) name:NSWindowDidExposeNotification object:_data->window];
[center addObserver:self selector:@selector(windowDidMove:) name:NSWindowDidMoveNotification object:_data->window];
[center addObserver:self selector:@selector(windowDidResize:) name:NSWindowDidResizeNotification object:_data->window];
[center addObserver:self selector:@selector(windowDidMiniaturize:) name:NSWindowDidMiniaturizeNotification object:_data->window];
[center addObserver:self selector:@selector(windowDidDeminiaturize:) name:NSWindowDidDeminiaturizeNotification object:_data->window];
[center addObserver:self selector:@selector(windowDidBecomeKey:) name:NSWindowDidBecomeKeyNotification object:_data->window];
[center addObserver:self selector:@selector(windowDidResignKey:) name:NSWindowDidResignKeyNotification object:_data->window];
} else {
[_data->window setDelegate:self];
}
[center addObserver:self selector:@selector(windowDidHide:) name:NSApplicationDidHideNotification object:NSApp];
[center addObserver:self selector:@selector(windowDidUnhide:) name:NSApplicationDidUnhideNotification object:NSApp];
[_data->window setAcceptsMouseMovedEvents:YES];
}
- (void)close
{
NSNotificationCenter *center;
center = [NSNotificationCenter defaultCenter];
[_data->window setNextResponder:nil];
if ([_data->window delegate] != self) {
[center removeObserver:self name:NSWindowDidExposeNotification object:_data->window];
[center removeObserver:self name:NSWindowDidMoveNotification object:_data->window];
[center removeObserver:self name:NSWindowDidResizeNotification object:_data->window];
[center removeObserver:self name:NSWindowDidMiniaturizeNotification object:_data->window];
[center removeObserver:self name:NSWindowDidDeminiaturizeNotification object:_data->window];
[center removeObserver:self name:NSWindowDidBecomeKeyNotification object:_data->window];
[center removeObserver:self name:NSWindowDidResignKeyNotification object:_data->window];
} else {
[_data->window setDelegate:nil];
}
[center removeObserver:self name:NSApplicationDidHideNotification object:NSApp];
[center removeObserver:self name:NSApplicationDidUnhideNotification object:NSApp];
}
- (BOOL)windowShouldClose:(id)sender
{
SDL_SendWindowEvent(_data->windowID, SDL_WINDOWEVENT_CLOSE, 0, 0);
return NO;
}
- (void)windowDidExpose:(NSNotification *)aNotification
{
SDL_SendWindowEvent(_data->windowID, SDL_WINDOWEVENT_EXPOSED, 0, 0);
}
- (void)windowDidMove:(NSNotification *)aNotification
{
int x, y;
NSRect rect = [_data->window contentRectForFrameRect:[_data->window frame]];
ConvertNSRect(&rect);
x = (int)rect.origin.x;
y = (int)rect.origin.y;
SDL_SendWindowEvent(_data->windowID, SDL_WINDOWEVENT_MOVED, x, y);
}
- (void)windowDidResize:(NSNotification *)aNotification
{
int w, h;
NSRect rect = [_data->window contentRectForFrameRect:[_data->window frame]];
w = (int)rect.size.width;
h = (int)rect.size.height;
SDL_SendWindowEvent(_data->windowID, SDL_WINDOWEVENT_RESIZED, w, h);
}
- (void)windowDidMiniaturize:(NSNotification *)aNotification
{
SDL_SendWindowEvent(_data->windowID, SDL_WINDOWEVENT_MINIMIZED, 0, 0);
}
- (void)windowDidDeminiaturize:(NSNotification *)aNotification
{
SDL_SendWindowEvent(_data->windowID, SDL_WINDOWEVENT_RESTORED, 0, 0);
}
- (void)windowDidBecomeKey:(NSNotification *)aNotification
{
Jul 30, 2006
Jul 30, 2006
130
131
int index;
Oct 28, 2006
Oct 28, 2006
132
/* We're going to get keyboard events, since we're key. */
Jul 30, 2006
Jul 30, 2006
133
134
index = _data->videodata->keyboard;
SDL_SetKeyboardFocus(index, _data->windowID);
Jul 24, 2006
Jul 24, 2006
135
136
137
138
}
- (void)windowDidResignKey:(NSNotification *)aNotification
{
Jul 30, 2006
Jul 30, 2006
139
int index;
Oct 28, 2006
Oct 28, 2006
140
141
142
143
144
145
146
147
SDL_Mouse *mouse;
/* Some other window will get mouse events, since we're not key. */
index = _data->videodata->mouse;
mouse = SDL_GetMouse(index);
if (mouse->focus == _data->windowID) {
SDL_SetMouseFocus(index, 0);
}
Jul 30, 2006
Jul 30, 2006
148
Oct 28, 2006
Oct 28, 2006
149
/* Some other window will get keyboard events, since we're not key. */
Jul 30, 2006
Jul 30, 2006
150
151
index = _data->videodata->keyboard;
SDL_SetKeyboardFocus(index, 0);
Jul 24, 2006
Jul 24, 2006
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
}
- (void)windowDidHide:(NSNotification *)aNotification
{
SDL_SendWindowEvent(_data->windowID, SDL_WINDOWEVENT_HIDDEN, 0, 0);
}
- (void)windowDidUnhide:(NSNotification *)aNotification
{
SDL_SendWindowEvent(_data->windowID, SDL_WINDOWEVENT_SHOWN, 0, 0);
}
- (void)mouseDown:(NSEvent *)theEvent
{
int index;
Jul 30, 2006
Jul 30, 2006
167
int button;
Jul 24, 2006
Jul 24, 2006
168
169
index = _data->videodata->mouse;
Jul 30, 2006
Jul 30, 2006
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
switch ([theEvent buttonNumber]) {
case 0:
button = SDL_BUTTON_LEFT;
break;
case 1:
button = SDL_BUTTON_RIGHT;
break;
case 2:
button = SDL_BUTTON_MIDDLE;
break;
default:
button = [theEvent buttonNumber];
break;
}
SDL_SendMouseButton(index, SDL_PRESSED, button);
Jul 24, 2006
Jul 24, 2006
185
186
187
188
}
- (void)rightMouseDown:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
189
[self mouseDown:theEvent];
Jul 24, 2006
Jul 24, 2006
190
191
192
193
}
- (void)otherMouseDown:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
194
[self mouseDown:theEvent];
Jul 24, 2006
Jul 24, 2006
195
196
197
198
199
}
- (void)mouseUp:(NSEvent *)theEvent
{
int index;
Jul 30, 2006
Jul 30, 2006
200
int button;
Jul 24, 2006
Jul 24, 2006
201
202
index = _data->videodata->mouse;
Jul 30, 2006
Jul 30, 2006
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
switch ([theEvent buttonNumber]) {
case 0:
button = SDL_BUTTON_LEFT;
break;
case 1:
button = SDL_BUTTON_RIGHT;
break;
case 2:
button = SDL_BUTTON_MIDDLE;
break;
default:
button = [theEvent buttonNumber];
break;
}
SDL_SendMouseButton(index, SDL_RELEASED, button);
Jul 24, 2006
Jul 24, 2006
218
219
220
221
}
- (void)rightMouseUp:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
222
[self mouseUp:theEvent];
Jul 24, 2006
Jul 24, 2006
223
224
225
226
}
- (void)otherMouseUp:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
227
[self mouseUp:theEvent];
Jul 24, 2006
Jul 24, 2006
228
229
230
231
}
- (void)mouseMoved:(NSEvent *)theEvent
{
Jul 29, 2006
Jul 29, 2006
232
SDL_Window *window = SDL_GetWindowFromID(_data->windowID);
Jul 24, 2006
Jul 24, 2006
233
234
235
236
237
238
239
240
241
242
243
int index;
SDL_Mouse *mouse;
NSPoint point;
NSRect rect = [_data->window contentRectForFrameRect:[_data->window frame]];
index = _data->videodata->mouse;
mouse = SDL_GetMouse(index);
point = [NSEvent mouseLocation];
point.x = point.x - rect.origin.x;
point.y = rect.size.height - (point.y - rect.origin.y);
Oct 28, 2006
Oct 28, 2006
244
245
246
247
248
249
250
251
252
253
254
if ( point.x < 0 || point.x >= rect.size.width ||
point.y < 0 || point.y >= rect.size.height ) {
if (mouse->focus != 0) {
SDL_SetMouseFocus(index, 0);
}
} else {
if (mouse->focus != _data->windowID) {
SDL_SetMouseFocus(index, _data->windowID);
}
SDL_SendMouseMotion(index, 0, (int)point.x, (int)point.y);
}
Jul 24, 2006
Jul 24, 2006
255
256
}
Jul 29, 2006
Jul 29, 2006
257
258
259
260
261
- (void)mouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
Jul 29, 2006
Jul 29, 2006
262
263
264
265
266
267
268
269
270
271
- (void)rightMouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
- (void)otherMouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
Jul 24, 2006
Jul 24, 2006
272
273
- (void)scrollWheel:(NSEvent *)theEvent
{
Jul 29, 2006
Jul 29, 2006
274
275
276
int index;
index = _data->videodata->mouse;
Jul 6, 2007
Jul 6, 2007
277
SDL_SendMouseWheel(index, (int)([theEvent deltaX]+0.9f), (int)([theEvent deltaY]+0.9f));
Jul 24, 2006
Jul 24, 2006
278
279
280
281
}
@end
Aug 6, 2006
Aug 6, 2006
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
@interface SDLWindow : NSWindow
/* These are needed for borderless/fullscreen windows */
- (BOOL)canBecomeKeyWindow;
- (BOOL)canBecomeMainWindow;
@end
@implementation SDLWindow
- (BOOL)canBecomeKeyWindow
{
return YES;
}
- (BOOL)canBecomeMainWindow
{
return YES;
}
@end
Jul 24, 2006
Jul 24, 2006
300
static int
Jul 27, 2006
Jul 27, 2006
301
SetupWindowData(_THIS, SDL_Window * window, NSWindow *nswindow, SDL_bool created)
Jul 24, 2006
Jul 24, 2006
302
303
{
NSAutoreleasePool *pool;
Jul 27, 2006
Jul 27, 2006
304
SDL_VideoData *videodata = (SDL_VideoData *) _this->driverdata;
Jul 24, 2006
Jul 24, 2006
305
306
307
308
309
310
311
312
313
314
315
SDL_WindowData *data;
/* Allocate the window data */
data = (SDL_WindowData *) SDL_malloc(sizeof(*data));
if (!data) {
SDL_OutOfMemory();
return -1;
}
data->windowID = window->id;
data->window = nswindow;
data->created = created;
Jul 27, 2006
Jul 27, 2006
316
data->videodata = videodata;
Jul 24, 2006
Jul 24, 2006
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
pool = [[NSAutoreleasePool alloc] init];
/* Create an event listener for the window */
data->listener = [[Cocoa_WindowListener alloc] init];
[data->listener listen:data];
/* Fill in the SDL window with the window data */
{
NSRect rect = [nswindow contentRectForFrameRect:[nswindow frame]];
ConvertNSRect(&rect);
window->x = (int)rect.origin.x;
window->y = (int)rect.origin.y;
window->w = (int)rect.size.width;
window->h = (int)rect.size.height;
}
if ([nswindow isVisible]) {
window->flags |= SDL_WINDOW_SHOWN;
} else {
window->flags &= ~SDL_WINDOW_SHOWN;
}
{
unsigned int style = [nswindow styleMask];
Jul 29, 2006
Jul 29, 2006
341
if ((style & ~NSResizableWindowMask) == NSBorderlessWindowMask) {
Jul 24, 2006
Jul 24, 2006
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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
window->flags |= SDL_WINDOW_BORDERLESS;
} else {
window->flags &= ~SDL_WINDOW_BORDERLESS;
}
if (style & NSResizableWindowMask) {
window->flags |= SDL_WINDOW_RESIZABLE;
} else {
window->flags &= ~SDL_WINDOW_RESIZABLE;
}
}
if ([nswindow isZoomed]) {
window->flags |= SDL_WINDOW_MAXIMIZED;
} else {
window->flags &= ~SDL_WINDOW_MAXIMIZED;
}
if ([nswindow isMiniaturized]) {
window->flags |= SDL_WINDOW_MINIMIZED;
} else {
window->flags &= ~SDL_WINDOW_MINIMIZED;
}
if ([nswindow isKeyWindow]) {
int index = data->videodata->keyboard;
window->flags |= SDL_WINDOW_INPUT_FOCUS;
SDL_SetKeyboardFocus(index, data->windowID);
if (window->flags & SDL_WINDOW_INPUT_GRABBED) {
/* FIXME */
}
}
/* All done! */
[pool release];
window->driverdata = data;
return 0;
}
int
Cocoa_CreateWindow(_THIS, SDL_Window * window)
{
NSAutoreleasePool *pool;
NSWindow *nswindow;
NSRect rect;
unsigned int style;
NSString *title;
Jul 25, 2006
Jul 25, 2006
386
int status;
Jul 24, 2006
Jul 24, 2006
387
388
389
pool = [[NSAutoreleasePool alloc] init];
Jul 29, 2006
Jul 29, 2006
390
if (window->x == SDL_WINDOWPOS_CENTERED) {
Jul 24, 2006
Jul 24, 2006
391
392
393
394
395
396
rect.origin.x = (CGDisplayPixelsWide(kCGDirectMainDisplay) - window->w) / 2;
} else if (window->x == SDL_WINDOWPOS_UNDEFINED) {
rect.origin.x = 0;
} else {
rect.origin.x = window->x;
}
Jul 29, 2006
Jul 29, 2006
397
if (window->y == SDL_WINDOWPOS_CENTERED) {
Jul 24, 2006
Jul 24, 2006
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
rect.origin.y = (CGDisplayPixelsHigh(kCGDirectMainDisplay) - window->h) / 2;
} else if (window->y == SDL_WINDOWPOS_UNDEFINED) {
rect.origin.y = 0;
} else {
rect.origin.y = window->y;
}
rect.size.width = window->w;
rect.size.height = window->h;
ConvertNSRect(&rect);
if (window->flags & SDL_WINDOW_BORDERLESS) {
style = NSBorderlessWindowMask;
} else {
style = (NSTitledWindowMask|NSClosableWindowMask|NSMiniaturizableWindowMask);
}
if (window->flags & SDL_WINDOW_RESIZABLE) {
style |= NSResizableWindowMask;
}
Aug 6, 2006
Aug 6, 2006
417
nswindow = [[SDLWindow alloc] initWithContentRect:rect styleMask:style backing:NSBackingStoreBuffered defer:FALSE];
Jul 24, 2006
Jul 24, 2006
418
419
420
[pool release];
Jul 27, 2006
Jul 27, 2006
421
if (SetupWindowData(_this, window, nswindow, SDL_TRUE) < 0) {
Jul 24, 2006
Jul 24, 2006
422
423
424
[nswindow release];
return -1;
}
Jul 28, 2006
Jul 28, 2006
425
#ifdef SDL_VIDEO_OPENGL_CGL
Jul 24, 2006
Jul 24, 2006
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
if (window->flags & SDL_WINDOW_OPENGL) {
if (Cocoa_GL_SetupWindow(_this, window) < 0) {
Cocoa_DestroyWindow(_this, window);
return -1;
}
}
#endif
return 0;
}
int
Cocoa_CreateWindowFrom(_THIS, SDL_Window * window, const void *data)
{
NSAutoreleasePool *pool;
NSWindow *nswindow = (NSWindow *) data;
NSString *title;
int status;
pool = [[NSAutoreleasePool alloc] init];
/* Query the title from the existing window */
title = [nswindow title];
if (title) {
window->title = SDL_strdup([title UTF8String]);
}
[pool release];
Jul 27, 2006
Jul 27, 2006
454
return SetupWindowData(_this, window, nswindow, SDL_FALSE);
Jul 24, 2006
Jul 24, 2006
455
456
457
458
459
}
void
Cocoa_SetWindowTitle(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
460
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
461
462
463
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->window;
NSString *string;
Jul 29, 2006
Jul 29, 2006
464
465
466
467
468
if(window->title) {
string = [[NSString alloc] initWithUTF8String:window->title];
} else {
string = [[NSString alloc] init];
}
Jul 24, 2006
Jul 24, 2006
469
470
[nswindow setTitle:string];
[string release];
Jul 29, 2006
Jul 29, 2006
471
Jul 25, 2006
Jul 25, 2006
472
[pool release];
Jul 24, 2006
Jul 24, 2006
473
474
475
476
477
}
void
Cocoa_SetWindowPosition(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
478
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
479
480
481
482
483
484
485
486
487
488
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->window;
NSRect rect;
rect.origin.x = window->x;
rect.origin.y = window->y;
rect.size.width = window->w;
rect.size.height = window->h;
ConvertNSRect(&rect);
rect = [nswindow frameRectForContentRect:rect];
[nswindow setFrameOrigin:rect.origin];
Jul 25, 2006
Jul 25, 2006
489
[pool release];
Jul 24, 2006
Jul 24, 2006
490
491
492
493
494
}
void
Cocoa_SetWindowSize(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
495
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
496
497
498
499
500
501
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->window;
NSSize size;
size.width = window->w;
size.height = window->h;
[nswindow setContentSize:size];
Jul 25, 2006
Jul 25, 2006
502
[pool release];
Jul 24, 2006
Jul 24, 2006
503
504
505
506
507
}
void
Cocoa_ShowWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
508
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
509
510
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->window;
Jul 29, 2006
Jul 29, 2006
511
512
513
if (![nswindow isMiniaturized]) {
[nswindow makeKeyAndOrderFront:nil];
}
Jul 25, 2006
Jul 25, 2006
514
[pool release];
Jul 24, 2006
Jul 24, 2006
515
516
517
518
519
}
void
Cocoa_HideWindow(_THIS, SDL_Window * window)
{
Jul 29, 2006
Jul 29, 2006
520
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
521
522
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->window;
Jul 29, 2006
Jul 29, 2006
523
524
[nswindow orderOut:nil];
[pool release];
Jul 24, 2006
Jul 24, 2006
525
526
527
528
529
}
void
Cocoa_RaiseWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
530
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
531
532
533
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->window;
[nswindow makeKeyAndOrderFront:nil];
Jul 25, 2006
Jul 25, 2006
534
[pool release];
Jul 24, 2006
Jul 24, 2006
535
536
537
538
539
}
void
Cocoa_MaximizeWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
540
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
541
542
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->window;
Jul 29, 2006
Jul 29, 2006
543
[nswindow zoom:nil];
Jul 25, 2006
Jul 25, 2006
544
[pool release];
Jul 24, 2006
Jul 24, 2006
545
546
547
548
549
}
void
Cocoa_MinimizeWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
550
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
551
552
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->window;
Jul 29, 2006
Jul 29, 2006
553
[nswindow miniaturize:nil];
Jul 25, 2006
Jul 25, 2006
554
[pool release];
Jul 24, 2006
Jul 24, 2006
555
556
557
558
559
}
void
Cocoa_RestoreWindow(_THIS, SDL_Window * window)
{
Jul 29, 2006
Jul 29, 2006
560
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
561
562
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->window;
Jul 29, 2006
Jul 29, 2006
563
564
565
566
567
568
if ([nswindow isMiniaturized]) {
[nswindow deminiaturize:nil];
} else if ([nswindow isZoomed]) {
[nswindow zoom:nil];
}
[pool release];
Jul 24, 2006
Jul 24, 2006
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
}
void
Cocoa_SetWindowGrab(_THIS, SDL_Window * window)
{
if ((window->flags & SDL_WINDOW_INPUT_GRABBED) &&
(window->flags & SDL_WINDOW_INPUT_FOCUS)) {
/* FIXME: Grab mouse */
} else {
/* FIXME: Release mouse */
}
}
void
Cocoa_DestroyWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
585
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
586
587
588
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
if (data) {
Jul 28, 2006
Jul 28, 2006
589
#ifdef SDL_VIDEO_OPENGL_CGL
Jul 24, 2006
Jul 24, 2006
590
591
592
593
594
595
596
597
598
599
600
if (window->flags & SDL_WINDOW_OPENGL) {
Cocoa_GL_CleanupWindow(_this, window);
}
#endif
[data->listener close];
[data->listener release];
if (data->created) {
[data->window close];
}
SDL_free(data);
}
Jul 25, 2006
Jul 25, 2006
601
[pool release];
Jul 24, 2006
Jul 24, 2006
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
}
SDL_bool
Cocoa_GetWindowWMInfo(_THIS, SDL_Window * window, SDL_SysWMinfo * info)
{
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->window;
if (info->version.major <= SDL_MAJOR_VERSION) {
//info->window = nswindow;
return SDL_TRUE;
} else {
SDL_SetError("Application not compiled with SDL %d.%d\n",
SDL_MAJOR_VERSION, SDL_MINOR_VERSION);
return SDL_FALSE;
}
}
/* vi: set ts=4 sw=4 expandtab: */