2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2016-10-19 22:50:54 +00:00
|
|
|
// GLFW 3.3 macOS - www.glfw.org
|
2010-09-07 15:34:51 +00:00
|
|
|
//------------------------------------------------------------------------
|
2016-11-21 15:23:59 +00:00
|
|
|
// Copyright (c) 2009-2016 Camilla Löwy <elmindreda@glfw.org>
|
2010-09-07 15:34:51 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-15 16:57:25 +00:00
|
|
|
#include <stdint.h>
|
2015-08-10 18:19:04 +00:00
|
|
|
#include <dlfcn.h>
|
2010-09-15 16:57:25 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
#if defined(__OBJC__)
|
2015-07-02 12:24:50 +00:00
|
|
|
#import <Carbon/Carbon.h>
|
2010-09-07 15:34:51 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#else
|
2015-07-02 12:24:50 +00:00
|
|
|
#include <Carbon/Carbon.h>
|
2012-03-05 15:27:53 +00:00
|
|
|
#include <ApplicationServices/ApplicationServices.h>
|
2010-09-15 16:57:25 +00:00
|
|
|
typedef void* id;
|
2010-09-07 15:34:51 +00:00
|
|
|
#endif
|
|
|
|
|
2016-10-13 23:46:56 +00:00
|
|
|
typedef VkFlags VkMacOSSurfaceCreateFlagsMVK;
|
|
|
|
|
|
|
|
typedef struct VkMacOSSurfaceCreateInfoMVK
|
|
|
|
{
|
|
|
|
VkStructureType sType;
|
|
|
|
const void* pNext;
|
|
|
|
VkMacOSSurfaceCreateFlagsMVK flags;
|
|
|
|
const void* pView;
|
|
|
|
} VkMacOSSurfaceCreateInfoMVK;
|
|
|
|
|
|
|
|
typedef VkResult (APIENTRY *PFN_vkCreateMacOSSurfaceMVK)(VkInstance,const VkMacOSSurfaceCreateInfoMVK*,const VkAllocationCallbacks*,VkSurfaceKHR*);
|
|
|
|
|
2017-05-25 17:25:47 +00:00
|
|
|
#include "posix_thread.h"
|
2015-12-06 14:53:10 +00:00
|
|
|
#include "cocoa_joystick.h"
|
2016-03-28 11:19:31 +00:00
|
|
|
#include "nsgl_context.h"
|
2017-01-02 14:32:55 +00:00
|
|
|
#include "egl_context.h"
|
2017-02-28 18:23:25 +00:00
|
|
|
#include "osmesa_context.h"
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2015-08-10 18:19:04 +00:00
|
|
|
#define _glfw_dlopen(name) dlopen(name, RTLD_LAZY | RTLD_LOCAL)
|
|
|
|
#define _glfw_dlclose(handle) dlclose(handle)
|
|
|
|
#define _glfw_dlsym(handle, name) dlsym(handle, name)
|
|
|
|
|
2017-01-02 14:32:55 +00:00
|
|
|
#define _GLFW_EGL_NATIVE_WINDOW ((EGLNativeWindowType) window->ns.view)
|
|
|
|
#define _GLFW_EGL_NATIVE_DISPLAY EGL_DEFAULT_DISPLAY
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowNS ns
|
|
|
|
#define _GLFW_PLATFORM_LIBRARY_WINDOW_STATE _GLFWlibraryNS ns
|
2017-03-18 22:09:34 +00:00
|
|
|
#define _GLFW_PLATFORM_LIBRARY_TIMER_STATE _GLFWtimerNS ns
|
2013-01-02 00:40:42 +00:00
|
|
|
#define _GLFW_PLATFORM_MONITOR_STATE _GLFWmonitorNS ns
|
2013-12-04 13:19:22 +00:00
|
|
|
#define _GLFW_PLATFORM_CURSOR_STATE _GLFWcursorNS ns
|
2010-09-15 16:57:25 +00:00
|
|
|
|
2016-05-23 10:46:57 +00:00
|
|
|
// HIToolbox.framework pointer typedefs
|
|
|
|
#define kTISPropertyUnicodeKeyLayoutData _glfw.ns.tis.kPropertyUnicodeKeyLayoutData
|
|
|
|
typedef TISInputSourceRef (*PFN_TISCopyCurrentKeyboardLayoutInputSource)(void);
|
|
|
|
#define TISCopyCurrentKeyboardLayoutInputSource _glfw.ns.tis.CopyCurrentKeyboardLayoutInputSource
|
|
|
|
typedef void* (*PFN_TISGetInputSourceProperty)(TISInputSourceRef,CFStringRef);
|
|
|
|
#define TISGetInputSourceProperty _glfw.ns.tis.GetInputSourceProperty
|
|
|
|
typedef UInt8 (*PFN_LMGetKbdType)(void);
|
|
|
|
#define LMGetKbdType _glfw.ns.tis.GetKbdType
|
|
|
|
|
2010-09-15 16:57:25 +00:00
|
|
|
|
2014-09-02 17:42:43 +00:00
|
|
|
// Cocoa-specific per-window data
|
|
|
|
//
|
2010-09-15 16:57:25 +00:00
|
|
|
typedef struct _GLFWwindowNS
|
|
|
|
{
|
2013-01-02 15:48:02 +00:00
|
|
|
id object;
|
2015-04-10 11:17:27 +00:00
|
|
|
id delegate;
|
2013-01-02 15:48:02 +00:00
|
|
|
id view;
|
2016-10-13 23:46:56 +00:00
|
|
|
id layer;
|
2014-09-02 17:42:43 +00:00
|
|
|
|
2016-06-16 11:09:28 +00:00
|
|
|
GLFWbool maximized;
|
|
|
|
|
2014-02-11 17:24:01 +00:00
|
|
|
// The total sum of the distances the cursor has been warped
|
|
|
|
// since the last cursor motion event was processed
|
|
|
|
// This is kept to counteract Cocoa doing the same internally
|
2016-05-24 10:23:58 +00:00
|
|
|
double cursorWarpDeltaX, cursorWarpDeltaY;
|
2014-02-11 17:24:01 +00:00
|
|
|
|
2010-09-15 16:57:25 +00:00
|
|
|
} _GLFWwindowNS;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-09-02 17:42:43 +00:00
|
|
|
// Cocoa-specific global data
|
|
|
|
//
|
2010-09-15 16:57:25 +00:00
|
|
|
typedef struct _GLFWlibraryNS
|
|
|
|
{
|
2015-07-02 12:24:50 +00:00
|
|
|
CGEventSourceRef eventSource;
|
|
|
|
id delegate;
|
|
|
|
id autoreleasePool;
|
2017-08-22 18:40:07 +00:00
|
|
|
GLFWbool cursorHidden;
|
2015-07-02 12:24:50 +00:00
|
|
|
TISInputSourceRef inputSource;
|
2016-06-07 12:11:54 +00:00
|
|
|
IOHIDManagerRef hidManager;
|
2015-07-02 12:24:50 +00:00
|
|
|
id unicodeData;
|
2016-05-24 19:33:15 +00:00
|
|
|
id listener;
|
2015-07-02 12:24:50 +00:00
|
|
|
|
|
|
|
char keyName[64];
|
2016-09-07 13:43:39 +00:00
|
|
|
short int keycodes[256];
|
|
|
|
short int scancodes[GLFW_KEY_LAST + 1];
|
2015-07-02 12:24:50 +00:00
|
|
|
char* clipboardString;
|
2017-01-01 18:59:09 +00:00
|
|
|
CGPoint cascadePoint;
|
2016-05-25 12:06:02 +00:00
|
|
|
// Where to place the cursor when re-enabled
|
|
|
|
double restoreCursorPosX, restoreCursorPosY;
|
2016-05-30 19:21:09 +00:00
|
|
|
// The window whose disabled cursor mode is active
|
|
|
|
_GLFWwindow* disabledCursorWindow;
|
2013-02-14 18:07:17 +00:00
|
|
|
|
2016-05-23 10:46:57 +00:00
|
|
|
struct {
|
|
|
|
CFBundleRef bundle;
|
|
|
|
PFN_TISCopyCurrentKeyboardLayoutInputSource CopyCurrentKeyboardLayoutInputSource;
|
|
|
|
PFN_TISGetInputSourceProperty GetInputSourceProperty;
|
|
|
|
PFN_LMGetKbdType GetKbdType;
|
|
|
|
CFStringRef kPropertyUnicodeKeyLayoutData;
|
|
|
|
} tis;
|
|
|
|
|
2010-09-15 16:57:25 +00:00
|
|
|
} _GLFWlibraryNS;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-09-02 17:42:43 +00:00
|
|
|
// Cocoa-specific per-monitor data
|
|
|
|
//
|
2012-09-12 18:44:08 +00:00
|
|
|
typedef struct _GLFWmonitorNS
|
|
|
|
{
|
2013-04-17 21:07:44 +00:00
|
|
|
CGDirectDisplayID displayID;
|
|
|
|
CGDisplayModeRef previousMode;
|
2015-09-02 11:42:28 +00:00
|
|
|
uint32_t unitNumber;
|
2017-08-29 17:19:00 +00:00
|
|
|
id screen;
|
2012-09-12 18:44:08 +00:00
|
|
|
|
|
|
|
} _GLFWmonitorNS;
|
|
|
|
|
2014-09-02 17:42:43 +00:00
|
|
|
// Cocoa-specific per-cursor data
|
|
|
|
//
|
2013-12-04 13:19:22 +00:00
|
|
|
typedef struct _GLFWcursorNS
|
|
|
|
{
|
2014-09-02 17:42:43 +00:00
|
|
|
id object;
|
|
|
|
|
2013-12-04 13:19:22 +00:00
|
|
|
} _GLFWcursorNS;
|
|
|
|
|
2014-09-02 17:42:43 +00:00
|
|
|
// Cocoa-specific global timer data
|
|
|
|
//
|
2017-03-18 22:09:34 +00:00
|
|
|
typedef struct _GLFWtimerNS
|
2014-03-27 16:19:22 +00:00
|
|
|
{
|
2016-03-23 09:09:07 +00:00
|
|
|
uint64_t frequency;
|
2014-03-27 16:19:22 +00:00
|
|
|
|
2017-03-18 22:09:34 +00:00
|
|
|
} _GLFWtimerNS;
|
2014-03-27 16:19:22 +00:00
|
|
|
|
2011-09-18 19:05:00 +00:00
|
|
|
|
2015-12-03 17:16:46 +00:00
|
|
|
void _glfwInitTimerNS(void);
|
2012-02-09 00:53:26 +00:00
|
|
|
|
2016-12-05 00:19:48 +00:00
|
|
|
void _glfwPollMonitorsNS(void);
|
2015-12-03 17:16:46 +00:00
|
|
|
GLFWbool _glfwSetVideoModeNS(_GLFWmonitor* monitor, const GLFWvidmode* desired);
|
|
|
|
void _glfwRestoreVideoModeNS(_GLFWmonitor* monitor);
|
2011-09-18 19:05:00 +00:00
|
|
|
|