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

Latest commit

 

History

History
1144 lines (954 loc) · 32.9 KB

SDL_cocoawindow.m

File metadata and controls

1144 lines (954 loc) · 32.9 KB
 
1
2
/*
Simple DirectMedia Layer
Feb 15, 2013
Feb 15, 2013
3
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
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
47
48
49
50
51
52
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "SDL_config.h"
#if SDL_VIDEO_DRIVER_COCOA
#include "SDL_syswm.h"
#include "SDL_timer.h" /* For SDL_GetTicks() */
#include "../SDL_sysvideo.h"
#include "../../events/SDL_keyboard_c.h"
#include "../../events/SDL_mouse_c.h"
#include "../../events/SDL_touch_c.h"
#include "../../events/SDL_windowevents_c.h"
#include "SDL_cocoavideo.h"
#include "SDL_cocoashape.h"
#include "SDL_cocoamouse.h"
static Uint32 s_moveHack;
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;
NSWindow *window = data->nswindow;
NSView *view = [window contentView];
_data = data;
Apr 23, 2013
Apr 23, 2013
53
54
observingVisible = YES;
wasVisible = [window isVisible];
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
center = [NSNotificationCenter defaultCenter];
if ([window delegate] != nil) {
[center addObserver:self selector:@selector(windowDidExpose:) name:NSWindowDidExposeNotification object:window];
[center addObserver:self selector:@selector(windowDidMove:) name:NSWindowDidMoveNotification object:window];
[center addObserver:self selector:@selector(windowDidResize:) name:NSWindowDidResizeNotification object:window];
[center addObserver:self selector:@selector(windowDidMiniaturize:) name:NSWindowDidMiniaturizeNotification object:window];
[center addObserver:self selector:@selector(windowDidDeminiaturize:) name:NSWindowDidDeminiaturizeNotification object:window];
[center addObserver:self selector:@selector(windowDidBecomeKey:) name:NSWindowDidBecomeKeyNotification object:window];
[center addObserver:self selector:@selector(windowDidResignKey:) name:NSWindowDidResignKeyNotification object:window];
} else {
[window setDelegate:self];
}
May 18, 2013
May 18, 2013
70
71
72
73
/* Haven't found a delegate / notification that triggers when the window is
* ordered out (is not visible any more). You can be ordered out without
* minimizing, so DidMiniaturize doesn't work. (e.g. -[NSWindow orderOut:])
*/
Apr 22, 2013
Apr 22, 2013
74
75
76
77
78
[window addObserver:self
forKeyPath:@"visible"
options:NSKeyValueObservingOptionNew
context:NULL];
79
80
81
82
83
84
85
86
87
88
89
90
[window setNextResponder:self];
[window setAcceptsMouseMovedEvents:YES];
[view setNextResponder:self];
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060
if ([view respondsToSelector:@selector(setAcceptsTouchEvents:)]) {
[view setAcceptsTouchEvents:YES];
}
#endif
}
Apr 22, 2013
Apr 22, 2013
91
92
93
94
95
- (void)observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
change:(NSDictionary *)change
context:(void *)context
{
Apr 23, 2013
Apr 23, 2013
96
97
98
99
if (!observingVisible) {
return;
}
Apr 22, 2013
Apr 22, 2013
100
101
102
103
104
105
106
107
108
109
if (object == _data->nswindow && [keyPath isEqualToString:@"visible"]) {
int newVisibility = [[change objectForKey:@"new"] intValue];
if (newVisibility) {
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_SHOWN, 0, 0);
} else {
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_HIDDEN, 0, 0);
}
}
}
Apr 23, 2013
Apr 23, 2013
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
-(void) pauseVisibleObservation
{
observingVisible = NO;
wasVisible = [_data->nswindow isVisible];
}
-(void) resumeVisibleObservation
{
BOOL isVisible = [_data->nswindow isVisible];
observingVisible = YES;
if (wasVisible != isVisible) {
if (isVisible) {
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_SHOWN, 0, 0);
} else {
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_HIDDEN, 0, 0);
}
wasVisible = isVisible;
}
}
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
- (void)close
{
NSNotificationCenter *center;
NSWindow *window = _data->nswindow;
NSView *view = [window contentView];
center = [NSNotificationCenter defaultCenter];
if ([window delegate] != self) {
[center removeObserver:self name:NSWindowDidExposeNotification object:window];
[center removeObserver:self name:NSWindowDidMoveNotification object:window];
[center removeObserver:self name:NSWindowDidResizeNotification object:window];
[center removeObserver:self name:NSWindowDidMiniaturizeNotification object:window];
[center removeObserver:self name:NSWindowDidDeminiaturizeNotification object:window];
[center removeObserver:self name:NSWindowDidBecomeKeyNotification object:window];
[center removeObserver:self name:NSWindowDidResignKeyNotification object:window];
} else {
[window setDelegate:nil];
}
Apr 22, 2013
Apr 22, 2013
151
152
153
[window removeObserver:self
forKeyPath:@"visible"];
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
if ([window nextResponder] == self) {
[window setNextResponder:nil];
}
if ([view nextResponder] == self) {
[view setNextResponder:nil];
}
}
- (BOOL)windowShouldClose:(id)sender
{
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_CLOSE, 0, 0);
return NO;
}
- (void)windowDidExpose:(NSNotification *)aNotification
{
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_EXPOSED, 0, 0);
}
- (void)windowDidMove:(NSNotification *)aNotification
{
int x, y;
SDL_VideoDevice *device = SDL_GetVideoDevice();
SDL_Window *window = _data->window;
NSWindow *nswindow = _data->nswindow;
NSRect rect = [nswindow contentRectForFrameRect:[nswindow frame]];
ConvertNSRect(&rect);
if (s_moveHack) {
SDL_bool blockMove = ((SDL_GetTicks() - s_moveHack) < 500);
s_moveHack = 0;
if (blockMove) {
/* Cocoa is adjusting the window in response to a mode change */
rect.origin.x = window->x;
rect.origin.y = window->y;
ConvertNSRect(&rect);
[nswindow setFrameOrigin:rect.origin];
return;
}
}
x = (int)rect.origin.x;
y = (int)rect.origin.y;
if (window == device->current_glwin) {
[((NSOpenGLContext *) device->current_glctx) update];
}
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_MOVED, x, y);
}
- (void)windowDidResize:(NSNotification *)aNotification
{
SDL_VideoDevice *device = SDL_GetVideoDevice();
int x, y, w, h;
NSRect rect = [_data->nswindow contentRectForFrameRect:[_data->nswindow frame]];
ConvertNSRect(&rect);
x = (int)rect.origin.x;
y = (int)rect.origin.y;
w = (int)rect.size.width;
h = (int)rect.size.height;
if (SDL_IsShapedWindow(_data->window))
Cocoa_ResizeWindowShape(_data->window);
if (_data->window == device->current_glwin) {
[((NSOpenGLContext *) device->current_glctx) update];
}
/* The window can move during a resize event, such as when maximizing
or resizing from a corner */
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_MOVED, x, y);
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_RESIZED, w, h);
}
- (void)windowDidMiniaturize:(NSNotification *)aNotification
{
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_MINIMIZED, 0, 0);
}
- (void)windowDidDeminiaturize:(NSNotification *)aNotification
{
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_RESTORED, 0, 0);
}
- (void)windowDidBecomeKey:(NSNotification *)aNotification
{
SDL_Window *window = _data->window;
Jun 4, 2013
Jun 4, 2013
243
SDL_Mouse *mouse = SDL_GetMouse();
244
245
246
247
248
/* We're going to get keyboard events, since we're key. */
SDL_SetKeyboardFocus(window);
/* If we just gained focus we need the updated mouse position */
Jun 4, 2013
Jun 4, 2013
249
if (!mouse->relative_mode) {
250
251
252
253
254
255
256
257
NSPoint point;
int x, y;
point = [_data->nswindow mouseLocationOutsideOfEventStream];
x = (int)point.x;
y = (int)(window->h - point.y);
if (x >= 0 && x < window->w && y >= 0 && y < window->h) {
Mar 3, 2013
Mar 3, 2013
258
SDL_SendMouseMotion(window, 0, 0, x, y);
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
}
}
/* Check to see if someone updated the clipboard */
Cocoa_CheckClipboardUpdate(_data->videodata);
}
- (void)windowDidResignKey:(NSNotification *)aNotification
{
/* Some other window will get mouse events, since we're not key. */
if (SDL_GetMouseFocus() == _data->window) {
SDL_SetMouseFocus(NULL);
}
/* Some other window will get keyboard events, since we're not key. */
if (SDL_GetKeyboardFocus() == _data->window) {
SDL_SetKeyboardFocus(NULL);
}
}
May 18, 2013
May 18, 2013
279
280
281
282
/* We'll respond to key events by doing nothing so we don't beep.
* We could handle key messages here, but we lose some in the NSApp dispatch,
* where they get converted to action messages, etc.
*/
283
284
- (void)flagsChanged:(NSEvent *)theEvent
{
May 18, 2013
May 18, 2013
285
/*Cocoa_HandleKeyEvent(SDL_GetVideoDevice(), theEvent);*/
286
287
288
}
- (void)keyDown:(NSEvent *)theEvent
{
May 18, 2013
May 18, 2013
289
/*Cocoa_HandleKeyEvent(SDL_GetVideoDevice(), theEvent);*/
290
291
292
}
- (void)keyUp:(NSEvent *)theEvent
{
May 18, 2013
May 18, 2013
293
/*Cocoa_HandleKeyEvent(SDL_GetVideoDevice(), theEvent);*/
May 18, 2013
May 18, 2013
296
297
298
/* We'll respond to selectors by doing nothing so we don't beep.
* The escape key gets converted to a "cancel" selector, etc.
*/
299
300
- (void)doCommandBySelector:(SEL)aSelector
{
May 18, 2013
May 18, 2013
301
/*NSLog(@"doCommandBySelector: %@\n", NSStringFromSelector(aSelector));*/
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
}
- (void)mouseDown:(NSEvent *)theEvent
{
int button;
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] + 1;
break;
}
Mar 3, 2013
Mar 3, 2013
322
SDL_SendMouseButton(_data->window, 0, SDL_PRESSED, button);
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
}
- (void)rightMouseDown:(NSEvent *)theEvent
{
[self mouseDown:theEvent];
}
- (void)otherMouseDown:(NSEvent *)theEvent
{
[self mouseDown:theEvent];
}
- (void)mouseUp:(NSEvent *)theEvent
{
int button;
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] + 1;
break;
}
Mar 3, 2013
Mar 3, 2013
353
SDL_SendMouseButton(_data->window, 0, SDL_RELEASED, button);
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
386
387
388
389
390
391
392
393
394
395
396
397
}
- (void)rightMouseUp:(NSEvent *)theEvent
{
[self mouseUp:theEvent];
}
- (void)otherMouseUp:(NSEvent *)theEvent
{
[self mouseUp:theEvent];
}
- (void)mouseMoved:(NSEvent *)theEvent
{
SDL_Mouse *mouse = SDL_GetMouse();
SDL_Window *window = _data->window;
NSPoint point;
int x, y;
if (mouse->relative_mode) {
return;
}
point = [theEvent locationInWindow];
x = (int)point.x;
y = (int)(window->h - point.y);
if (x < 0 || x >= window->w || y < 0 || y >= window->h) {
if (window->flags & SDL_WINDOW_INPUT_GRABBED) {
CGPoint cgpoint;
if (x < 0) {
x = 0;
} else if (x >= window->w) {
x = window->w - 1;
}
if (y < 0) {
y = 0;
} else if (y >= window->h) {
y = window->h - 1;
}
cgpoint.x = window->x + x;
cgpoint.y = window->y + y;
Apr 24, 2013
Apr 24, 2013
398
Apr 26, 2013
Apr 26, 2013
399
400
401
/* According to the docs, this was deprecated in 10.6, but it's still
* around. The substitute requires a CGEventSource, but I'm not entirely
* sure how we'd procure the right one for this event.
Apr 24, 2013
Apr 24, 2013
402
*/
Apr 26, 2013
Apr 26, 2013
403
CGSetLocalEventsSuppressionInterval(0.0);
404
CGDisplayMoveCursorToPoint(kCGDirectMainDisplay, cgpoint);
Apr 26, 2013
Apr 26, 2013
405
CGSetLocalEventsSuppressionInterval(0.25);
Mar 3, 2013
Mar 3, 2013
408
SDL_SendMouseMotion(window, 0, 0, x, y);
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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
}
- (void)mouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
- (void)rightMouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
- (void)otherMouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
- (void)scrollWheel:(NSEvent *)theEvent
{
Cocoa_HandleMouseWheel(_data->window, theEvent);
}
- (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];
}
- (void)touchesCancelledWithEvent:(NSEvent *) theEvent
{
[self handleTouches:COCOA_TOUCH_CANCELLED withEvent:theEvent];
}
- (void)handleTouches:(cocoaTouchType)type withEvent:(NSEvent *)event
{
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060
NSSet *touches = 0;
NSEnumerator *enumerator;
NSTouch *touch;
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];
while (touch) {
Mar 3, 2013
Mar 3, 2013
474
const SDL_TouchID touchId = (SDL_TouchID)(intptr_t)[touch device];
475
if (!SDL_GetTouch(touchId)) {
Mar 3, 2013
Mar 3, 2013
476
if (SDL_AddTouch(touchId, "") < 0) {
May 18, 2013
May 18, 2013
479
}
Mar 3, 2013
Mar 3, 2013
481
const SDL_FingerID fingerId = (SDL_FingerID)(intptr_t)[touch identity];
482
483
484
485
486
487
488
float x = [touch normalizedPosition].x;
float y = [touch normalizedPosition].y;
/* Make the origin the upper left instead of the lower left */
y = 1.0f - y;
switch (type) {
case COCOA_TOUCH_DOWN:
Mar 3, 2013
Mar 3, 2013
489
SDL_SendTouch(touchId, fingerId, SDL_TRUE, x, y, 1.0f);
490
491
492
break;
case COCOA_TOUCH_UP:
case COCOA_TOUCH_CANCELLED:
Mar 3, 2013
Mar 3, 2013
493
SDL_SendTouch(touchId, fingerId, SDL_FALSE, x, y, 1.0f);
494
495
break;
case COCOA_TOUCH_MOVE:
Mar 3, 2013
Mar 3, 2013
496
SDL_SendTouchMotion(touchId, fingerId, x, y, 1.0f);
Mar 3, 2013
Mar 3, 2013
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
touch = (NSTouch*)[enumerator nextObject];
}
#endif /* MAC_OS_X_VERSION_MAX_ALLOWED >= 1060 */
}
@end
@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
@interface SDLView : NSView
May 7, 2013
May 7, 2013
526
527
528
529
530
531
532
533
534
535
/* The default implementation doesn't pass rightMouseDown to responder chain */
- (void)rightMouseDown:(NSEvent *)theEvent;
@end
@implementation SDLView
- (void)rightMouseDown:(NSEvent *)theEvent
{
[[self nextResponder] rightMouseDown:theEvent];
}
May 7, 2013
May 7, 2013
536
537
538
539
540
541
- (void)resetCursorRects
{
[super resetCursorRects];
SDL_Mouse *mouse = SDL_GetMouse();
Jun 4, 2013
Jun 4, 2013
542
if (mouse->cursor_shown && mouse->cur_cursor && !mouse->relative_mode) {
May 7, 2013
May 7, 2013
543
544
545
546
547
548
549
[self addCursorRect:[self bounds]
cursor:mouse->cur_cursor->driverdata];
} else {
[self addCursorRect:[self bounds]
cursor:[NSCursor invisibleCursor]];
}
}
550
551
552
553
554
555
556
@end
static unsigned int
GetWindowStyle(SDL_Window * window)
{
unsigned int style;
May 18, 2013
May 18, 2013
557
if (window->flags & SDL_WINDOW_FULLSCREEN) {
558
style = NSBorderlessWindowMask;
May 18, 2013
May 18, 2013
559
560
561
562
563
564
565
566
567
568
} else {
if (window->flags & SDL_WINDOW_BORDERLESS) {
style = NSBorderlessWindowMask;
} else {
style = (NSTitledWindowMask|NSClosableWindowMask|NSMiniaturizableWindowMask);
}
if (window->flags & SDL_WINDOW_RESIZABLE) {
style |= NSResizableWindowMask;
}
}
569
570
571
572
573
574
return style;
}
static int
SetupWindowData(_THIS, SDL_Window * window, NSWindow *nswindow, SDL_bool created)
{
Feb 12, 2013
Feb 12, 2013
575
NSAutoreleasePool *pool;
576
577
578
579
580
581
SDL_VideoData *videodata = (SDL_VideoData *) _this->driverdata;
SDL_WindowData *data;
/* Allocate the window data */
data = (SDL_WindowData *) SDL_calloc(1, sizeof(*data));
if (!data) {
Mar 31, 2013
Mar 31, 2013
582
return SDL_OutOfMemory();
583
584
585
586
587
588
}
data->window = window;
data->nswindow = nswindow;
data->created = created;
data->videodata = videodata;
Feb 12, 2013
Feb 12, 2013
589
pool = [[NSAutoreleasePool alloc] init];
Feb 12, 2013
Feb 12, 2013
591
592
/* Create an event listener for the window */
data->listener = [[Cocoa_WindowListener alloc] init];
Feb 12, 2013
Feb 12, 2013
594
595
596
597
598
599
600
601
602
/* 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;
}
Feb 12, 2013
Feb 12, 2013
604
605
/* Set up the listener after we create the view */
[data->listener listen:data];
Feb 12, 2013
Feb 12, 2013
607
608
609
610
611
if ([nswindow isVisible]) {
window->flags |= SDL_WINDOW_SHOWN;
} else {
window->flags &= ~SDL_WINDOW_SHOWN;
}
Apr 22, 2013
Apr 22, 2013
612
Feb 12, 2013
Feb 12, 2013
613
614
615
616
617
{
unsigned int style = [nswindow styleMask];
if (style == NSBorderlessWindowMask) {
window->flags |= SDL_WINDOW_BORDERLESS;
Feb 12, 2013
Feb 12, 2013
619
window->flags &= ~SDL_WINDOW_BORDERLESS;
Feb 12, 2013
Feb 12, 2013
621
622
if (style & NSResizableWindowMask) {
window->flags |= SDL_WINDOW_RESIZABLE;
Feb 12, 2013
Feb 12, 2013
624
window->flags &= ~SDL_WINDOW_RESIZABLE;
Jan 6, 2013
Jan 6, 2013
625
626
}
}
Apr 22, 2013
Apr 22, 2013
627
Feb 12, 2013
Feb 12, 2013
628
629
630
631
632
633
/* isZoomed always returns true if the window is not resizable */
if ((window->flags & SDL_WINDOW_RESIZABLE) && [nswindow isZoomed]) {
window->flags |= SDL_WINDOW_MAXIMIZED;
} else {
window->flags &= ~SDL_WINDOW_MAXIMIZED;
}
Apr 22, 2013
Apr 22, 2013
634
Feb 12, 2013
Feb 12, 2013
635
636
637
638
639
if ([nswindow isMiniaturized]) {
window->flags |= SDL_WINDOW_MINIMIZED;
} else {
window->flags &= ~SDL_WINDOW_MINIMIZED;
}
Apr 22, 2013
Apr 22, 2013
640
Feb 12, 2013
Feb 12, 2013
641
642
643
644
645
if ([nswindow isKeyWindow]) {
window->flags |= SDL_WINDOW_INPUT_FOCUS;
SDL_SetKeyboardFocus(data->window);
}
Apr 22, 2013
Apr 22, 2013
646
647
648
649
650
/* Prevents the window's "window device" from being destroyed when it is
* hidden. See http://www.mikeash.com/pyblog/nsopenglcontext-and-one-shot.html
*/
[nswindow setOneShot:NO];
Feb 12, 2013
Feb 12, 2013
651
652
653
654
/* All done! */
[pool release];
window->driverdata = data;
return 0;
655
656
657
658
659
}
int
Cocoa_CreateWindow(_THIS, SDL_Window * window)
{
Feb 12, 2013
Feb 12, 2013
660
661
662
663
664
665
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSWindow *nswindow;
SDL_VideoDisplay *display = SDL_GetDisplayForWindow(window);
NSRect rect;
SDL_Rect bounds;
unsigned int style;
Feb 12, 2013
Feb 12, 2013
667
668
669
670
671
672
Cocoa_GetDisplayBounds(_this, display, &bounds);
rect.origin.x = window->x;
rect.origin.y = window->y;
rect.size.width = window->w;
rect.size.height = window->h;
ConvertNSRect(&rect);
Feb 12, 2013
Feb 12, 2013
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
style = GetWindowStyle(window);
/* Figure out which screen to place this window */
NSArray *screens = [NSScreen screens];
NSScreen *screen = nil;
NSScreen *candidate;
int i, count = [screens count];
for (i = 0; i < count; ++i) {
candidate = [screens objectAtIndex:i];
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;
Feb 12, 2013
Feb 12, 2013
692
}
Apr 22, 2013
Apr 22, 2013
693
nswindow = [[SDLWindow alloc] initWithContentRect:rect styleMask:style backing:NSBackingStoreBuffered defer:NO screen:screen];
May 22, 2013
May 22, 2013
694
[nswindow setBackgroundColor:[NSColor blackColor]];
May 18, 2013
May 18, 2013
696
/* Create a default view for this window */
Feb 12, 2013
Feb 12, 2013
697
698
699
700
rect = [nswindow contentRectForFrameRect:[nswindow frame]];
NSView *contentView = [[SDLView alloc] initWithFrame:rect];
[nswindow setContentView: contentView];
[contentView release];
Feb 12, 2013
Feb 12, 2013
702
703
704
705
706
[pool release];
if (SetupWindowData(_this, window, nswindow, SDL_TRUE) < 0) {
[nswindow release];
return -1;
Feb 12, 2013
Feb 12, 2013
708
return 0;
709
710
711
712
713
}
int
Cocoa_CreateWindowFrom(_THIS, SDL_Window * window, const void *data)
{
Feb 12, 2013
Feb 12, 2013
714
NSAutoreleasePool *pool;
715
716
717
NSWindow *nswindow = (NSWindow *) data;
NSString *title;
Feb 12, 2013
Feb 12, 2013
718
719
720
721
722
723
pool = [[NSAutoreleasePool alloc] init];
/* Query the title from the existing window */
title = [nswindow title];
if (title) {
window->title = SDL_strdup([title UTF8String]);
Feb 12, 2013
Feb 12, 2013
726
727
[pool release];
728
729
730
731
732
733
return SetupWindowData(_this, window, nswindow, SDL_FALSE);
}
void
Cocoa_SetWindowTitle(_THIS, SDL_Window * window)
{
Feb 12, 2013
Feb 12, 2013
734
735
736
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
NSString *string;
Feb 12, 2013
Feb 12, 2013
738
739
740
741
if(window->title) {
string = [[NSString alloc] initWithUTF8String:window->title];
} else {
string = [[NSString alloc] init];
Feb 12, 2013
Feb 12, 2013
743
744
745
746
[nswindow setTitle:string];
[string release];
[pool release];
747
748
749
750
751
}
void
Cocoa_SetWindowIcon(_THIS, SDL_Window * window, SDL_Surface * icon)
{
Feb 12, 2013
Feb 12, 2013
752
753
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSImage *nsimage = Cocoa_CreateImage(icon);
Feb 12, 2013
Feb 12, 2013
755
756
if (nsimage) {
[NSApp setApplicationIconImage:nsimage];
Feb 12, 2013
Feb 12, 2013
758
759
[pool release];
760
761
762
763
764
}
void
Cocoa_SetWindowPosition(_THIS, SDL_Window * window)
{
Feb 12, 2013
Feb 12, 2013
765
766
767
768
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
NSRect rect;
Uint32 moveHack;
Feb 12, 2013
Feb 12, 2013
770
771
772
773
774
rect.origin.x = window->x;
rect.origin.y = window->y;
rect.size.width = window->w;
rect.size.height = window->h;
ConvertNSRect(&rect);
Feb 12, 2013
Feb 12, 2013
776
777
778
779
780
781
782
moveHack = s_moveHack;
s_moveHack = 0;
[nswindow setFrameOrigin:rect.origin];
s_moveHack = moveHack;
if (window == _this->current_glwin) {
[((NSOpenGLContext *) _this->current_glctx) update];
Feb 12, 2013
Feb 12, 2013
784
785
[pool release];
786
787
788
789
790
}
void
Cocoa_SetWindowSize(_THIS, SDL_Window * window)
{
Feb 12, 2013
Feb 12, 2013
791
792
793
794
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
SDL_WindowData *windata = (SDL_WindowData *) window->driverdata;
NSWindow *nswindow = windata->nswindow;
NSSize size;
Feb 12, 2013
Feb 12, 2013
796
797
798
size.width = window->w;
size.height = window->h;
[nswindow setContentSize:size];
Feb 12, 2013
Feb 12, 2013
800
801
if (window == _this->current_glwin) {
[((NSOpenGLContext *) _this->current_glctx) update];
Feb 12, 2013
Feb 12, 2013
803
804
[pool release];
Nov 18, 2012
Nov 18, 2012
807
808
809
void
Cocoa_SetWindowMinimumSize(_THIS, SDL_Window * window)
{
Feb 12, 2013
Feb 12, 2013
810
811
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
SDL_WindowData *windata = (SDL_WindowData *) window->driverdata;
May 18, 2013
May 18, 2013
812
Feb 12, 2013
Feb 12, 2013
813
814
815
NSSize minSize;
minSize.width = window->min_w;
minSize.height = window->min_h;
May 18, 2013
May 18, 2013
816
Feb 12, 2013
Feb 12, 2013
817
[windata->nswindow setContentMinSize:minSize];
May 18, 2013
May 18, 2013
818
Feb 12, 2013
Feb 12, 2013
819
[pool release];
Dec 31, 2012
Dec 31, 2012
820
821
822
823
824
}
void
Cocoa_SetWindowMaximumSize(_THIS, SDL_Window * window)
{
Feb 12, 2013
Feb 12, 2013
825
826
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
SDL_WindowData *windata = (SDL_WindowData *) window->driverdata;
May 18, 2013
May 18, 2013
827
Feb 12, 2013
Feb 12, 2013
828
829
830
NSSize maxSize;
maxSize.width = window->max_w;
maxSize.height = window->max_h;
May 18, 2013
May 18, 2013
831
Feb 12, 2013
Feb 12, 2013
832
[windata->nswindow setContentMaxSize:maxSize];
May 18, 2013
May 18, 2013
833
Feb 12, 2013
Feb 12, 2013
834
[pool release];
Nov 18, 2012
Nov 18, 2012
835
836
}
837
838
839
void
Cocoa_ShowWindow(_THIS, SDL_Window * window)
{
Feb 12, 2013
Feb 12, 2013
840
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Apr 23, 2013
Apr 23, 2013
841
842
SDL_WindowData *windowData = ((SDL_WindowData *) window->driverdata);
NSWindow *nswindow = windowData->nswindow;
Feb 12, 2013
Feb 12, 2013
844
if (![nswindow isMiniaturized]) {
Apr 23, 2013
Apr 23, 2013
845
[windowData->listener pauseVisibleObservation];
Feb 12, 2013
Feb 12, 2013
846
[nswindow makeKeyAndOrderFront:nil];
Apr 23, 2013
Apr 23, 2013
847
[windowData->listener resumeVisibleObservation];
Feb 12, 2013
Feb 12, 2013
849
[pool release];
850
851
852
853
854
}
void
Cocoa_HideWindow(_THIS, SDL_Window * window)
{
Feb 12, 2013
Feb 12, 2013
855
856
857
858
859
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
[nswindow orderOut:nil];
[pool release];
860
861
862
863
864
}
void
Cocoa_RaiseWindow(_THIS, SDL_Window * window)
{
Feb 12, 2013
Feb 12, 2013
865
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Apr 23, 2013
Apr 23, 2013
866
867
SDL_WindowData *windowData = ((SDL_WindowData *) window->driverdata);
NSWindow *nswindow = windowData->nswindow;
Feb 12, 2013
Feb 12, 2013
868
Apr 23, 2013
Apr 23, 2013
869
[windowData->listener pauseVisibleObservation];
Feb 12, 2013
Feb 12, 2013
870
[nswindow makeKeyAndOrderFront:nil];
Apr 23, 2013
Apr 23, 2013
871
872
[windowData->listener resumeVisibleObservation];
Feb 12, 2013
Feb 12, 2013
873
[pool release];
874
875
876
877
878
}
void
Cocoa_MaximizeWindow(_THIS, SDL_Window * window)
{
Feb 12, 2013
Feb 12, 2013
879
880
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Feb 12, 2013
Feb 12, 2013
882
883
884
885
[nswindow zoom:nil];
if (window == _this->current_glwin) {
[((NSOpenGLContext *) _this->current_glctx) update];
Feb 12, 2013
Feb 12, 2013
887
888
[pool release];
889
890
891
892
893
}
void
Cocoa_MinimizeWindow(_THIS, SDL_Window * window)
{
Feb 12, 2013
Feb 12, 2013
894
895
896
897
898
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
[nswindow miniaturize:nil];
[pool release];
899
900
901
902
903
}
void
Cocoa_RestoreWindow(_THIS, SDL_Window * window)
{
Feb 12, 2013
Feb 12, 2013
904
905
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Feb 12, 2013
Feb 12, 2013
907
908
909
910
if ([nswindow isMiniaturized]) {
[nswindow deminiaturize:nil];
} else if ((window->flags & SDL_WINDOW_RESIZABLE) && [nswindow isZoomed]) {
[nswindow zoom:nil];
Feb 12, 2013
Feb 12, 2013
912
[pool release];
913
914
915
916
917
918
919
920
921
922
923
}
static NSWindow *
Cocoa_RebuildWindow(SDL_WindowData * data, NSWindow * nswindow, unsigned style)
{
if (!data->created) {
/* Don't mess with other people's windows... */
return nswindow;
}
[data->listener close];
Apr 22, 2013
Apr 22, 2013
924
data->nswindow = [[SDLWindow alloc] initWithContentRect:[[nswindow contentView] frame] styleMask:style backing:NSBackingStoreBuffered defer:NO screen:[nswindow screen]];
925
[data->nswindow setContentView:[nswindow contentView]];
Apr 22, 2013
Apr 22, 2013
926
927
/* See comment in SetupWindowData. */
[data->nswindow setOneShot:NO];
928
929
930
931
932
933
934
935
936
937
938
939
[data->listener listen:data];
[nswindow close];
return data->nswindow;
}
void
Cocoa_SetWindowBordered(_THIS, SDL_Window * window, SDL_bool bordered)
{
/* this message arrived in 10.6. You're out of luck on older OSes. */
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060
Feb 12, 2013
Feb 12, 2013
940
941
942
943
944
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
if ([nswindow respondsToSelector:@selector(setStyleMask:)]) {
[nswindow setStyleMask:GetWindowStyle(window)];
if (bordered) {
May 18, 2013
May 18, 2013
945
Cocoa_SetWindowTitle(_this, window); /* this got blanked out. */
Feb 12, 2013
Feb 12, 2013
948
[pool release];
949
950
951
952
953
954
#endif
}
void
Cocoa_SetWindowFullscreen(_THIS, SDL_Window * window, SDL_VideoDisplay * display, SDL_bool fullscreen)
{
Feb 12, 2013
Feb 12, 2013
955
956
957
958
959
960
961
962
963
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
NSWindow *nswindow = data->nswindow;
NSRect rect;
/* The view responder chain gets messed with during setStyleMask */
if ([[nswindow contentView] nextResponder] == data->listener) {
[[nswindow contentView] setNextResponder:nil];
}
Feb 12, 2013
Feb 12, 2013
965
966
if (fullscreen) {
SDL_Rect bounds;
Feb 12, 2013
Feb 12, 2013
968
969
970
971
972
973
Cocoa_GetDisplayBounds(_this, display, &bounds);
rect.origin.x = bounds.x;
rect.origin.y = bounds.y;
rect.size.width = bounds.w;
rect.size.height = bounds.h;
ConvertNSRect(&rect);
Feb 12, 2013
Feb 12, 2013
975
976
977
978
979
/* Hack to fix origin on Mac OS X 10.4 */
NSRect screenRect = [[nswindow screen] frame];
if (screenRect.size.height >= 1.0f) {
rect.origin.y += (screenRect.size.height - rect.size.height);
}
Feb 12, 2013
Feb 12, 2013
981
982
if ([nswindow respondsToSelector: @selector(setStyleMask:)]) {
[nswindow performSelector: @selector(setStyleMask:) withObject: (id)NSBorderlessWindowMask];
Feb 12, 2013
Feb 12, 2013
984
nswindow = Cocoa_RebuildWindow(data, nswindow, NSBorderlessWindowMask);
Feb 12, 2013
Feb 12, 2013
986
987
988
989
990
991
} else {
rect.origin.x = window->windowed.x;
rect.origin.y = window->windowed.y;
rect.size.width = window->windowed.w;
rect.size.height = window->windowed.h;
ConvertNSRect(&rect);
Feb 12, 2013
Feb 12, 2013
993
994
995
996
if ([nswindow respondsToSelector: @selector(setStyleMask:)]) {
[nswindow performSelector: @selector(setStyleMask:) withObject: (id)(uintptr_t)GetWindowStyle(window)];
} else {
nswindow = Cocoa_RebuildWindow(data, nswindow, GetWindowStyle(window));
Jan 6, 2013
Jan 6, 2013
997
}
Feb 12, 2013
Feb 12, 2013
998
}
Feb 12, 2013
Feb 12, 2013
1000
/* The view responder chain gets messed with during setStyleMask */