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

Latest commit

 

History

History
720 lines (618 loc) · 20.7 KB

SDL_cocoawindow.m

File metadata and controls

720 lines (618 loc) · 20.7 KB
 
Jul 24, 2006
Jul 24, 2006
1
2
/*
SDL - Simple DirectMedia Layer
Jul 8, 2010
Jul 8, 2010
3
Copyright (C) 1997-2010 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
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"
Jul 29, 2010
Jul 29, 2010
28
#include "../../events/SDL_touch_c.h"
Jul 24, 2006
Jul 24, 2006
29
30
#include "../../events/SDL_windowevents_c.h"
#include "SDL_cocoavideo.h"
Jul 27, 2010
Jul 27, 2010
31
#include "SDL_cocoashape.h"
Jul 24, 2006
Jul 24, 2006
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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
48
49
50
51
52
53
54
55
56
[_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
57
} else {
Jan 21, 2010
Jan 21, 2010
58
[_data->nswindow setDelegate:self];
Jul 24, 2006
Jul 24, 2006
59
60
61
62
}
[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
63
[_data->nswindow setAcceptsMouseMovedEvents:YES];
Jul 29, 2010
Jul 29, 2010
64
[[_data->nswindow contentView] setAcceptsTouchEvents:YES];
Jul 24, 2006
Jul 24, 2006
65
66
67
68
69
70
71
72
}
- (void)close
{
NSNotificationCenter *center;
center = [NSNotificationCenter defaultCenter];
Jan 21, 2010
Jan 21, 2010
73
74
75
76
77
78
79
80
81
[_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
82
} else {
Jan 21, 2010
Jan 21, 2010
83
[_data->nswindow setDelegate:nil];
Jul 24, 2006
Jul 24, 2006
84
85
86
87
88
89
90
}
[center removeObserver:self name:NSApplicationDidHideNotification object:NSApp];
[center removeObserver:self name:NSApplicationDidUnhideNotification object:NSApp];
}
- (BOOL)windowShouldClose:(id)sender
{
Jan 21, 2010
Jan 21, 2010
91
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_CLOSE, 0, 0);
Jul 24, 2006
Jul 24, 2006
92
93
94
95
96
return NO;
}
- (void)windowDidExpose:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
97
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_EXPOSED, 0, 0);
Jul 24, 2006
Jul 24, 2006
98
99
100
101
102
}
- (void)windowDidMove:(NSNotification *)aNotification
{
int x, y;
Jan 21, 2010
Jan 21, 2010
103
NSRect rect = [_data->nswindow contentRectForFrameRect:[_data->nswindow frame]];
Jul 24, 2006
Jul 24, 2006
104
ConvertNSRect(&rect);
Dec 1, 2009
Dec 1, 2009
105
106
x = (int)rect.origin.x;
y = (int)rect.origin.y;
Jan 21, 2010
Jan 21, 2010
107
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_MOVED, x, y);
Jul 24, 2006
Jul 24, 2006
108
109
110
111
112
}
- (void)windowDidResize:(NSNotification *)aNotification
{
int w, h;
Jan 21, 2010
Jan 21, 2010
113
NSRect rect = [_data->nswindow contentRectForFrameRect:[_data->nswindow frame]];
Jul 24, 2006
Jul 24, 2006
114
115
w = (int)rect.size.width;
h = (int)rect.size.height;
Jul 27, 2010
Jul 27, 2010
116
Cocoa_ResizeWindowShape(_data->window);
Jan 21, 2010
Jan 21, 2010
117
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_RESIZED, w, h);
Jul 24, 2006
Jul 24, 2006
118
119
120
121
}
- (void)windowDidMiniaturize:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
122
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_MINIMIZED, 0, 0);
Jul 24, 2006
Jul 24, 2006
123
124
125
126
}
- (void)windowDidDeminiaturize:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
127
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_RESTORED, 0, 0);
Jul 24, 2006
Jul 24, 2006
128
129
130
131
}
- (void)windowDidBecomeKey:(NSNotification *)aNotification
{
Oct 28, 2006
Oct 28, 2006
132
/* We're going to get keyboard events, since we're key. */
May 10, 2010
May 10, 2010
133
SDL_SetKeyboardFocus(_data->window);
Jul 9, 2010
Jul 9, 2010
134
135
136
/* Check to see if someone updated the clipboard */
Cocoa_CheckClipboardUpdate(_data->videodata);
Jul 24, 2006
Jul 24, 2006
137
138
139
140
}
- (void)windowDidResignKey:(NSNotification *)aNotification
{
Oct 28, 2006
Oct 28, 2006
141
/* Some other window will get mouse events, since we're not key. */
May 10, 2010
May 10, 2010
142
143
if (SDL_GetMouseFocus() == _data->window) {
SDL_SetMouseFocus(NULL);
Oct 28, 2006
Oct 28, 2006
144
}
Jul 30, 2006
Jul 30, 2006
145
Oct 28, 2006
Oct 28, 2006
146
/* Some other window will get keyboard events, since we're not key. */
May 10, 2010
May 10, 2010
147
148
149
if (SDL_GetKeyboardFocus() == _data->window) {
SDL_SetKeyboardFocus(NULL);
}
Jul 24, 2006
Jul 24, 2006
150
151
152
153
}
- (void)windowDidHide:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
154
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_HIDDEN, 0, 0);
Jul 24, 2006
Jul 24, 2006
155
156
157
158
}
- (void)windowDidUnhide:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
159
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_SHOWN, 0, 0);
Jul 24, 2006
Jul 24, 2006
160
161
162
163
}
- (void)mouseDown:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
164
int button;
Jul 24, 2006
Jul 24, 2006
165
Jul 30, 2006
Jul 30, 2006
166
167
168
169
170
171
172
173
174
175
176
177
178
179
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
180
SDL_SendMouseButton(_data->window, SDL_PRESSED, button);
Jul 24, 2006
Jul 24, 2006
181
182
183
184
}
- (void)rightMouseDown:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
185
[self mouseDown:theEvent];
Jul 24, 2006
Jul 24, 2006
186
187
188
189
}
- (void)otherMouseDown:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
190
[self mouseDown:theEvent];
Jul 24, 2006
Jul 24, 2006
191
192
193
194
}
- (void)mouseUp:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
195
int button;
Jul 24, 2006
Jul 24, 2006
196
Jul 30, 2006
Jul 30, 2006
197
198
199
200
201
202
203
204
205
206
207
208
209
210
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
211
SDL_SendMouseButton(_data->window, SDL_RELEASED, button);
Jul 24, 2006
Jul 24, 2006
212
213
214
215
}
- (void)rightMouseUp:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
216
[self mouseUp:theEvent];
Jul 24, 2006
Jul 24, 2006
217
218
219
220
}
- (void)otherMouseUp:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
221
[self mouseUp:theEvent];
Jul 24, 2006
Jul 24, 2006
222
223
224
225
}
- (void)mouseMoved:(NSEvent *)theEvent
{
Jan 21, 2010
Jan 21, 2010
226
SDL_Window *window = _data->window;
Jul 24, 2006
Jul 24, 2006
227
228
NSPoint point;
Dec 3, 2009
Dec 3, 2009
229
230
point = [theEvent locationInWindow];
point.y = window->h - point.y;
Dec 1, 2009
Dec 1, 2009
231
232
if ( point.x < 0 || point.x >= window->w ||
point.y < 0 || point.y >= window->h ) {
May 10, 2010
May 10, 2010
233
234
if (SDL_GetMouseFocus() == window) {
SDL_SetMouseFocus(NULL);
Oct 28, 2006
Oct 28, 2006
235
236
}
} else {
Jul 6, 2010
Jul 6, 2010
237
SDL_SendMouseMotion(window, 0, (int)point.x, (int)point.y);
Oct 28, 2006
Oct 28, 2006
238
}
Jul 24, 2006
Jul 24, 2006
239
240
}
Jul 29, 2006
Jul 29, 2006
241
242
243
244
245
- (void)mouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
Jul 29, 2006
Jul 29, 2006
246
247
248
249
250
251
252
253
254
255
- (void)rightMouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
- (void)otherMouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
Jul 24, 2006
Jul 24, 2006
256
257
- (void)scrollWheel:(NSEvent *)theEvent
{
Jul 6, 2010
Jul 6, 2010
258
259
260
261
262
263
264
265
266
267
268
269
270
271
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
272
273
}
Jul 29, 2010
Jul 29, 2010
274
275
276
277
278
279
280
281
282
283
284
285
286
287
- (void)touchesBeganWithEvent:(NSEvent *) theEvent
{
[self handleTouches:COCOA_TOUCH_DOWN withEvent:theEvent];
}
- (void)touchesMovedWithEvent:(NSEvent *) theEvent
{
[self handleTouches:COCOA_TOUCH_MOVE withEvent:theEvent];
}
- (void)touchesEndedWithEvent:(NSEvent *) theEvent
{
[self handleTouches:COCOA_TOUCH_UP withEvent:theEvent];
}
Jul 29, 2006
Jul 29, 2006
288
Jul 29, 2010
Jul 29, 2010
289
290
291
292
293
294
295
- (void)touchesCancelledWithEvent:(NSEvent *) theEvent
{
[self handleTouches:COCOA_TOUCH_CANCELLED withEvent:theEvent];
}
- (void)handleTouches:(cocoaTouchType)type withEvent:(NSEvent *)event
{
Aug 1, 2010
Aug 1, 2010
296
297
298
NSSet *touches = 0;
NSEnumerator *enumerator;
NSTouch *touch;
Jul 29, 2010
Jul 29, 2010
299
Aug 1, 2010
Aug 1, 2010
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
switch (type) {
case COCOA_TOUCH_DOWN:
touches = [event touchesMatchingPhase:NSTouchPhaseBegan inView:nil];
break;
case COCOA_TOUCH_UP:
case COCOA_TOUCH_CANCELLED:
touches = [event touchesMatchingPhase:NSTouchPhaseEnded inView:nil];
break;
case COCOA_TOUCH_MOVE:
touches = [event touchesMatchingPhase:NSTouchPhaseMoved inView:nil];
break;
}
enumerator = [touches objectEnumerator];
touch = (NSTouch*)[enumerator nextObject];
Jul 29, 2010
Jul 29, 2010
315
while (touch) {
Aug 1, 2010
Aug 1, 2010
316
SDL_TouchID touchId = (SDL_TouchID)[touch device];
Jul 29, 2010
Jul 29, 2010
317
318
319
320
321
322
if (!SDL_GetTouch(touchId)) {
SDL_Touch touch;
touch.id = touchId;
touch.x_min = 0;
touch.x_max = 1;
Jul 31, 2010
Jul 31, 2010
323
touch.native_xres = touch.x_max - touch.x_min;
Jul 29, 2010
Jul 29, 2010
324
325
touch.y_min = 0;
touch.y_max = 1;
Jul 31, 2010
Jul 31, 2010
326
touch.native_yres = touch.y_max - touch.y_min;
Jul 29, 2010
Jul 29, 2010
327
328
touch.pressure_min = 0;
touch.pressure_max = 1;
Jul 31, 2010
Jul 31, 2010
329
touch.native_pressureres = touch.pressure_max - touch.pressure_min;
Jul 29, 2010
Jul 29, 2010
330
331
if (SDL_AddTouch(&touch, "") < 0) {
Aug 1, 2010
Aug 1, 2010
332
return;
Jul 29, 2010
Jul 29, 2010
333
334
}
}
Aug 14, 2010
Aug 14, 2010
335
336
SDL_FingerID fingerId = (SDL_FingerID)[touch identity];
Jul 29, 2010
Jul 29, 2010
337
338
float x = [touch normalizedPosition].x;
float y = [touch normalizedPosition].y;
Aug 14, 2010
Aug 14, 2010
339
340
341
/* Make the origin the upper left instead of the lower left */
y = 1.0f - y;
Jul 29, 2010
Jul 29, 2010
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
switch (type) {
case COCOA_TOUCH_DOWN:
SDL_SendFingerDown(touchId, fingerId, SDL_TRUE, x, y, 1);
break;
case COCOA_TOUCH_UP:
case COCOA_TOUCH_CANCELLED:
SDL_SendFingerDown(touchId, fingerId, SDL_FALSE, x, y, 1);
break;
case COCOA_TOUCH_MOVE:
SDL_SendTouchMotion(touchId, fingerId, SDL_FALSE, x, y, 1);
break;
}
touch = (NSTouch*)[enumerator nextObject];
}
Jul 24, 2006
Jul 24, 2006
357
358
359
360
}
@end
Aug 6, 2006
Aug 6, 2006
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
@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
379
static int
Jul 27, 2006
Jul 27, 2006
380
SetupWindowData(_THIS, SDL_Window * window, NSWindow *nswindow, SDL_bool created)
Jul 24, 2006
Jul 24, 2006
381
382
{
NSAutoreleasePool *pool;
Jul 27, 2006
Jul 27, 2006
383
SDL_VideoData *videodata = (SDL_VideoData *) _this->driverdata;
Jan 21, 2010
Jan 21, 2010
384
SDL_VideoDisplay *display = window->display;
Dec 6, 2009
Dec 6, 2009
385
SDL_DisplayData *displaydata = (SDL_DisplayData *) display->driverdata;
Jul 24, 2006
Jul 24, 2006
386
387
388
389
390
391
392
393
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
394
data->window = window;
Jan 21, 2010
Jan 21, 2010
395
data->nswindow = nswindow;
Jul 24, 2006
Jul 24, 2006
396
data->created = created;
Dec 1, 2009
Dec 1, 2009
397
data->display = displaydata->display;
Jul 27, 2006
Jul 27, 2006
398
data->videodata = videodata;
Jul 24, 2006
Jul 24, 2006
399
400
401
402
403
404
405
406
407
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
408
SDL_Rect bounds;
Jul 24, 2006
Jul 24, 2006
409
410
NSRect rect = [nswindow contentRectForFrameRect:[nswindow frame]];
ConvertNSRect(&rect);
Dec 6, 2009
Dec 6, 2009
411
412
413
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
414
415
416
417
418
419
420
421
422
423
424
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
425
if ((style & ~NSResizableWindowMask) == NSBorderlessWindowMask) {
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
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
448
SDL_SetKeyboardFocus(data->window);
Jul 24, 2006
Jul 24, 2006
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
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
464
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
465
NSWindow *nswindow;
Jan 21, 2010
Jan 21, 2010
466
SDL_VideoDisplay *display = window->display;
Jul 24, 2006
Jul 24, 2006
467
NSRect rect;
Dec 6, 2009
Dec 6, 2009
468
SDL_Rect bounds;
Jul 24, 2006
Jul 24, 2006
469
470
unsigned int style;
Dec 6, 2009
Dec 6, 2009
471
Cocoa_GetDisplayBounds(_this, display, &bounds);
Feb 19, 2009
Feb 19, 2009
472
473
if ((window->flags & SDL_WINDOW_FULLSCREEN)
|| window->x == SDL_WINDOWPOS_CENTERED) {
Dec 6, 2009
Dec 6, 2009
474
475
476
477
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
478
rect.origin.x = bounds.x + window->x;
Jul 24, 2006
Jul 24, 2006
479
}
Feb 19, 2009
Feb 19, 2009
480
481
if ((window->flags & SDL_WINDOW_FULLSCREEN)
|| window->y == SDL_WINDOWPOS_CENTERED) {
Dec 6, 2009
Dec 6, 2009
482
483
484
485
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
486
rect.origin.y = bounds.y + window->y;
Jul 24, 2006
Jul 24, 2006
487
488
489
490
491
492
493
494
495
496
497
498
499
500
}
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
501
502
503
504
/* Figure out which screen to place this window */
NSArray *screens = [NSScreen screens];
NSScreen *screen = nil;
NSScreen *candidate;
Dec 5, 2009
Dec 5, 2009
505
506
int i, count = [screens count];
for (i = 0; i < count; ++i) {
Dec 6, 2009
Dec 6, 2009
507
candidate = [screens objectAtIndex:i];
Dec 1, 2009
Dec 1, 2009
508
509
510
511
512
513
514
515
516
517
518
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
519
520
521
[pool release];
Jul 27, 2006
Jul 27, 2006
522
if (SetupWindowData(_this, window, nswindow, SDL_TRUE) < 0) {
Jul 24, 2006
Jul 24, 2006
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
[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
546
return SetupWindowData(_this, window, nswindow, SDL_FALSE);
Jul 24, 2006
Jul 24, 2006
547
548
549
550
551
}
void
Cocoa_SetWindowTitle(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
552
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
553
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
554
555
NSString *string;
Jul 29, 2006
Jul 29, 2006
556
557
558
559
560
if(window->title) {
string = [[NSString alloc] initWithUTF8String:window->title];
} else {
string = [[NSString alloc] init];
}
Jul 24, 2006
Jul 24, 2006
561
562
[nswindow setTitle:string];
[string release];
Jul 29, 2006
Jul 29, 2006
563
Jul 25, 2006
Jul 25, 2006
564
[pool release];
Jul 24, 2006
Jul 24, 2006
565
566
567
568
569
}
void
Cocoa_SetWindowPosition(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
570
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
571
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jan 21, 2010
Jan 21, 2010
572
SDL_VideoDisplay *display = window->display;
Jul 24, 2006
Jul 24, 2006
573
NSRect rect;
Dec 6, 2009
Dec 6, 2009
574
SDL_Rect bounds;
Jul 24, 2006
Jul 24, 2006
575
Dec 6, 2009
Dec 6, 2009
576
Cocoa_GetDisplayBounds(_this, display, &bounds);
Feb 19, 2009
Feb 19, 2009
577
578
if ((window->flags & SDL_WINDOW_FULLSCREEN)
|| window->x == SDL_WINDOWPOS_CENTERED) {
Dec 6, 2009
Dec 6, 2009
579
rect.origin.x = bounds.x + (bounds.w - window->w) / 2;
Feb 19, 2009
Feb 19, 2009
580
} else {
Dec 6, 2009
Dec 6, 2009
581
rect.origin.x = bounds.x + window->x;
Feb 19, 2009
Feb 19, 2009
582
583
584
}
if ((window->flags & SDL_WINDOW_FULLSCREEN)
|| window->y == SDL_WINDOWPOS_CENTERED) {
Dec 6, 2009
Dec 6, 2009
585
rect.origin.y = bounds.y + (bounds.h - window->h) / 2;
Feb 19, 2009
Feb 19, 2009
586
} else {
Dec 6, 2009
Dec 6, 2009
587
rect.origin.y = bounds.y + window->y;
Feb 19, 2009
Feb 19, 2009
588
}
Jul 24, 2006
Jul 24, 2006
589
590
591
592
593
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
594
[pool release];
Jul 24, 2006
Jul 24, 2006
595
596
597
598
599
}
void
Cocoa_SetWindowSize(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
600
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
601
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
602
603
604
605
606
NSSize size;
size.width = window->w;
size.height = window->h;
[nswindow setContentSize:size];
Jul 25, 2006
Jul 25, 2006
607
[pool release];
Jul 24, 2006
Jul 24, 2006
608
609
610
611
612
}
void
Cocoa_ShowWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
613
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
614
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
615
Jul 29, 2006
Jul 29, 2006
616
617
618
if (![nswindow isMiniaturized]) {
[nswindow makeKeyAndOrderFront:nil];
}
Jul 25, 2006
Jul 25, 2006
619
[pool release];
Jul 24, 2006
Jul 24, 2006
620
621
622
623
624
}
void
Cocoa_HideWindow(_THIS, SDL_Window * window)
{
Jul 29, 2006
Jul 29, 2006
625
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
626
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
627
Jul 29, 2006
Jul 29, 2006
628
629
[nswindow orderOut:nil];
[pool release];
Jul 24, 2006
Jul 24, 2006
630
631
632
633
634
}
void
Cocoa_RaiseWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
635
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
636
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
637
638
[nswindow makeKeyAndOrderFront:nil];
Jul 25, 2006
Jul 25, 2006
639
[pool release];
Jul 24, 2006
Jul 24, 2006
640
641
642
643
644
}
void
Cocoa_MaximizeWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
645
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
646
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
647
Jul 29, 2006
Jul 29, 2006
648
[nswindow zoom:nil];
Jul 25, 2006
Jul 25, 2006
649
[pool release];
Jul 24, 2006
Jul 24, 2006
650
651
652
653
654
}
void
Cocoa_MinimizeWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
655
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
656
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
657
Jul 29, 2006
Jul 29, 2006
658
[nswindow miniaturize:nil];
Jul 25, 2006
Jul 25, 2006
659
[pool release];
Jul 24, 2006
Jul 24, 2006
660
661
662
663
664
}
void
Cocoa_RestoreWindow(_THIS, SDL_Window * window)
{
Jul 29, 2006
Jul 29, 2006
665
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
666
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
667
Jul 29, 2006
Jul 29, 2006
668
669
670
671
672
673
if ([nswindow isMiniaturized]) {
[nswindow deminiaturize:nil];
} else if ([nswindow isZoomed]) {
[nswindow zoom:nil];
}
[pool release];
Jul 24, 2006
Jul 24, 2006
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
}
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
690
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
691
692
693
694
695
696
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
if (data) {
[data->listener close];
[data->listener release];
if (data->created) {
Jan 21, 2010
Jan 21, 2010
697
[data->nswindow close];
Jul 24, 2006
Jul 24, 2006
698
699
700
}
SDL_free(data);
}
Jul 25, 2006
Jul 25, 2006
701
[pool release];
Jul 24, 2006
Jul 24, 2006
702
703
704
705
706
}
SDL_bool
Cocoa_GetWindowWMInfo(_THIS, SDL_Window * window, SDL_SysWMinfo * info)
{
Sep 27, 2010
Sep 27, 2010
707
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
708
709
if (info->version.major <= SDL_MAJOR_VERSION) {
Sep 27, 2010
Sep 27, 2010
710
711
info->subsystem = SDL_SYSWM_COCOA;
info->info.cocoa.window = nswindow;
Jul 24, 2006
Jul 24, 2006
712
713
714
715
716
717
718
719
720
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: */