glfw/src/cocoa_platform.h

166 lines
5.2 KiB
C
Raw Normal View History

2010-09-07 15:34:51 +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.
//
//========================================================================
2015-06-07 17:32:24 +00:00
#ifndef _glfw3_cocoa_platform_h_
#define _glfw3_cocoa_platform_h_
2010-09-07 15:34:51 +00:00
2010-09-15 16:57:25 +00:00
#include <stdint.h>
#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>
#include <ApplicationServices/ApplicationServices.h>
2010-09-15 16:57:25 +00:00
typedef void* id;
2010-09-07 15:34:51 +00:00
#endif
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*);
#include "posix_tls.h"
#include "cocoa_joystick.h"
#include "nsgl_context.h"
2010-09-07 15:34:51 +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)
#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowNS ns
#define _GLFW_PLATFORM_LIBRARY_WINDOW_STATE _GLFWlibraryNS ns
#define _GLFW_PLATFORM_LIBRARY_TIME_STATE _GLFWtimeNS ns_time
#define _GLFW_PLATFORM_MONITOR_STATE _GLFWmonitorNS ns
#define _GLFW_PLATFORM_CURSOR_STATE _GLFWcursorNS ns
2010-09-15 16:57:25 +00:00
#define _GLFW_EGL_CONTEXT_STATE
#define _GLFW_EGL_LIBRARY_CONTEXT_STATE
// 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;
id layer;
2014-09-02 17:42:43 +00:00
GLFWbool maximized;
// 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;
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;
id cursor;
TISInputSourceRef inputSource;
2016-06-07 12:11:54 +00:00
IOHIDManagerRef hidManager;
2015-07-02 12:24:50 +00:00
id unicodeData;
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;
CGPoint cascadePoint;
// 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;
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
{
CGDirectDisplayID displayID;
CGDisplayModeRef previousMode;
uint32_t unitNumber;
2012-09-12 18:44:08 +00:00
} _GLFWmonitorNS;
2014-09-02 17:42:43 +00:00
// Cocoa-specific per-cursor data
//
typedef struct _GLFWcursorNS
{
2014-09-02 17:42:43 +00:00
id object;
} _GLFWcursorNS;
2014-09-02 17:42:43 +00:00
// Cocoa-specific global timer data
//
typedef struct _GLFWtimeNS
{
uint64_t frequency;
2014-09-02 17:42:43 +00:00
} _GLFWtimeNS;
2011-09-18 19:05:00 +00:00
void _glfwInitTimerNS(void);
void _glfwPollMonitorsNS(void);
GLFWbool _glfwSetVideoModeNS(_GLFWmonitor* monitor, const GLFWvidmode* desired);
void _glfwRestoreVideoModeNS(_GLFWmonitor* monitor);
2011-09-18 19:05:00 +00:00
2015-06-07 17:32:24 +00:00
#endif // _glfw3_cocoa_platform_h_