2010-09-07 11:34:51 -04:00
|
|
|
//========================================================================
|
2015-06-01 16:55:06 -04:00
|
|
|
// GLFW 3.2 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.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
2015-06-07 13:32:24 -04:00
|
|
|
#ifndef _glfw3_cocoa_platform_h_
|
|
|
|
#define _glfw3_cocoa_platform_h_
|
2010-09-07 11:34:51 -04:00
|
|
|
|
2010-09-15 12:57:25 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2010-09-07 11:34:51 -04:00
|
|
|
#if defined(__OBJC__)
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#else
|
2012-03-05 10:27:53 -05:00
|
|
|
#include <ApplicationServices/ApplicationServices.h>
|
2010-09-15 12:57:25 -04:00
|
|
|
typedef void* id;
|
2010-09-07 11:34:51 -04:00
|
|
|
#endif
|
|
|
|
|
2014-03-30 08:37:20 -04:00
|
|
|
#include "posix_tls.h"
|
2015-05-27 09:06:52 -04:00
|
|
|
#include "iokit_joystick.h"
|
2014-03-30 08:37:20 -04:00
|
|
|
|
2012-11-27 09:02:26 -05:00
|
|
|
#if defined(_GLFW_NSGL)
|
2014-04-08 10:25:35 -04:00
|
|
|
#include "nsgl_context.h"
|
2012-12-02 13:01:20 -05:00
|
|
|
#else
|
2015-05-27 09:06:52 -04:00
|
|
|
#error "The Cocoa backend depends on NSGL platform support"
|
2012-11-27 09:02:26 -05:00
|
|
|
#endif
|
2010-09-07 11:34:51 -04:00
|
|
|
|
2013-01-01 19:40:42 -05:00
|
|
|
#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowNS ns
|
|
|
|
#define _GLFW_PLATFORM_LIBRARY_WINDOW_STATE _GLFWlibraryNS ns
|
2014-03-27 12:19:22 -04:00
|
|
|
#define _GLFW_PLATFORM_LIBRARY_TIME_STATE _GLFWtimeNS ns_time
|
2013-01-01 19:40:42 -05:00
|
|
|
#define _GLFW_PLATFORM_MONITOR_STATE _GLFWmonitorNS ns
|
2013-12-04 08:19:22 -05:00
|
|
|
#define _GLFW_PLATFORM_CURSOR_STATE _GLFWcursorNS ns
|
2010-09-15 12:57:25 -04:00
|
|
|
|
|
|
|
|
2014-09-02 13:42:43 -04:00
|
|
|
// Cocoa-specific per-window data
|
|
|
|
//
|
2010-09-15 12:57:25 -04:00
|
|
|
typedef struct _GLFWwindowNS
|
|
|
|
{
|
2013-01-02 10:48:02 -05:00
|
|
|
id object;
|
2015-04-10 07:17:27 -04:00
|
|
|
id delegate;
|
2013-01-02 10:48:02 -05:00
|
|
|
id view;
|
|
|
|
unsigned int modifierFlags;
|
2014-09-02 13:42:43 -04:00
|
|
|
|
2014-02-11 12:24:01 -05: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
|
|
|
|
double warpDeltaX, warpDeltaY;
|
|
|
|
|
2010-09-15 12:57:25 -04:00
|
|
|
} _GLFWwindowNS;
|
2010-09-07 11:34:51 -04:00
|
|
|
|
|
|
|
|
2014-09-02 13:42:43 -04:00
|
|
|
// Cocoa-specific global data
|
|
|
|
//
|
2010-09-15 12:57:25 -04:00
|
|
|
typedef struct _GLFWlibraryNS
|
|
|
|
{
|
2012-03-20 10:23:35 -04:00
|
|
|
CGEventSourceRef eventSource;
|
2015-01-04 11:49:12 -05:00
|
|
|
id delegate;
|
2013-01-02 10:48:02 -05:00
|
|
|
id autoreleasePool;
|
2013-04-21 16:46:35 -04:00
|
|
|
id cursor;
|
2012-04-11 18:51:58 -04:00
|
|
|
|
2014-03-30 10:23:22 -04:00
|
|
|
short int publicKeys[256];
|
2013-01-02 10:48:02 -05:00
|
|
|
char* clipboardString;
|
2013-02-14 13:07:17 -05:00
|
|
|
|
2010-09-15 12:57:25 -04:00
|
|
|
} _GLFWlibraryNS;
|
2010-09-07 11:34:51 -04:00
|
|
|
|
|
|
|
|
2014-09-02 13:42:43 -04:00
|
|
|
// Cocoa-specific per-monitor data
|
|
|
|
//
|
2012-09-12 14:44:08 -04:00
|
|
|
typedef struct _GLFWmonitorNS
|
|
|
|
{
|
2013-04-17 17:07:44 -04:00
|
|
|
CGDirectDisplayID displayID;
|
|
|
|
CGDisplayModeRef previousMode;
|
2015-09-02 07:42:28 -04:00
|
|
|
uint32_t unitNumber;
|
2012-09-12 14:44:08 -04:00
|
|
|
|
|
|
|
} _GLFWmonitorNS;
|
|
|
|
|
|
|
|
|
2014-09-02 13:42:43 -04:00
|
|
|
// Cocoa-specific per-cursor data
|
|
|
|
//
|
2013-12-04 08:19:22 -05:00
|
|
|
typedef struct _GLFWcursorNS
|
|
|
|
{
|
2014-09-02 13:42:43 -04:00
|
|
|
id object;
|
|
|
|
|
2013-12-04 08:19:22 -05:00
|
|
|
} _GLFWcursorNS;
|
|
|
|
|
|
|
|
|
2014-09-02 13:42:43 -04:00
|
|
|
// Cocoa-specific global timer data
|
|
|
|
//
|
2014-03-27 12:19:22 -04:00
|
|
|
typedef struct _GLFWtimeNS
|
|
|
|
{
|
2014-09-02 13:42:43 -04:00
|
|
|
double base;
|
|
|
|
double resolution;
|
2014-03-27 12:19:22 -04:00
|
|
|
|
2014-09-02 13:42:43 -04:00
|
|
|
} _GLFWtimeNS;
|
2014-03-27 12:19:22 -04:00
|
|
|
|
2011-09-18 15:05:00 -04:00
|
|
|
|
2012-02-08 19:53:26 -05:00
|
|
|
void _glfwInitTimer(void);
|
|
|
|
|
2015-08-23 13:30:04 -04:00
|
|
|
GLFWbool _glfwSetVideoMode(_GLFWmonitor* monitor, const GLFWvidmode* desired);
|
2013-01-02 11:29:24 -05:00
|
|
|
void _glfwRestoreVideoMode(_GLFWmonitor* monitor);
|
2011-09-18 15:05:00 -04:00
|
|
|
|
2015-06-07 13:32:24 -04:00
|
|
|
#endif // _glfw3_cocoa_platform_h_
|