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

Latest commit

 

History

History
628 lines (538 loc) · 17.8 KB

SDL_cocoawindow.m

File metadata and controls

628 lines (538 loc) · 17.8 KB
 
Jul 24, 2006
Jul 24, 2006
1
2
/*
SDL - Simple DirectMedia Layer
Dec 8, 2008
Dec 8, 2008
3
Copyright (C) 1997-2009 Sam Lantinga
Jul 24, 2006
Jul 24, 2006
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
34
35
36
37
38
39
40
41
42
43
44
45
46
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)
{
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];
Jan 21, 2010
Jan 21, 2010
47
48
49
50
51
52
53
54
55
[_data->nswindow setNextResponder:self];
if ([_data->nswindow delegate] != nil) {
[center addObserver:self selector:@selector(windowDisExpose:) name:NSWindowDidExposeNotification object:_data->nswindow];
[center addObserver:self selector:@selector(windowDidMove:) name:NSWindowDidMoveNotification object:_data->nswindow];
[center addObserver:self selector:@selector(windowDidResize:) name:NSWindowDidResizeNotification object:_data->nswindow];
[center addObserver:self selector:@selector(windowDidMiniaturize:) name:NSWindowDidMiniaturizeNotification object:_data->nswindow];
[center addObserver:self selector:@selector(windowDidDeminiaturize:) name:NSWindowDidDeminiaturizeNotification object:_data->nswindow];
[center addObserver:self selector:@selector(windowDidBecomeKey:) name:NSWindowDidBecomeKeyNotification object:_data->nswindow];
[center addObserver:self selector:@selector(windowDidResignKey:) name:NSWindowDidResignKeyNotification object:_data->nswindow];
Jul 24, 2006
Jul 24, 2006
56
} else {
Jan 21, 2010
Jan 21, 2010
57
[_data->nswindow setDelegate:self];
Jul 24, 2006
Jul 24, 2006
58
59
60
61
}
[center addObserver:self selector:@selector(windowDidHide:) name:NSApplicationDidHideNotification object:NSApp];
[center addObserver:self selector:@selector(windowDidUnhide:) name:NSApplicationDidUnhideNotification object:NSApp];
Jan 21, 2010
Jan 21, 2010
62
[_data->nswindow setAcceptsMouseMovedEvents:YES];
Jul 24, 2006
Jul 24, 2006
63
64
65
66
67
68
69
70
}
- (void)close
{
NSNotificationCenter *center;
center = [NSNotificationCenter defaultCenter];
Jan 21, 2010
Jan 21, 2010
71
72
73
74
75
76
77
78
79
[_data->nswindow setNextResponder:nil];
if ([_data->nswindow delegate] != self) {
[center removeObserver:self name:NSWindowDidExposeNotification object:_data->nswindow];
[center removeObserver:self name:NSWindowDidMoveNotification object:_data->nswindow];
[center removeObserver:self name:NSWindowDidResizeNotification object:_data->nswindow];
[center removeObserver:self name:NSWindowDidMiniaturizeNotification object:_data->nswindow];
[center removeObserver:self name:NSWindowDidDeminiaturizeNotification object:_data->nswindow];
[center removeObserver:self name:NSWindowDidBecomeKeyNotification object:_data->nswindow];
[center removeObserver:self name:NSWindowDidResignKeyNotification object:_data->nswindow];
Jul 24, 2006
Jul 24, 2006
80
} else {
Jan 21, 2010
Jan 21, 2010
81
[_data->nswindow setDelegate:nil];
Jul 24, 2006
Jul 24, 2006
82
83
84
85
86
87
88
}
[center removeObserver:self name:NSApplicationDidHideNotification object:NSApp];
[center removeObserver:self name:NSApplicationDidUnhideNotification object:NSApp];
}
- (BOOL)windowShouldClose:(id)sender
{
Jan 21, 2010
Jan 21, 2010
89
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_CLOSE, 0, 0);
Jul 24, 2006
Jul 24, 2006
90
91
92
93
94
return NO;
}
- (void)windowDidExpose:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
95
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_EXPOSED, 0, 0);
Jul 24, 2006
Jul 24, 2006
96
97
98
99
100
}
- (void)windowDidMove:(NSNotification *)aNotification
{
int x, y;
Jan 21, 2010
Jan 21, 2010
101
NSRect rect = [_data->nswindow contentRectForFrameRect:[_data->nswindow frame]];
Jul 24, 2006
Jul 24, 2006
102
ConvertNSRect(&rect);
Dec 1, 2009
Dec 1, 2009
103
104
x = (int)rect.origin.x;
y = (int)rect.origin.y;
Jan 21, 2010
Jan 21, 2010
105
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_MOVED, x, y);
Jul 24, 2006
Jul 24, 2006
106
107
108
109
110
}
- (void)windowDidResize:(NSNotification *)aNotification
{
int w, h;
Jan 21, 2010
Jan 21, 2010
111
NSRect rect = [_data->nswindow contentRectForFrameRect:[_data->nswindow frame]];
Jul 24, 2006
Jul 24, 2006
112
113
w = (int)rect.size.width;
h = (int)rect.size.height;
Jan 21, 2010
Jan 21, 2010
114
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_RESIZED, w, h);
Jul 24, 2006
Jul 24, 2006
115
116
117
118
}
- (void)windowDidMiniaturize:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
119
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_MINIMIZED, 0, 0);
Jul 24, 2006
Jul 24, 2006
120
121
122
123
}
- (void)windowDidDeminiaturize:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
124
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_RESTORED, 0, 0);
Jul 24, 2006
Jul 24, 2006
125
126
127
128
}
- (void)windowDidBecomeKey:(NSNotification *)aNotification
{
Oct 28, 2006
Oct 28, 2006
129
/* We're going to get keyboard events, since we're key. */
May 10, 2010
May 10, 2010
130
SDL_SetKeyboardFocus(_data->window);
Jul 24, 2006
Jul 24, 2006
131
132
133
134
}
- (void)windowDidResignKey:(NSNotification *)aNotification
{
Oct 28, 2006
Oct 28, 2006
135
/* Some other window will get mouse events, since we're not key. */
May 10, 2010
May 10, 2010
136
137
if (SDL_GetMouseFocus() == _data->window) {
SDL_SetMouseFocus(NULL);
Oct 28, 2006
Oct 28, 2006
138
}
Jul 30, 2006
Jul 30, 2006
139
Oct 28, 2006
Oct 28, 2006
140
/* Some other window will get keyboard events, since we're not key. */
May 10, 2010
May 10, 2010
141
142
143
if (SDL_GetKeyboardFocus() == _data->window) {
SDL_SetKeyboardFocus(NULL);
}
Jul 24, 2006
Jul 24, 2006
144
145
146
147
}
- (void)windowDidHide:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
148
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_HIDDEN, 0, 0);
Jul 24, 2006
Jul 24, 2006
149
150
151
152
}
- (void)windowDidUnhide:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
153
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_SHOWN, 0, 0);
Jul 24, 2006
Jul 24, 2006
154
155
156
157
}
- (void)mouseDown:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
158
int button;
Jul 24, 2006
Jul 24, 2006
159
Jul 30, 2006
Jul 30, 2006
160
161
162
163
164
165
166
167
168
169
170
171
172
173
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;
}
Jul 6, 2010
Jul 6, 2010
174
SDL_SendMouseButton(_data->window, SDL_PRESSED, button);
Jul 24, 2006
Jul 24, 2006
175
176
177
178
}
- (void)rightMouseDown:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
179
[self mouseDown:theEvent];
Jul 24, 2006
Jul 24, 2006
180
181
182
183
}
- (void)otherMouseDown:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
184
[self mouseDown:theEvent];
Jul 24, 2006
Jul 24, 2006
185
186
187
188
}
- (void)mouseUp:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
189
int button;
Jul 24, 2006
Jul 24, 2006
190
Jul 30, 2006
Jul 30, 2006
191
192
193
194
195
196
197
198
199
200
201
202
203
204
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;
}
Jul 6, 2010
Jul 6, 2010
205
SDL_SendMouseButton(_data->window, SDL_RELEASED, button);
Jul 24, 2006
Jul 24, 2006
206
207
208
209
}
- (void)rightMouseUp:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
210
[self mouseUp:theEvent];
Jul 24, 2006
Jul 24, 2006
211
212
213
214
}
- (void)otherMouseUp:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
215
[self mouseUp:theEvent];
Jul 24, 2006
Jul 24, 2006
216
217
218
219
}
- (void)mouseMoved:(NSEvent *)theEvent
{
Jan 21, 2010
Jan 21, 2010
220
SDL_Window *window = _data->window;
Jul 24, 2006
Jul 24, 2006
221
222
NSPoint point;
Dec 3, 2009
Dec 3, 2009
223
224
point = [theEvent locationInWindow];
point.y = window->h - point.y;
Dec 1, 2009
Dec 1, 2009
225
226
if ( point.x < 0 || point.x >= window->w ||
point.y < 0 || point.y >= window->h ) {
May 10, 2010
May 10, 2010
227
228
if (SDL_GetMouseFocus() == window) {
SDL_SetMouseFocus(NULL);
Oct 28, 2006
Oct 28, 2006
229
230
}
} else {
Jul 6, 2010
Jul 6, 2010
231
SDL_SendMouseMotion(window, 0, (int)point.x, (int)point.y);
Oct 28, 2006
Oct 28, 2006
232
}
Jul 24, 2006
Jul 24, 2006
233
234
}
Jul 29, 2006
Jul 29, 2006
235
236
237
238
239
- (void)mouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
Jul 29, 2006
Jul 29, 2006
240
241
242
243
244
245
246
247
248
249
- (void)rightMouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
- (void)otherMouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
Jul 24, 2006
Jul 24, 2006
250
251
- (void)scrollWheel:(NSEvent *)theEvent
{
Jul 6, 2010
Jul 6, 2010
252
253
254
255
256
257
258
259
260
261
262
263
264
265
float x = [theEvent deltaX];
float y = [theEvent deltaY];
if (x > 0) {
x += 0.9f;
} else if (x < 0) {
x -= 0.9f;
}
if (y > 0) {
y += 0.9f;
} else if (y < 0) {
y -= 0.9f;
}
SDL_SendMouseWheel(_data->window, (int)x, (int)y);
Jul 24, 2006
Jul 24, 2006
266
267
268
269
}
@end
Aug 6, 2006
Aug 6, 2006
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
@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
288
static int
Jul 27, 2006
Jul 27, 2006
289
SetupWindowData(_THIS, SDL_Window * window, NSWindow *nswindow, SDL_bool created)
Jul 24, 2006
Jul 24, 2006
290
291
{
NSAutoreleasePool *pool;
Jul 27, 2006
Jul 27, 2006
292
SDL_VideoData *videodata = (SDL_VideoData *) _this->driverdata;
Jan 21, 2010
Jan 21, 2010
293
SDL_VideoDisplay *display = window->display;
Dec 6, 2009
Dec 6, 2009
294
SDL_DisplayData *displaydata = (SDL_DisplayData *) display->driverdata;
Jul 24, 2006
Jul 24, 2006
295
296
297
298
299
300
301
302
SDL_WindowData *data;
/* Allocate the window data */
data = (SDL_WindowData *) SDL_malloc(sizeof(*data));
if (!data) {
SDL_OutOfMemory();
return -1;
}
Jan 21, 2010
Jan 21, 2010
303
data->window = window;
Jan 21, 2010
Jan 21, 2010
304
data->nswindow = nswindow;
Jul 24, 2006
Jul 24, 2006
305
data->created = created;
Dec 1, 2009
Dec 1, 2009
306
data->display = displaydata->display;
Jul 27, 2006
Jul 27, 2006
307
data->videodata = videodata;
Jul 24, 2006
Jul 24, 2006
308
309
310
311
312
313
314
315
316
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 */
{
Dec 6, 2009
Dec 6, 2009
317
SDL_Rect bounds;
Jul 24, 2006
Jul 24, 2006
318
319
NSRect rect = [nswindow contentRectForFrameRect:[nswindow frame]];
ConvertNSRect(&rect);
Dec 6, 2009
Dec 6, 2009
320
321
322
Cocoa_GetDisplayBounds(_this, display, &bounds);
window->x = (int)rect.origin.x - bounds.x;
window->y = (int)rect.origin.y - bounds.y;
Jul 24, 2006
Jul 24, 2006
323
324
325
326
327
328
329
330
331
332
333
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
334
if ((style & ~NSResizableWindowMask) == NSBorderlessWindowMask) {
Jul 24, 2006
Jul 24, 2006
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
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]) {
window->flags |= SDL_WINDOW_INPUT_FOCUS;
May 10, 2010
May 10, 2010
357
SDL_SetKeyboardFocus(data->window);
Jul 24, 2006
Jul 24, 2006
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
if (window->flags & SDL_WINDOW_INPUT_GRABBED) {
/* FIXME */
}
}
/* All done! */
[pool release];
window->driverdata = data;
return 0;
}
int
Cocoa_CreateWindow(_THIS, SDL_Window * window)
{
Dec 1, 2009
Dec 1, 2009
373
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
374
NSWindow *nswindow;
Jan 21, 2010
Jan 21, 2010
375
SDL_VideoDisplay *display = window->display;
Jul 24, 2006
Jul 24, 2006
376
NSRect rect;
Dec 6, 2009
Dec 6, 2009
377
SDL_Rect bounds;
Jul 24, 2006
Jul 24, 2006
378
379
unsigned int style;
Dec 6, 2009
Dec 6, 2009
380
Cocoa_GetDisplayBounds(_this, display, &bounds);
Feb 19, 2009
Feb 19, 2009
381
382
if ((window->flags & SDL_WINDOW_FULLSCREEN)
|| window->x == SDL_WINDOWPOS_CENTERED) {
Dec 6, 2009
Dec 6, 2009
383
384
385
386
rect.origin.x = bounds.x + (bounds.w - window->w) / 2;
} else if (window->x == SDL_WINDOWPOS_UNDEFINED) {
rect.origin.x = bounds.x;
} else {
Dec 6, 2009
Dec 6, 2009
387
rect.origin.x = bounds.x + window->x;
Jul 24, 2006
Jul 24, 2006
388
}
Feb 19, 2009
Feb 19, 2009
389
390
if ((window->flags & SDL_WINDOW_FULLSCREEN)
|| window->y == SDL_WINDOWPOS_CENTERED) {
Dec 6, 2009
Dec 6, 2009
391
392
393
394
rect.origin.y = bounds.y + (bounds.h - window->h) / 2;
} else if (window->x == SDL_WINDOWPOS_UNDEFINED) {
rect.origin.y = bounds.y;
} else {
Dec 6, 2009
Dec 6, 2009
395
rect.origin.y = bounds.y + window->y;
Jul 24, 2006
Jul 24, 2006
396
397
398
399
400
401
402
403
404
405
406
407
408
409
}
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;
}
Dec 1, 2009
Dec 1, 2009
410
411
412
413
/* Figure out which screen to place this window */
NSArray *screens = [NSScreen screens];
NSScreen *screen = nil;
NSScreen *candidate;
Dec 5, 2009
Dec 5, 2009
414
415
int i, count = [screens count];
for (i = 0; i < count; ++i) {
Dec 6, 2009
Dec 6, 2009
416
candidate = [screens objectAtIndex:i];
Dec 1, 2009
Dec 1, 2009
417
418
419
420
421
422
423
424
425
426
427
NSRect screenRect = [candidate frame];
if (rect.origin.x >= screenRect.origin.x &&
rect.origin.x < screenRect.origin.x + screenRect.size.width &&
rect.origin.y >= screenRect.origin.y &&
rect.origin.y < screenRect.origin.y + screenRect.size.height) {
screen = candidate;
rect.origin.x -= screenRect.origin.x;
rect.origin.y -= screenRect.origin.y;
}
}
nswindow = [[SDLWindow alloc] initWithContentRect:rect styleMask:style backing:NSBackingStoreBuffered defer:FALSE screen:screen];
Jul 24, 2006
Jul 24, 2006
428
429
430
[pool release];
Jul 27, 2006
Jul 27, 2006
431
if (SetupWindowData(_this, window, nswindow, SDL_TRUE) < 0) {
Jul 24, 2006
Jul 24, 2006
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
[nswindow release];
return -1;
}
return 0;
}
int
Cocoa_CreateWindowFrom(_THIS, SDL_Window * window, const void *data)
{
NSAutoreleasePool *pool;
NSWindow *nswindow = (NSWindow *) data;
NSString *title;
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
455
return SetupWindowData(_this, window, nswindow, SDL_FALSE);
Jul 24, 2006
Jul 24, 2006
456
457
458
459
460
}
void
Cocoa_SetWindowTitle(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
461
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
462
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
463
464
NSString *string;
Jul 29, 2006
Jul 29, 2006
465
466
467
468
469
if(window->title) {
string = [[NSString alloc] initWithUTF8String:window->title];
} else {
string = [[NSString alloc] init];
}
Jul 24, 2006
Jul 24, 2006
470
471
[nswindow setTitle:string];
[string release];
Jul 29, 2006
Jul 29, 2006
472
Jul 25, 2006
Jul 25, 2006
473
[pool release];
Jul 24, 2006
Jul 24, 2006
474
475
476
477
478
}
void
Cocoa_SetWindowPosition(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
479
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
480
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jan 21, 2010
Jan 21, 2010
481
SDL_VideoDisplay *display = window->display;
Jul 24, 2006
Jul 24, 2006
482
NSRect rect;
Dec 6, 2009
Dec 6, 2009
483
SDL_Rect bounds;
Jul 24, 2006
Jul 24, 2006
484
Dec 6, 2009
Dec 6, 2009
485
Cocoa_GetDisplayBounds(_this, display, &bounds);
Feb 19, 2009
Feb 19, 2009
486
487
if ((window->flags & SDL_WINDOW_FULLSCREEN)
|| window->x == SDL_WINDOWPOS_CENTERED) {
Dec 6, 2009
Dec 6, 2009
488
rect.origin.x = bounds.x + (bounds.w - window->w) / 2;
Feb 19, 2009
Feb 19, 2009
489
} else {
Dec 6, 2009
Dec 6, 2009
490
rect.origin.x = bounds.x + window->x;
Feb 19, 2009
Feb 19, 2009
491
492
493
}
if ((window->flags & SDL_WINDOW_FULLSCREEN)
|| window->y == SDL_WINDOWPOS_CENTERED) {
Dec 6, 2009
Dec 6, 2009
494
rect.origin.y = bounds.y + (bounds.h - window->h) / 2;
Feb 19, 2009
Feb 19, 2009
495
} else {
Dec 6, 2009
Dec 6, 2009
496
rect.origin.y = bounds.y + window->y;
Feb 19, 2009
Feb 19, 2009
497
}
Jul 24, 2006
Jul 24, 2006
498
499
500
501
502
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
503
[pool release];
Jul 24, 2006
Jul 24, 2006
504
505
506
507
508
}
void
Cocoa_SetWindowSize(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
509
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
510
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
511
512
513
514
515
NSSize size;
size.width = window->w;
size.height = window->h;
[nswindow setContentSize:size];
Jul 25, 2006
Jul 25, 2006
516
[pool release];
Jul 24, 2006
Jul 24, 2006
517
518
519
520
521
}
void
Cocoa_ShowWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
522
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
523
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
524
Jul 29, 2006
Jul 29, 2006
525
526
527
if (![nswindow isMiniaturized]) {
[nswindow makeKeyAndOrderFront:nil];
}
Jul 25, 2006
Jul 25, 2006
528
[pool release];
Jul 24, 2006
Jul 24, 2006
529
530
531
532
533
}
void
Cocoa_HideWindow(_THIS, SDL_Window * window)
{
Jul 29, 2006
Jul 29, 2006
534
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
535
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
536
Jul 29, 2006
Jul 29, 2006
537
538
[nswindow orderOut:nil];
[pool release];
Jul 24, 2006
Jul 24, 2006
539
540
541
542
543
}
void
Cocoa_RaiseWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
544
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
545
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
546
547
[nswindow makeKeyAndOrderFront:nil];
Jul 25, 2006
Jul 25, 2006
548
[pool release];
Jul 24, 2006
Jul 24, 2006
549
550
551
552
553
}
void
Cocoa_MaximizeWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
554
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
555
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
556
Jul 29, 2006
Jul 29, 2006
557
[nswindow zoom:nil];
Jul 25, 2006
Jul 25, 2006
558
[pool release];
Jul 24, 2006
Jul 24, 2006
559
560
561
562
563
}
void
Cocoa_MinimizeWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
564
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
565
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
566
Jul 29, 2006
Jul 29, 2006
567
[nswindow miniaturize:nil];
Jul 25, 2006
Jul 25, 2006
568
[pool release];
Jul 24, 2006
Jul 24, 2006
569
570
571
572
573
}
void
Cocoa_RestoreWindow(_THIS, SDL_Window * window)
{
Jul 29, 2006
Jul 29, 2006
574
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
575
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
576
Jul 29, 2006
Jul 29, 2006
577
578
579
580
581
582
if ([nswindow isMiniaturized]) {
[nswindow deminiaturize:nil];
} else if ([nswindow isZoomed]) {
[nswindow zoom:nil];
}
[pool release];
Jul 24, 2006
Jul 24, 2006
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
}
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
599
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
600
601
602
603
604
605
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
if (data) {
[data->listener close];
[data->listener release];
if (data->created) {
Jan 21, 2010
Jan 21, 2010
606
[data->nswindow close];
Jul 24, 2006
Jul 24, 2006
607
608
609
}
SDL_free(data);
}
Jul 25, 2006
Jul 25, 2006
610
[pool release];
Jul 24, 2006
Jul 24, 2006
611
612
613
614
615
}
SDL_bool
Cocoa_GetWindowWMInfo(_THIS, SDL_Window * window, SDL_SysWMinfo * info)
{
May 10, 2010
May 10, 2010
616
//NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
617
618
619
620
621
622
623
624
625
626
627
628
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: */