glfw/src/cocoa_platform.h

124 lines
3.2 KiB
C
Raw Normal View History

2010-09-07 15:34:51 +00:00
//========================================================================
// GLFW 3.1 OS X - www.glfw.org
2010-09-07 15:34:51 +00: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.
//
//========================================================================
#ifndef _cocoa_platform_h_
#define _cocoa_platform_h_
2010-09-07 15:34:51 +00:00
2010-09-15 16:57:25 +00:00
#include <stdint.h>
2010-09-07 15:34:51 +00:00
#if defined(__OBJC__)
#import <Cocoa/Cocoa.h>
#else
#include <ApplicationServices/ApplicationServices.h>
2010-09-15 16:57:25 +00:00
typedef void* id;
2010-09-07 15:34:51 +00:00
#endif
#include "posix_tls.h"
#if defined(_GLFW_NSGL)
2014-04-08 14:25:35 +00:00
#include "nsgl_context.h"
2012-12-02 18:01:20 +00:00
#else
#error "No supported context creation API selected"
#endif
2010-09-07 15:34:51 +00:00
#include "iokit_joystick.h"
#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
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;
id delegate;
id view;
unsigned int modifierFlags;
2014-09-02 17:42:43 +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
double warpDeltaX, warpDeltaY;
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
{
CGEventSourceRef eventSource;
2013-01-02 15:48:02 +00:00
id autoreleasePool;
2013-04-21 20:46:35 +00:00
id cursor;
2012-04-11 22:51:58 +00:00
2014-03-30 14:23:22 +00:00
short int publicKeys[256];
2013-01-02 15:48:02 +00:00
char* clipboardString;
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;
id screen;
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
{
2014-09-02 17:42:43 +00:00
double base;
double resolution;
2014-09-02 17:42:43 +00:00
} _GLFWtimeNS;
2011-09-18 19:05:00 +00:00
void _glfwInitTimer(void);
2013-04-21 19:28:07 +00:00
GLboolean _glfwSetVideoMode(_GLFWmonitor* monitor, const GLFWvidmode* desired);
void _glfwRestoreVideoMode(_GLFWmonitor* monitor);
2011-09-18 19:05:00 +00:00
#endif // _cocoa_platform_h_