1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 15:17:25 -04:00
glfw/src/cocoa_window.m

1302 lines
37 KiB
Mathematica
Raw Normal View History

2010-09-07 11:34:51 -04:00
//========================================================================
// GLFW 3.1 OS X - www.glfw.org
2010-09-07 11:34:51 -04:00
//------------------------------------------------------------------------
// Copyright (c) 2009-2010 Camilla Berglund <elmindreda@elmindreda.org>
//
// 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 "internal.h"
// Needed for _NSGetProgname
#include <crt_externs.h>
// Center the cursor in the view of the window
//
static void centerCursor(_GLFWwindow *window)
{
int width, height;
_glfwPlatformGetWindowSize(window, &width, &height);
_glfwPlatformSetCursorPos(window, width / 2.0, height / 2.0);
}
// Update the cursor to match the specified cursor mode
//
2014-01-15 07:21:13 -05:00
static void setModeCursor(_GLFWwindow* window)
{
2014-01-15 07:21:13 -05:00
if (window->cursorMode == GLFW_CURSOR_NORMAL)
{
if (window->cursor)
2014-01-23 09:24:57 -05:00
[(NSCursor*) window->cursor->ns.object set];
else
[[NSCursor arrowCursor] set];
}
else
[(NSCursor*) _glfw.ns.cursor set];
}
// Enter fullscreen mode
//
static void enterFullscreenMode(_GLFWwindow* window)
{
if ([window->ns.view isInFullScreenMode])
return;
_glfwSetVideoMode(window->monitor, &window->videoMode);
2013-10-09 17:58:43 -04:00
NSDictionary* options = [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithBool:NO],
NSFullScreenModeAllScreens,
nil];
[window->ns.view enterFullScreenMode:window->monitor->ns.screen
2013-10-09 17:58:43 -04:00
withOptions:options];
// HACK: Synthesize focus event as window does not become key when the view
2013-11-10 07:56:27 -05:00
// is made full screen
// TODO: Remove this when moving to a full screen window
_glfwInputWindowFocus(window, GL_TRUE);
}
// Leave fullscreen mode
//
static void leaveFullscreenMode(_GLFWwindow* window)
{
if (![window->ns.view isInFullScreenMode])
return;
// HACK: Synthesize focus event as window does not become key when the view
2013-11-10 07:56:27 -05:00
// is made full screen
// TODO: Remove this when moving to a full screen window
_glfwInputWindowFocus(window, GL_FALSE);
_glfwRestoreVideoMode(window->monitor);
// Exit full screen after the video restore to avoid a nasty display
// flickering during the fade
[window->ns.view exitFullScreenModeWithOptions:nil];
}
2013-05-22 12:03:54 -04:00
// Transforms the specified y-coordinate between the CG display and NS screen
// coordinate systems
//
static float transformY(float y)
{
const float height = CGDisplayBounds(CGMainDisplayID()).size.height;
return height - y;
}
// Returns the backing rect of the specified window
//
static NSRect convertRectToBacking(_GLFWwindow* window, NSRect contentRect)
{
2013-07-04 09:02:01 -04:00
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1070
if (floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_6)
return [window->ns.view convertRectToBacking:contentRect];
else
2013-07-04 09:02:01 -04:00
#endif /*MAC_OS_X_VERSION_MAX_ALLOWED*/
return contentRect;
}
2013-02-04 07:22:10 -05:00
//------------------------------------------------------------------------
2010-09-07 11:34:51 -04:00
// Delegate for window related notifications
2013-02-04 07:22:10 -05:00
//------------------------------------------------------------------------
2010-09-07 11:34:51 -04:00
@interface GLFWWindowDelegate : NSObject
2010-09-15 12:57:25 -04:00
{
_GLFWwindow* window;
}
- (id)initWithGlfwWindow:(_GLFWwindow *)initWindow;
2010-09-15 12:57:25 -04:00
2010-09-07 11:34:51 -04:00
@end
@implementation GLFWWindowDelegate
2010-09-16 18:39:35 -04:00
- (id)initWithGlfwWindow:(_GLFWwindow *)initWindow
2010-09-15 12:57:25 -04:00
{
self = [super init];
if (self != nil)
window = initWindow;
return self;
}
- (BOOL)windowShouldClose:(id)sender
2010-09-07 11:34:51 -04:00
{
_glfwInputWindowCloseRequest(window);
2010-09-07 11:34:51 -04:00
return NO;
}
- (void)windowDidResize:(NSNotification *)notification
{
[window->nsgl.context update];
2010-09-07 11:34:51 -04:00
const NSRect contentRect = [window->ns.view frame];
const NSRect fbRect = convertRectToBacking(window, contentRect);
_glfwInputFramebufferSize(window, fbRect.size.width, fbRect.size.height);
_glfwInputWindowSize(window, contentRect.size.width, contentRect.size.height);
_glfwInputWindowDamage(window);
if (window->cursorMode == GLFW_CURSOR_DISABLED)
2013-04-21 16:46:35 -04:00
centerCursor(window);
2010-09-07 11:34:51 -04:00
}
- (void)windowDidMove:(NSNotification *)notification
{
[window->nsgl.context update];
int x, y;
_glfwPlatformGetWindowPos(window, &x, &y);
_glfwInputWindowPos(window, x, y);
if (window->cursorMode == GLFW_CURSOR_DISABLED)
2013-04-21 16:46:35 -04:00
centerCursor(window);
}
2010-09-16 18:39:35 -04:00
- (void)windowDidMiniaturize:(NSNotification *)notification
{
_glfwInputWindowIconify(window, GL_TRUE);
}
2010-09-16 18:39:35 -04:00
- (void)windowDidDeminiaturize:(NSNotification *)notification
{
if (window->monitor)
enterFullscreenMode(window);
_glfwInputWindowIconify(window, GL_FALSE);
}
2010-09-16 18:39:35 -04:00
- (void)windowDidBecomeKey:(NSNotification *)notification
{
_glfwInputWindowFocus(window, GL_TRUE);
2014-01-18 18:43:17 -05:00
_glfwPlatformApplyCursorMode(window);
}
2010-09-16 18:39:35 -04:00
- (void)windowDidResignKey:(NSNotification *)notification
{
_glfwInputWindowFocus(window, GL_FALSE);
window->cursorMode = GLFW_CURSOR_NORMAL;
_glfwPlatformApplyCursorMode(window);
}
@end
2012-03-07 09:04:14 -05:00
2013-02-04 07:22:10 -05:00
//------------------------------------------------------------------------
// Delegate for application related notifications
2013-02-04 07:22:10 -05:00
//------------------------------------------------------------------------
@interface GLFWApplicationDelegate : NSObject
@end
@implementation GLFWApplicationDelegate
2010-09-07 11:34:51 -04:00
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender
{
_GLFWwindow* window;
for (window = _glfw.windowListHead; window; window = window->next)
_glfwInputWindowCloseRequest(window);
2010-09-07 11:34:51 -04:00
return NSTerminateCancel;
}
- (void)applicationDidHide:(NSNotification *)notification
{
_GLFWwindow* window;
for (window = _glfw.windowListHead; window; window = window->next)
_glfwInputWindowVisibility(window, GL_FALSE);
}
- (void)applicationDidUnhide:(NSNotification *)notification
{
_GLFWwindow* window;
for (window = _glfw.windowListHead; window; window = window->next)
2012-08-21 15:35:42 -04:00
{
if ([window->ns.object isVisible])
2012-08-21 15:35:42 -04:00
_glfwInputWindowVisibility(window, GL_TRUE);
}
}
2013-06-05 19:28:01 -04:00
- (void)applicationDidChangeScreenParameters:(NSNotification *) notification
{
_glfwInputMonitorChange();
}
2010-09-07 11:34:51 -04:00
@end
// Translates OS X key modifiers into GLFW ones
//
2013-05-30 11:19:12 -04:00
static int translateFlags(NSUInteger flags)
{
int mods = 0;
if (flags & NSShiftKeyMask)
mods |= GLFW_MOD_SHIFT;
if (flags & NSControlKeyMask)
mods |= GLFW_MOD_CONTROL;
if (flags & NSAlternateKeyMask)
mods |= GLFW_MOD_ALT;
if (flags & NSCommandKeyMask)
mods |= GLFW_MOD_SUPER;
return mods;
}
// Translates a OS X keycode to a GLFW keycode
2013-02-04 07:22:10 -05:00
//
2013-05-30 11:19:12 -04:00
static int translateKey(unsigned int key)
2010-09-07 11:34:51 -04:00
{
// Keyboard symbol translation table
static const unsigned int table[128] =
{
/* 00 */ GLFW_KEY_A,
/* 01 */ GLFW_KEY_S,
/* 02 */ GLFW_KEY_D,
/* 03 */ GLFW_KEY_F,
/* 04 */ GLFW_KEY_H,
/* 05 */ GLFW_KEY_G,
/* 06 */ GLFW_KEY_Z,
/* 07 */ GLFW_KEY_X,
/* 08 */ GLFW_KEY_C,
/* 09 */ GLFW_KEY_V,
2013-09-25 17:55:05 -04:00
/* 0a */ GLFW_KEY_WORLD_1,
/* 0b */ GLFW_KEY_B,
/* 0c */ GLFW_KEY_Q,
/* 0d */ GLFW_KEY_W,
/* 0e */ GLFW_KEY_E,
/* 0f */ GLFW_KEY_R,
/* 10 */ GLFW_KEY_Y,
/* 11 */ GLFW_KEY_T,
/* 12 */ GLFW_KEY_1,
/* 13 */ GLFW_KEY_2,
/* 14 */ GLFW_KEY_3,
/* 15 */ GLFW_KEY_4,
/* 16 */ GLFW_KEY_6,
/* 17 */ GLFW_KEY_5,
/* 18 */ GLFW_KEY_EQUAL,
/* 19 */ GLFW_KEY_9,
/* 1a */ GLFW_KEY_7,
/* 1b */ GLFW_KEY_MINUS,
/* 1c */ GLFW_KEY_8,
/* 1d */ GLFW_KEY_0,
/* 1e */ GLFW_KEY_RIGHT_BRACKET,
/* 1f */ GLFW_KEY_O,
/* 20 */ GLFW_KEY_U,
/* 21 */ GLFW_KEY_LEFT_BRACKET,
/* 22 */ GLFW_KEY_I,
/* 23 */ GLFW_KEY_P,
/* 24 */ GLFW_KEY_ENTER,
/* 25 */ GLFW_KEY_L,
/* 26 */ GLFW_KEY_J,
/* 27 */ GLFW_KEY_APOSTROPHE,
/* 28 */ GLFW_KEY_K,
/* 29 */ GLFW_KEY_SEMICOLON,
/* 2a */ GLFW_KEY_BACKSLASH,
/* 2b */ GLFW_KEY_COMMA,
/* 2c */ GLFW_KEY_SLASH,
/* 2d */ GLFW_KEY_N,
/* 2e */ GLFW_KEY_M,
/* 2f */ GLFW_KEY_PERIOD,
/* 30 */ GLFW_KEY_TAB,
/* 31 */ GLFW_KEY_SPACE,
2013-09-25 17:55:05 -04:00
/* 32 */ GLFW_KEY_GRAVE_ACCENT,
/* 33 */ GLFW_KEY_BACKSPACE,
2013-05-30 11:19:12 -04:00
/* 34 */ GLFW_KEY_UNKNOWN,
/* 35 */ GLFW_KEY_ESCAPE,
/* 36 */ GLFW_KEY_RIGHT_SUPER,
/* 37 */ GLFW_KEY_LEFT_SUPER,
/* 38 */ GLFW_KEY_LEFT_SHIFT,
/* 39 */ GLFW_KEY_CAPS_LOCK,
/* 3a */ GLFW_KEY_LEFT_ALT,
/* 3b */ GLFW_KEY_LEFT_CONTROL,
/* 3c */ GLFW_KEY_RIGHT_SHIFT,
/* 3d */ GLFW_KEY_RIGHT_ALT,
/* 3e */ GLFW_KEY_RIGHT_CONTROL,
2013-05-30 11:19:12 -04:00
/* 3f */ GLFW_KEY_UNKNOWN, /* Function */
/* 40 */ GLFW_KEY_F17,
/* 41 */ GLFW_KEY_KP_DECIMAL,
2013-05-30 11:19:12 -04:00
/* 42 */ GLFW_KEY_UNKNOWN,
/* 43 */ GLFW_KEY_KP_MULTIPLY,
2013-05-30 11:19:12 -04:00
/* 44 */ GLFW_KEY_UNKNOWN,
/* 45 */ GLFW_KEY_KP_ADD,
2013-05-30 11:19:12 -04:00
/* 46 */ GLFW_KEY_UNKNOWN,
/* 47 */ GLFW_KEY_NUM_LOCK, /* Really KeypadClear... */
2013-05-30 11:19:12 -04:00
/* 48 */ GLFW_KEY_UNKNOWN, /* VolumeUp */
/* 49 */ GLFW_KEY_UNKNOWN, /* VolumeDown */
/* 4a */ GLFW_KEY_UNKNOWN, /* Mute */
/* 4b */ GLFW_KEY_KP_DIVIDE,
/* 4c */ GLFW_KEY_KP_ENTER,
2013-05-30 11:19:12 -04:00
/* 4d */ GLFW_KEY_UNKNOWN,
/* 4e */ GLFW_KEY_KP_SUBTRACT,
/* 4f */ GLFW_KEY_F18,
/* 50 */ GLFW_KEY_F19,
/* 51 */ GLFW_KEY_KP_EQUAL,
/* 52 */ GLFW_KEY_KP_0,
/* 53 */ GLFW_KEY_KP_1,
/* 54 */ GLFW_KEY_KP_2,
/* 55 */ GLFW_KEY_KP_3,
/* 56 */ GLFW_KEY_KP_4,
/* 57 */ GLFW_KEY_KP_5,
/* 58 */ GLFW_KEY_KP_6,
/* 59 */ GLFW_KEY_KP_7,
/* 5a */ GLFW_KEY_F20,
/* 5b */ GLFW_KEY_KP_8,
/* 5c */ GLFW_KEY_KP_9,
2013-05-30 11:19:12 -04:00
/* 5d */ GLFW_KEY_UNKNOWN,
/* 5e */ GLFW_KEY_UNKNOWN,
/* 5f */ GLFW_KEY_UNKNOWN,
/* 60 */ GLFW_KEY_F5,
/* 61 */ GLFW_KEY_F6,
/* 62 */ GLFW_KEY_F7,
/* 63 */ GLFW_KEY_F3,
/* 64 */ GLFW_KEY_F8,
/* 65 */ GLFW_KEY_F9,
2013-05-30 11:19:12 -04:00
/* 66 */ GLFW_KEY_UNKNOWN,
/* 67 */ GLFW_KEY_F11,
2013-05-30 11:19:12 -04:00
/* 68 */ GLFW_KEY_UNKNOWN,
/* 69 */ GLFW_KEY_F13,
/* 6a */ GLFW_KEY_F16,
/* 6b */ GLFW_KEY_F14,
2013-05-30 11:19:12 -04:00
/* 6c */ GLFW_KEY_UNKNOWN,
/* 6d */ GLFW_KEY_F10,
2013-05-30 11:19:12 -04:00
/* 6e */ GLFW_KEY_UNKNOWN,
/* 6f */ GLFW_KEY_F12,
2013-05-30 11:19:12 -04:00
/* 70 */ GLFW_KEY_UNKNOWN,
/* 71 */ GLFW_KEY_F15,
/* 72 */ GLFW_KEY_INSERT, /* Really Help... */
/* 73 */ GLFW_KEY_HOME,
/* 74 */ GLFW_KEY_PAGE_UP,
/* 75 */ GLFW_KEY_DELETE,
/* 76 */ GLFW_KEY_F4,
/* 77 */ GLFW_KEY_END,
/* 78 */ GLFW_KEY_F2,
/* 79 */ GLFW_KEY_PAGE_DOWN,
/* 7a */ GLFW_KEY_F1,
/* 7b */ GLFW_KEY_LEFT,
/* 7c */ GLFW_KEY_RIGHT,
/* 7d */ GLFW_KEY_DOWN,
/* 7e */ GLFW_KEY_UP,
2013-05-30 11:19:12 -04:00
/* 7f */ GLFW_KEY_UNKNOWN,
};
2013-05-30 11:19:12 -04:00
if (key >= 128)
return GLFW_KEY_UNKNOWN;
2010-09-07 11:34:51 -04:00
2013-05-30 11:19:12 -04:00
return table[key];
2010-09-07 11:34:51 -04:00
}
2012-03-07 09:04:14 -05:00
2013-02-04 07:22:10 -05:00
//------------------------------------------------------------------------
2010-09-07 11:34:51 -04:00
// Content view class for the GLFW window
2013-02-04 07:22:10 -05:00
//------------------------------------------------------------------------
2010-09-07 11:34:51 -04:00
@interface GLFWContentView : NSView
2010-09-15 12:57:25 -04:00
{
_GLFWwindow* window;
NSTrackingArea* trackingArea;
2010-09-15 12:57:25 -04:00
}
2010-09-16 18:39:35 -04:00
- (id)initWithGlfwWindow:(_GLFWwindow *)initWindow;
2010-09-15 12:57:25 -04:00
2010-09-07 11:34:51 -04:00
@end
@implementation GLFWContentView
+ (void)initialize
{
if (self == [GLFWContentView class])
{
2013-04-21 16:46:35 -04:00
if (_glfw.ns.cursor == nil)
{
NSImage* data = [[NSImage alloc] initWithSize:NSMakeSize(16, 16)];
2013-04-21 16:46:35 -04:00
_glfw.ns.cursor = [[NSCursor alloc] initWithImage:data
hotSpot:NSZeroPoint];
[data release];
}
}
}
2010-09-16 18:39:35 -04:00
- (id)initWithGlfwWindow:(_GLFWwindow *)initWindow
2010-09-15 12:57:25 -04:00
{
self = [super init];
if (self != nil)
{
2010-09-15 12:57:25 -04:00
window = initWindow;
trackingArea = nil;
2013-12-22 10:38:56 -05:00
[self updateTrackingAreas];
2013-07-10 05:42:14 -04:00
[self registerForDraggedTypes:[NSArray arrayWithObjects:
NSFilenamesPboardType, nil]];
}
2010-09-15 12:57:25 -04:00
return self;
}
-(void)dealloc
{
[trackingArea release];
[super dealloc];
}
2010-09-07 11:34:51 -04:00
- (BOOL)isOpaque
{
return YES;
}
- (BOOL)canBecomeKeyView
{
return YES;
}
- (BOOL)acceptsFirstResponder
{
return YES;
}
- (void)cursorUpdate:(NSEvent *)event
{
2014-01-15 07:21:13 -05:00
setModeCursor(window);
}
2010-09-07 11:34:51 -04:00
- (void)mouseDown:(NSEvent *)event
{
_glfwInputMouseClick(window,
GLFW_MOUSE_BUTTON_LEFT,
GLFW_PRESS,
2013-05-30 11:19:12 -04:00
translateFlags([event modifierFlags]));
2010-09-07 11:34:51 -04:00
}
- (void)mouseDragged:(NSEvent *)event
{
[self mouseMoved:event];
}
- (void)mouseUp:(NSEvent *)event
{
_glfwInputMouseClick(window,
GLFW_MOUSE_BUTTON_LEFT,
GLFW_RELEASE,
2013-05-30 11:19:12 -04:00
translateFlags([event modifierFlags]));
2010-09-07 11:34:51 -04:00
}
- (void)mouseMoved:(NSEvent *)event
{
if (window->cursorMode == GLFW_CURSOR_DISABLED)
_glfwInputCursorMotion(window, [event deltaX], [event deltaY]);
2010-09-07 11:34:51 -04:00
else
{
2013-06-03 19:51:40 -04:00
const NSRect contentRect = [window->ns.view frame];
2012-07-01 18:36:20 -04:00
const NSPoint p = [event locationInWindow];
2010-09-07 11:34:51 -04:00
2013-04-04 10:16:21 -04:00
_glfwInputCursorMotion(window, p.x, contentRect.size.height - p.y);
2011-05-21 16:50:25 -04:00
}
2010-09-07 11:34:51 -04:00
}
- (void)rightMouseDown:(NSEvent *)event
{
_glfwInputMouseClick(window,
GLFW_MOUSE_BUTTON_RIGHT,
GLFW_PRESS,
2013-05-30 11:19:12 -04:00
translateFlags([event modifierFlags]));
2010-09-07 11:34:51 -04:00
}
- (void)rightMouseDragged:(NSEvent *)event
{
[self mouseMoved:event];
}
- (void)rightMouseUp:(NSEvent *)event
{
_glfwInputMouseClick(window,
GLFW_MOUSE_BUTTON_RIGHT,
GLFW_RELEASE,
2013-05-30 11:19:12 -04:00
translateFlags([event modifierFlags]));
2010-09-07 11:34:51 -04:00
}
- (void)otherMouseDown:(NSEvent *)event
{
_glfwInputMouseClick(window,
(int) [event buttonNumber],
GLFW_PRESS,
2013-05-30 11:19:12 -04:00
translateFlags([event modifierFlags]));
2010-09-07 11:34:51 -04:00
}
- (void)otherMouseDragged:(NSEvent *)event
{
[self mouseMoved:event];
}
- (void)otherMouseUp:(NSEvent *)event
{
_glfwInputMouseClick(window,
(int) [event buttonNumber],
GLFW_RELEASE,
2013-05-30 11:19:12 -04:00
translateFlags([event modifierFlags]));
2010-09-07 11:34:51 -04:00
}
- (void)mouseExited:(NSEvent *)event
{
window->ns.cursorInside = GL_FALSE;
_glfwInputCursorEnter(window, GL_FALSE);
}
- (void)mouseEntered:(NSEvent *)event
{
window->ns.cursorInside = GL_TRUE;
_glfwInputCursorEnter(window, GL_TRUE);
}
- (void)viewDidChangeBackingProperties
{
const NSRect contentRect = [window->ns.view frame];
const NSRect fbRect = convertRectToBacking(window, contentRect);
_glfwInputFramebufferSize(window, fbRect.size.width, fbRect.size.height);
}
- (void)updateTrackingAreas
{
if (trackingArea != nil)
{
[self removeTrackingArea:trackingArea];
[trackingArea release];
}
NSTrackingAreaOptions options = NSTrackingMouseEnteredAndExited |
NSTrackingActiveInKeyWindow |
NSTrackingCursorUpdate |
NSTrackingInVisibleRect;
trackingArea = [[NSTrackingArea alloc] initWithRect:[self bounds]
options:options
owner:self
userInfo:nil];
[self addTrackingArea:trackingArea];
[super updateTrackingAreas];
}
2010-09-07 11:34:51 -04:00
- (void)keyDown:(NSEvent *)event
{
2013-05-30 11:19:12 -04:00
const int key = translateKey([event keyCode]);
const int mods = translateFlags([event modifierFlags]);
_glfwInputKey(window, key, [event keyCode], GLFW_PRESS, mods);
2013-04-30 13:02:31 -04:00
NSString* characters = [event characters];
NSUInteger i, length = [characters length];
for (i = 0; i < length; i++)
_glfwInputChar(window, [characters characterAtIndex:i]);
2010-09-07 11:34:51 -04:00
}
- (void)flagsChanged:(NSEvent *)event
{
2013-05-30 11:19:12 -04:00
int action;
2014-06-17 05:29:34 -04:00
const unsigned int modifierFlags =
[event modifierFlags] & NSDeviceIndependentModifierFlagsMask;
2014-06-17 05:29:34 -04:00
const int key = translateKey([event keyCode]);
const int mods = translateFlags(modifierFlags);
2010-09-07 11:34:51 -04:00
2014-06-17 05:29:34 -04:00
if (modifierFlags == window->ns.modifierFlags)
{
if (window->key[key] == GLFW_PRESS)
action = GLFW_RELEASE;
else
action = GLFW_PRESS;
}
else if (modifierFlags > window->ns.modifierFlags)
2013-04-21 15:54:33 -04:00
action = GLFW_PRESS;
2010-09-07 11:34:51 -04:00
else
2013-04-21 15:54:33 -04:00
action = GLFW_RELEASE;
2010-09-07 11:34:51 -04:00
2014-06-17 05:29:34 -04:00
window->ns.modifierFlags = modifierFlags;
2013-05-30 11:19:12 -04:00
_glfwInputKey(window, key, [event keyCode], action, mods);
2010-09-07 11:34:51 -04:00
}
- (void)keyUp:(NSEvent *)event
{
2013-05-30 11:19:12 -04:00
const int key = translateKey([event keyCode]);
const int mods = translateFlags([event modifierFlags]);
_glfwInputKey(window, key, [event keyCode], GLFW_RELEASE, mods);
2010-09-07 11:34:51 -04:00
}
- (void)scrollWheel:(NSEvent *)event
{
double deltaX, deltaY;
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1070
if (floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_6)
{
deltaX = [event scrollingDeltaX];
deltaY = [event scrollingDeltaY];
if ([event hasPreciseScrollingDeltas])
{
deltaX *= 0.1;
deltaY *= 0.1;
}
}
else
#endif /*MAC_OS_X_VERSION_MAX_ALLOWED*/
{
deltaX = [event deltaX];
deltaY = [event deltaY];
}
2012-03-28 16:39:48 -04:00
if (fabs(deltaX) > 0.0 || fabs(deltaY) > 0.0)
_glfwInputScroll(window, deltaX, deltaY);
2010-09-07 11:34:51 -04:00
}
2013-12-22 10:38:56 -05:00
- (void)resetCursorRects
2013-07-10 05:42:14 -04:00
{
2013-12-22 10:38:56 -05:00
// This makes the cursor dissapear when the window is
// resized or received a drag operation
2013-07-10 05:42:14 -04:00
[self discardCursorRects];
[self addCursorRect:[self bounds] cursor:_glfw.ns.cursor];
2013-12-22 10:38:56 -05:00
}
2013-07-10 05:42:14 -04:00
- (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender
{
2013-12-22 10:38:56 -05:00
if ((NSDragOperationGeneric & [sender draggingSourceOperationMask])
== NSDragOperationGeneric)
{
[self setNeedsDisplay:YES];
2013-07-10 05:42:14 -04:00
return NSDragOperationGeneric;
}
2013-12-22 10:38:56 -05:00
return NSDragOperationNone;
2013-07-10 05:42:14 -04:00
}
2013-12-22 10:38:56 -05:00
- (BOOL)prepareForDragOperation:(id <NSDraggingInfo>)sender
{
2013-07-10 05:42:14 -04:00
[self setNeedsDisplay:YES];
return YES;
}
2013-12-22 10:38:56 -05:00
- (BOOL)performDragOperation:(id <NSDraggingInfo>)sender
{
NSPasteboard* pasteboard = [sender draggingPasteboard];
NSArray* files = [pasteboard propertyListForType:NSFilenamesPboardType];
2013-12-22 13:28:46 -05:00
int height;
_glfwPlatformGetWindowSize(window, NULL, &height);
_glfwInputCursorMotion(window,
[sender draggingLocation].x,
height - [sender draggingLocation].y);
2013-12-22 10:38:56 -05:00
2013-12-22 13:28:46 -05:00
const int count = [files count];
if (count)
2013-12-22 10:38:56 -05:00
{
2013-12-22 13:28:46 -05:00
NSEnumerator* e = [files objectEnumerator];
char** names = calloc(count, sizeof(char*));
int i;
2013-12-22 10:38:56 -05:00
for (i = 0; i < count; i++)
2013-12-22 13:28:46 -05:00
names[i] = strdup([[e nextObject] UTF8String]);
2013-12-22 10:38:56 -05:00
2013-12-22 13:28:46 -05:00
_glfwInputDrop(window, count, (const char**) names);
2013-12-22 10:38:56 -05:00
for (i = 0; i < count; i++)
2013-12-22 13:28:46 -05:00
free(names[i]);
free(names);
2013-12-22 10:38:56 -05:00
}
return YES;
2013-07-10 05:42:14 -04:00
}
2013-12-22 10:38:56 -05:00
- (void)concludeDragOperation:(id <NSDraggingInfo>)sender
{
2013-07-10 05:42:14 -04:00
[self setNeedsDisplay:YES];
}
2010-09-07 11:34:51 -04:00
@end
2012-03-07 09:04:14 -05:00
2013-04-08 09:16:32 -04:00
//------------------------------------------------------------------------
// GLFW window class
//------------------------------------------------------------------------
@interface GLFWWindow : NSWindow {}
@end
@implementation GLFWWindow
- (BOOL)canBecomeKeyWindow
{
// Required for NSBorderlessWindowMask windows
return YES;
}
@end
2013-02-04 07:22:10 -05:00
//------------------------------------------------------------------------
// GLFW application class
2013-02-04 07:22:10 -05:00
//------------------------------------------------------------------------
@interface GLFWApplication : NSApplication
@end
@implementation GLFWApplication
// From http://cocoadev.com/index.pl?GameKeyboardHandlingAlmost
// This works around an AppKit bug, where key up events while holding
// down the command key don't get sent to the key window.
- (void)sendEvent:(NSEvent *)event
{
if ([event type] == NSKeyUp && ([event modifierFlags] & NSCommandKeyMask))
[[self keyWindow] sendEvent:event];
else
[super sendEvent:event];
}
@end
#if defined(_GLFW_USE_MENUBAR)
// Try to figure out what the calling application is called
2013-02-04 07:22:10 -05:00
//
static NSString* findAppName(void)
{
2013-07-15 12:37:02 -04:00
size_t i;
NSDictionary* infoDictionary = [[NSBundle mainBundle] infoDictionary];
// Keys to search for as potential application names
NSString* GLFWNameKeys[] =
{
@"CFBundleDisplayName",
@"CFBundleName",
@"CFBundleExecutable",
};
for (i = 0; i < sizeof(GLFWNameKeys) / sizeof(GLFWNameKeys[0]); i++)
{
id name = [infoDictionary objectForKey:GLFWNameKeys[i]];
if (name &&
[name isKindOfClass:[NSString class]] &&
2013-06-03 19:51:40 -04:00
![name isEqualToString:@""])
{
return name;
}
}
char** progname = _NSGetProgname();
if (progname && *progname)
return [NSString stringWithUTF8String:*progname];
// Really shouldn't get here
return @"GLFW Application";
}
// Set up the menu bar (manually)
// This is nasty, nasty stuff -- calls to undocumented semi-private APIs that
// could go away at any moment, lots of stuff that really should be
// localize(d|able), etc. Loading a nib would save us this horror, but that
// doesn't seem like a good thing to require of GLFW's clients.
2013-02-04 07:22:10 -05:00
//
2012-03-05 14:30:59 -05:00
static void createMenuBar(void)
{
NSString* appName = findAppName();
NSMenu* bar = [[NSMenu alloc] init];
[NSApp setMainMenu:bar];
NSMenuItem* appMenuItem =
[bar addItemWithTitle:@"" action:NULL keyEquivalent:@""];
NSMenu* appMenu = [[NSMenu alloc] init];
[appMenuItem setSubmenu:appMenu];
[appMenu addItemWithTitle:[NSString stringWithFormat:@"About %@", appName]
action:@selector(orderFrontStandardAboutPanel:)
keyEquivalent:@""];
[appMenu addItem:[NSMenuItem separatorItem]];
NSMenu* servicesMenu = [[NSMenu alloc] init];
[NSApp setServicesMenu:servicesMenu];
[[appMenu addItemWithTitle:@"Services"
action:NULL
keyEquivalent:@""] setSubmenu:servicesMenu];
[appMenu addItem:[NSMenuItem separatorItem]];
[appMenu addItemWithTitle:[NSString stringWithFormat:@"Hide %@", appName]
action:@selector(hide:)
keyEquivalent:@"h"];
[[appMenu addItemWithTitle:@"Hide Others"
action:@selector(hideOtherApplications:)
keyEquivalent:@"h"]
setKeyEquivalentModifierMask:NSAlternateKeyMask | NSCommandKeyMask];
[appMenu addItemWithTitle:@"Show All"
action:@selector(unhideAllApplications:)
keyEquivalent:@""];
[appMenu addItem:[NSMenuItem separatorItem]];
[appMenu addItemWithTitle:[NSString stringWithFormat:@"Quit %@", appName]
action:@selector(terminate:)
keyEquivalent:@"q"];
NSMenuItem* windowMenuItem =
[bar addItemWithTitle:@"" action:NULL keyEquivalent:@""];
NSMenu* windowMenu = [[NSMenu alloc] initWithTitle:@"Window"];
[NSApp setWindowsMenu:windowMenu];
[windowMenuItem setSubmenu:windowMenu];
2013-09-10 13:33:32 -04:00
[windowMenu addItemWithTitle:@"Minimize"
action:@selector(performMiniaturize:)
keyEquivalent:@"m"];
[windowMenu addItemWithTitle:@"Zoom"
action:@selector(performZoom:)
keyEquivalent:@""];
[windowMenu addItem:[NSMenuItem separatorItem]];
[windowMenu addItemWithTitle:@"Bring All to Front"
action:@selector(arrangeInFront:)
keyEquivalent:@""];
2013-10-28 08:01:58 -04:00
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1070
if (floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_6)
{
// TODO: Make this appear at the bottom of the menu (for consistency)
[windowMenu addItem:[NSMenuItem separatorItem]];
[[windowMenu addItemWithTitle:@"Enter Full Screen"
action:@selector(toggleFullScreen:)
keyEquivalent:@"f"]
setKeyEquivalentModifierMask:NSControlKeyMask | NSCommandKeyMask];
}
#endif /*MAC_OS_X_VERSION_MAX_ALLOWED*/
2012-03-05 14:09:06 -05:00
// Prior to Snow Leopard, we need to use this oddly-named semi-private API
// to get the application menu working properly.
SEL setAppleMenuSelector = NSSelectorFromString(@"setAppleMenu:");
[NSApp performSelector:setAppleMenuSelector withObject:appMenu];
}
#endif /* _GLFW_USE_MENUBAR */
// Initialize the Cocoa Application Kit
2013-02-04 07:22:10 -05:00
//
2012-02-25 21:24:42 -05:00
static GLboolean initializeAppKit(void)
{
if (NSApp)
return GL_TRUE;
// Implicitly create shared NSApplication instance
[GLFWApplication sharedApplication];
// In case we are unbundled, make us a proper UI application
[NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
#if defined(_GLFW_USE_MENUBAR)
2012-10-17 11:11:56 -04:00
// Menu bar setup must go between sharedApplication above and
// finishLaunching below, in order to properly emulate the behavior
// of NSApplicationMain
2012-03-05 14:30:59 -05:00
createMenuBar();
#endif
[NSApp finishLaunching];
return GL_TRUE;
}
// Create the Cocoa window
2013-02-04 07:22:10 -05:00
//
static GLboolean createWindow(_GLFWwindow* window,
const _GLFWwndconfig* wndconfig)
{
window->ns.delegate = [[GLFWWindowDelegate alloc] initWithGlfwWindow:window];
if (window->ns.delegate == nil)
{
_glfwInputError(GLFW_PLATFORM_ERROR,
"Cocoa: Failed to create window delegate");
return GL_FALSE;
}
unsigned int styleMask = 0;
2013-04-08 09:16:32 -04:00
if (wndconfig->monitor || !wndconfig->decorated)
2012-09-27 15:37:36 -04:00
styleMask = NSBorderlessWindowMask;
else
{
styleMask = NSTitledWindowMask | NSClosableWindowMask |
NSMiniaturizableWindowMask;
if (wndconfig->resizable)
styleMask |= NSResizableWindowMask;
}
window->ns.object = [[GLFWWindow alloc]
2013-02-11 17:10:49 -05:00
initWithContentRect:NSMakeRect(0, 0, wndconfig->width, wndconfig->height)
styleMask:styleMask
backing:NSBackingStoreBuffered
defer:NO];
if (window->ns.object == nil)
{
_glfwInputError(GLFW_PLATFORM_ERROR, "Cocoa: Failed to create window");
return GL_FALSE;
}
window->ns.view = [[GLFWContentView alloc] initWithGlfwWindow:window];
2013-07-04 09:02:01 -04:00
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1070
if (floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_6)
2013-10-09 18:09:03 -04:00
{
2014-02-10 07:45:13 -05:00
#if defined(_GLFW_USE_RETINA)
[window->ns.view setWantsBestResolutionOpenGLSurface:YES];
2014-02-10 07:45:13 -05:00
#endif
2013-10-09 18:09:03 -04:00
if (wndconfig->resizable)
[window->ns.object setCollectionBehavior:NSWindowCollectionBehaviorFullScreenPrimary];
}
2013-07-04 09:02:01 -04:00
#endif /*MAC_OS_X_VERSION_MAX_ALLOWED*/
2014-05-23 08:01:02 -04:00
if (wndconfig->floating)
[window->ns.object setLevel:NSFloatingWindowLevel];
[window->ns.object setTitle:[NSString stringWithUTF8String:wndconfig->title]];
[window->ns.object setContentView:window->ns.view];
[window->ns.object setDelegate:window->ns.delegate];
[window->ns.object setAcceptsMouseMovedEvents:YES];
[window->ns.object center];
2013-07-04 09:02:01 -04:00
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1070
if (floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_6)
[window->ns.object setRestorable:NO];
2013-07-04 09:02:01 -04:00
#endif /*MAC_OS_X_VERSION_MAX_ALLOWED*/
2012-07-02 09:24:02 -04:00
return GL_TRUE;
}
2010-09-07 11:34:51 -04:00
2012-03-07 09:04:14 -05:00
//////////////////////////////////////////////////////////////////////////
////// GLFW platform API //////
//////////////////////////////////////////////////////////////////////////
int _glfwPlatformCreateWindow(_GLFWwindow* window,
const _GLFWwndconfig* wndconfig,
const _GLFWctxconfig* ctxconfig,
const _GLFWfbconfig* fbconfig)
{
2012-02-25 21:24:42 -05:00
if (!initializeAppKit())
return GL_FALSE;
2012-08-26 09:38:18 -04:00
// There can only be one application delegate, but we allocate it the
// first time a window is created to keep all window code in this file
if (_glfw.ns.delegate == nil)
{
_glfw.ns.delegate = [[GLFWApplicationDelegate alloc] init];
if (_glfw.ns.delegate == nil)
{
_glfwInputError(GLFW_PLATFORM_ERROR,
"Cocoa: Failed to create application delegate");
return GL_FALSE;
}
[NSApp setDelegate:_glfw.ns.delegate];
}
if (!createWindow(window, wndconfig))
return GL_FALSE;
if (!_glfwCreateContext(window, ctxconfig, fbconfig))
return GL_FALSE;
2013-04-30 13:40:29 -04:00
[window->nsgl.context setView:window->ns.view];
2010-09-07 11:34:51 -04:00
2012-09-27 15:37:36 -04:00
if (wndconfig->monitor)
enterFullscreenMode(window);
2010-09-07 11:34:51 -04:00
return GL_TRUE;
}
void _glfwPlatformDestroyWindow(_GLFWwindow* window)
2010-09-07 11:34:51 -04:00
{
[window->ns.object orderOut:nil];
2010-09-07 11:34:51 -04:00
2012-09-27 15:37:36 -04:00
if (window->monitor)
leaveFullscreenMode(window);
2010-09-07 11:34:51 -04:00
_glfwDestroyContext(window);
2010-09-07 11:34:51 -04:00
[window->ns.object setDelegate:nil];
[window->ns.delegate release];
window->ns.delegate = nil;
2010-09-07 11:34:51 -04:00
[window->ns.view release];
window->ns.view = nil;
[window->ns.object close];
window->ns.object = nil;
2010-09-07 11:34:51 -04:00
}
2010-09-15 12:57:25 -04:00
void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char *title)
2010-09-07 11:34:51 -04:00
{
[window->ns.object setTitle:[NSString stringWithUTF8String:title]];
2010-09-07 11:34:51 -04:00
}
void _glfwPlatformGetWindowPos(_GLFWwindow* window, int* xpos, int* ypos)
{
const NSRect contentRect =
[window->ns.object contentRectForFrameRect:[window->ns.object frame]];
if (xpos)
*xpos = contentRect.origin.x;
if (ypos)
2013-05-22 15:37:41 -04:00
*ypos = transformY(contentRect.origin.y + contentRect.size.height);
}
void _glfwPlatformSetWindowPos(_GLFWwindow* window, int x, int y)
{
2013-07-09 11:08:26 -04:00
const NSRect contentRect = [window->ns.view frame];
const NSRect dummyRect = NSMakeRect(x, transformY(y + contentRect.size.height), 0, 0);
const NSRect frameRect = [window->ns.object frameRectForContentRect:dummyRect];
[window->ns.object setFrameOrigin:frameRect.origin];
}
void _glfwPlatformGetWindowSize(_GLFWwindow* window, int* width, int* height)
{
2013-06-03 19:51:40 -04:00
const NSRect contentRect = [window->ns.view frame];
if (width)
*width = contentRect.size.width;
if (height)
*height = contentRect.size.height;
}
2010-09-15 12:57:25 -04:00
void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height)
2010-09-07 11:34:51 -04:00
{
[window->ns.object setContentSize:NSMakeSize(width, height)];
2010-09-07 11:34:51 -04:00
}
void _glfwPlatformGetFramebufferSize(_GLFWwindow* window, int* width, int* height)
{
2013-06-16 12:32:16 -04:00
const NSRect contentRect = [window->ns.view frame];
const NSRect fbRect = convertRectToBacking(window, contentRect);
2013-06-16 12:32:16 -04:00
if (width)
*width = (int) fbRect.size.width;
if (height)
*height = (int) fbRect.size.height;
}
2014-03-25 16:30:13 -04:00
void _glfwPlatformGetWindowFrameSize(_GLFWwindow* window,
int* left, int* top,
int* right, int* bottom)
{
const NSRect contentRect = [window->ns.view frame];
const NSRect frameRect = [window->ns.object frameRectForContentRect:contentRect];
if (left)
*left = contentRect.origin.x - frameRect.origin.x;
if (top)
*top = frameRect.origin.y + frameRect.size.height -
contentRect.origin.y - contentRect.size.height;
if (right)
*right = frameRect.origin.x + frameRect.size.width -
contentRect.origin.x - contentRect.size.width;
if (bottom)
*bottom = contentRect.origin.y - frameRect.origin.y;
}
2010-09-15 12:57:25 -04:00
void _glfwPlatformIconifyWindow(_GLFWwindow* window)
2010-09-07 11:34:51 -04:00
{
if (window->monitor)
leaveFullscreenMode(window);
[window->ns.object miniaturize:nil];
2010-09-07 11:34:51 -04:00
}
2010-09-15 12:57:25 -04:00
void _glfwPlatformRestoreWindow(_GLFWwindow* window)
2010-09-07 11:34:51 -04:00
{
[window->ns.object deminiaturize:nil];
2010-09-07 11:34:51 -04:00
}
void _glfwPlatformShowWindow(_GLFWwindow* window)
{
// Make us the active application
2013-11-10 07:56:27 -05:00
// HACK: This has been moved here from initializeAppKit to prevent
// applications using only hidden windows from being activated, but
// should probably not be done every time any window is shown
[NSApp activateIgnoringOtherApps:YES];
[window->ns.object makeKeyAndOrderFront:nil];
2012-08-21 15:35:42 -04:00
_glfwInputWindowVisibility(window, GL_TRUE);
}
void _glfwPlatformHideWindow(_GLFWwindow* window)
{
[window->ns.object orderOut:nil];
2012-08-21 15:35:42 -04:00
_glfwInputWindowVisibility(window, GL_FALSE);
}
2010-09-15 12:57:25 -04:00
void _glfwPlatformPollEvents(void)
2010-09-07 11:34:51 -04:00
{
2012-10-21 10:17:20 -04:00
for (;;)
2010-09-07 11:34:51 -04:00
{
2012-10-21 10:17:20 -04:00
NSEvent* event = [NSApp nextEventMatchingMask:NSAnyEventMask
untilDate:[NSDate distantPast]
inMode:NSDefaultRunLoopMode
dequeue:YES];
if (event == nil)
break;
[NSApp sendEvent:event];
2010-09-07 11:34:51 -04:00
}
[_glfw.ns.autoreleasePool drain];
_glfw.ns.autoreleasePool = [[NSAutoreleasePool alloc] init];
2010-09-07 11:34:51 -04:00
}
2012-10-04 23:42:47 -04:00
void _glfwPlatformWaitEvents(void)
2010-09-07 11:34:51 -04:00
{
// I wanted to pass NO to dequeue:, and rely on PollEvents to
// dequeue and send. For reasons not at all clear to me, passing
// NO to dequeue: causes this method never to return.
NSEvent *event = [NSApp nextEventMatchingMask:NSAnyEventMask
untilDate:[NSDate distantFuture]
inMode:NSDefaultRunLoopMode
dequeue:YES];
[NSApp sendEvent:event];
_glfwPlatformPollEvents();
}
2014-02-10 12:16:58 -05:00
void _glfwPlatformPostEmptyEvent(void)
{
NSEvent* event = [NSEvent otherEventWithType:NSApplicationDefined
location:NSMakePoint(0, 0)
modifierFlags:0
timestamp:0
windowNumber:0
context:nil
subtype:0
data1:0
data2:0];
[NSApp postEvent:event atStart:YES];
}
2013-03-27 19:30:08 -04:00
void _glfwPlatformSetCursorPos(_GLFWwindow* window, double x, double y)
2010-09-07 11:34:51 -04:00
{
2014-01-15 07:21:13 -05:00
setModeCursor(window);
2012-09-27 15:37:36 -04:00
if (window->monitor)
{
2013-05-22 12:03:54 -04:00
CGDisplayMoveCursorToPoint(window->monitor->ns.displayID,
CGPointMake(x, y));
}
else
{
2013-06-03 19:51:40 -04:00
const NSRect contentRect = [window->ns.view frame];
2013-05-22 12:03:54 -04:00
const NSPoint localPoint = NSMakePoint(x, contentRect.size.height - y - 1);
const NSPoint globalPoint = [window->ns.object convertBaseToScreen:localPoint];
CGWarpMouseCursorPosition(CGPointMake(globalPoint.x,
transformY(globalPoint.y)));
}
2010-09-07 11:34:51 -04:00
}
2014-01-15 07:21:13 -05:00
void _glfwPlatformApplyCursorMode(_GLFWwindow* window)
{
2014-01-15 07:21:13 -05:00
setModeCursor(window);
2014-01-15 07:21:13 -05:00
if (window->cursorMode == GLFW_CURSOR_DISABLED)
{
2013-04-21 18:38:51 -04:00
CGAssociateMouseAndMouseCursorPosition(false);
centerCursor(window);
2013-04-21 18:38:51 -04:00
}
else
CGAssociateMouseAndMouseCursorPosition(true);
}
2014-02-23 10:43:17 -05:00
int _glfwPlatformCreateCursor(_GLFWcursor* cursor,
const GLFWimage* image,
int xhot, int yhot)
{
2014-02-23 10:43:17 -05:00
NSImage* native;
NSBitmapImageRep* rep;
rep = [[NSBitmapImageRep alloc]
initWithBitmapDataPlanes:NULL
2014-02-23 10:43:17 -05:00
pixelsWide:image->width
pixelsHigh:image->height
bitsPerSample:8
samplesPerPixel:4
hasAlpha:YES
isPlanar:NO
colorSpaceName:NSCalibratedRGBColorSpace
bitmapFormat:NSAlphaNonpremultipliedBitmapFormat
2014-02-23 10:43:17 -05:00
bytesPerRow:image->width * 4
bitsPerPixel:32];
if (rep == nil)
return GL_FALSE;
2014-02-23 10:43:17 -05:00
memcpy([rep bitmapData], image->pixels, image->width * image->height * 4);
2014-02-23 10:43:17 -05:00
native = [[NSImage alloc] initWithSize:NSMakeSize(image->width, image->height)];
[native addRepresentation: rep];
2014-02-23 10:43:17 -05:00
cursor->ns.object = [[NSCursor alloc] initWithImage:native
2014-01-23 09:24:57 -05:00
hotSpot:NSMakePoint(xhot, yhot)];
2014-02-23 10:43:17 -05:00
[native release];
[rep release];
2014-01-23 09:24:57 -05:00
if (cursor->ns.object == nil)
return GL_FALSE;
return GL_TRUE;
}
void _glfwPlatformDestroyCursor(_GLFWcursor* cursor)
{
2014-01-23 09:24:57 -05:00
if (cursor->ns.object)
[(NSCursor*) cursor->ns.object release];
}
void _glfwPlatformSetCursor(_GLFWwindow* window, _GLFWcursor* cursor)
{
if (window->cursorMode == GLFW_CURSOR_NORMAL && window->ns.cursorInside)
{
if (cursor)
2014-01-23 09:24:57 -05:00
[(NSCursor*) cursor->ns.object set];
else
[[NSCursor arrowCursor] set];
}
}
//////////////////////////////////////////////////////////////////////////
////// GLFW native API //////
//////////////////////////////////////////////////////////////////////////
GLFWAPI id glfwGetCocoaWindow(GLFWwindow* handle)
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT_OR_RETURN(nil);
return window->ns.object;
}