2010-09-07 17:34:51 +02:00
|
|
|
//========================================================================
|
2016-10-20 00:50:54 +02:00
|
|
|
// GLFW 3.3 macOS - www.glfw.org
|
2010-09-07 17:34:51 +02:00
|
|
|
//------------------------------------------------------------------------
|
2016-11-21 16:23:59 +01:00
|
|
|
// Copyright (c) 2009-2016 Camilla Löwy <elmindreda@glfw.org>
|
2010-09-07 17:34:51 +02: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.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
2015-06-07 19:32:24 +02:00
|
|
|
#ifndef _glfw3_cocoa_platform_h_
|
|
|
|
#define _glfw3_cocoa_platform_h_
|
2010-09-07 17:34:51 +02:00
|
|
|
|
2010-09-15 18:57:25 +02:00
|
|
|
#include <stdint.h>
|
2015-08-10 20:19:04 +02:00
|
|
|
#include <dlfcn.h>
|
2010-09-15 18:57:25 +02:00
|
|
|
|
2010-09-07 17:34:51 +02:00
|
|
|
#if defined(__OBJC__)
|
2015-07-02 14:24:50 +02:00
|
|
|
#import <Carbon/Carbon.h>
|
2010-09-07 17:34:51 +02:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#else
|
2015-07-02 14:24:50 +02:00
|
|
|
#include <Carbon/Carbon.h>
|
2012-03-05 16:27:53 +01:00
|
|
|
#include <ApplicationServices/ApplicationServices.h>
|
2010-09-15 18:57:25 +02:00
|
|
|
typedef void* id;
|
2010-09-07 17:34:51 +02:00
|
|
|
#endif
|
|
|
|
|
2016-10-14 01:46:56 +02: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*);
|
|
|
|
|
2014-03-30 14:37:20 +02:00
|
|
|
#include "posix_tls.h"
|
2015-12-06 15:53:10 +01:00
|
|
|
#include "cocoa_joystick.h"
|
2016-03-28 13:19:31 +02:00
|
|
|
#include "nsgl_context.h"
|
2010-09-07 17:34:51 +02:00
|
|
|
|
2015-08-10 20:19:04 +02: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)
|
|
|
|
|
2013-01-02 01:40:42 +01:00
|
|
|
#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowNS ns
|
|
|
|
#define _GLFW_PLATFORM_LIBRARY_WINDOW_STATE _GLFWlibraryNS ns
|
2014-03-27 17:19:22 +01:00
|
|
|
#define _GLFW_PLATFORM_LIBRARY_TIME_STATE _GLFWtimeNS ns_time
|
2013-01-02 01:40:42 +01:00
|
|
|
#define _GLFW_PLATFORM_MONITOR_STATE _GLFWmonitorNS ns
|
2013-12-04 14:19:22 +01:00
|
|
|
#define _GLFW_PLATFORM_CURSOR_STATE _GLFWcursorNS ns
|
2010-09-15 18:57:25 +02:00
|
|
|
|
2016-03-28 13:19:31 +02:00
|
|
|
#define _GLFW_EGL_CONTEXT_STATE
|
|
|
|
#define _GLFW_EGL_LIBRARY_CONTEXT_STATE
|
|
|
|
|
2016-05-23 12:46:57 +02: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 18:57:25 +02:00
|
|
|
|
2014-09-02 19:42:43 +02:00
|
|
|
// Cocoa-specific per-window data
|
|
|
|
//
|
2010-09-15 18:57:25 +02:00
|
|
|
typedef struct _GLFWwindowNS
|
|
|
|
{
|
2013-01-02 16:48:02 +01:00
|
|
|
id object;
|
2015-04-10 13:17:27 +02:00
|
|
|
id delegate;
|
2013-01-02 16:48:02 +01:00
|
|
|
id view;
|
2016-10-14 01:46:56 +02:00
|
|
|
id layer;
|
2014-09-02 19:42:43 +02:00
|
|
|
|
2016-06-16 13:09:28 +02:00
|
|
|
GLFWbool maximized;
|
|
|
|
|
2014-02-11 18:24:01 +01: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 12:23:58 +02:00
|
|
|
double cursorWarpDeltaX, cursorWarpDeltaY;
|
2014-02-11 18:24:01 +01:00
|
|
|
|
2010-09-15 18:57:25 +02:00
|
|
|
} _GLFWwindowNS;
|
2010-09-07 17:34:51 +02:00
|
|
|
|
2014-09-02 19:42:43 +02:00
|
|
|
// Cocoa-specific global data
|
|
|
|
//
|
2010-09-15 18:57:25 +02:00
|
|
|
typedef struct _GLFWlibraryNS
|
|
|
|
{
|
2015-07-02 14:24:50 +02:00
|
|
|
CGEventSourceRef eventSource;
|
|
|
|
id delegate;
|
|
|
|
id autoreleasePool;
|
|
|
|
id cursor;
|
|
|
|
TISInputSourceRef inputSource;
|
2016-06-07 14:11:54 +02:00
|
|
|
IOHIDManagerRef hidManager;
|
2015-07-02 14:24:50 +02:00
|
|
|
id unicodeData;
|
2016-05-24 21:33:15 +02:00
|
|
|
id listener;
|
2015-07-02 14:24:50 +02:00
|
|
|
|
|
|
|
char keyName[64];
|
2016-09-07 15:43:39 +02:00
|
|
|
short int keycodes[256];
|
|
|
|
short int scancodes[GLFW_KEY_LAST + 1];
|
2015-07-02 14:24:50 +02:00
|
|
|
char* clipboardString;
|
2017-01-01 19:59:09 +01:00
|
|
|
CGPoint cascadePoint;
|
2016-05-25 14:06:02 +02:00
|
|
|
// Where to place the cursor when re-enabled
|
|
|
|
double restoreCursorPosX, restoreCursorPosY;
|
2016-05-30 21:21:09 +02:00
|
|
|
// The window whose disabled cursor mode is active
|
|
|
|
_GLFWwindow* disabledCursorWindow;
|
2013-02-14 19:07:17 +01:00
|
|
|
|
2016-05-23 12:46:57 +02:00
|
|
|
struct {
|
|
|
|
CFBundleRef bundle;
|
|
|
|
PFN_TISCopyCurrentKeyboardLayoutInputSource CopyCurrentKeyboardLayoutInputSource;
|
|
|
|
PFN_TISGetInputSourceProperty GetInputSourceProperty;
|
|
|
|
PFN_LMGetKbdType GetKbdType;
|
|
|
|
CFStringRef kPropertyUnicodeKeyLayoutData;
|
|
|
|
} tis;
|
|
|
|
|
2010-09-15 18:57:25 +02:00
|
|
|
} _GLFWlibraryNS;
|
2010-09-07 17:34:51 +02:00
|
|
|
|
2014-09-02 19:42:43 +02:00
|
|
|
// Cocoa-specific per-monitor data
|
|
|
|
//
|
2012-09-12 20:44:08 +02:00
|
|
|
typedef struct _GLFWmonitorNS
|
|
|
|
{
|
2013-04-17 23:07:44 +02:00
|
|
|
CGDirectDisplayID displayID;
|
|
|
|
CGDisplayModeRef previousMode;
|
2015-09-02 13:42:28 +02:00
|
|
|
uint32_t unitNumber;
|
2012-09-12 20:44:08 +02:00
|
|
|
|
|
|
|
} _GLFWmonitorNS;
|
|
|
|
|
2014-09-02 19:42:43 +02:00
|
|
|
// Cocoa-specific per-cursor data
|
|
|
|
//
|
2013-12-04 14:19:22 +01:00
|
|
|
typedef struct _GLFWcursorNS
|
|
|
|
{
|
2014-09-02 19:42:43 +02:00
|
|
|
id object;
|
|
|
|
|
2013-12-04 14:19:22 +01:00
|
|
|
} _GLFWcursorNS;
|
|
|
|
|
2014-09-02 19:42:43 +02:00
|
|
|
// Cocoa-specific global timer data
|
|
|
|
//
|
2014-03-27 17:19:22 +01:00
|
|
|
typedef struct _GLFWtimeNS
|
|
|
|
{
|
2016-03-23 10:09:07 +01:00
|
|
|
uint64_t frequency;
|
2014-03-27 17:19:22 +01:00
|
|
|
|
2014-09-02 19:42:43 +02:00
|
|
|
} _GLFWtimeNS;
|
2014-03-27 17:19:22 +01:00
|
|
|
|
2011-09-18 21:05:00 +02:00
|
|
|
|
2015-12-03 18:16:46 +01:00
|
|
|
void _glfwInitTimerNS(void);
|
2012-02-09 01:53:26 +01:00
|
|
|
|
2016-12-05 01:19:48 +01:00
|
|
|
void _glfwPollMonitorsNS(void);
|
2015-12-03 18:16:46 +01:00
|
|
|
GLFWbool _glfwSetVideoModeNS(_GLFWmonitor* monitor, const GLFWvidmode* desired);
|
|
|
|
void _glfwRestoreVideoModeNS(_GLFWmonitor* monitor);
|
2011-09-18 21:05:00 +02:00
|
|
|
|
2015-06-07 19:32:24 +02:00
|
|
|
#endif // _glfw3_cocoa_platform_h_
|