2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2011-03-06 00:46:39 +00:00
|
|
|
// GLFW - An OpenGL library
|
2012-07-19 21:01:51 +00:00
|
|
|
// Platform: X11
|
2010-09-07 15:41:26 +00:00
|
|
|
// API version: 3.0
|
2010-09-07 15:34:51 +00:00
|
|
|
// WWW: http://www.glfw.org/
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2002-2006 Marcus Geelnard
|
|
|
|
// Copyright (c) 2006-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.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
2013-01-15 00:59:56 +00:00
|
|
|
#ifndef _x11_platform_h_
|
|
|
|
#define _x11_platform_h_
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <signal.h>
|
2011-09-19 22:55:20 +00:00
|
|
|
#include <stdint.h>
|
2010-09-07 15:34:51 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/keysym.h>
|
|
|
|
#include <X11/Xatom.h>
|
2010-10-03 17:50:19 +00:00
|
|
|
|
2013-01-12 18:12:55 +00:00
|
|
|
// The Xf86VidMode extension provides fallback gamma control
|
|
|
|
#include <X11/extensions/xf86vmode.h>
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-08-26 13:38:18 +00:00
|
|
|
// The XRandR extension provides mode setting and gamma control
|
2013-01-12 18:12:55 +00:00
|
|
|
#include <X11/extensions/Xrandr.h>
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-04-04 14:48:58 +00:00
|
|
|
// The XInput2 extension provides improved input events
|
|
|
|
#include <X11/extensions/XInput2.h>
|
|
|
|
|
2011-01-02 10:18:14 +00:00
|
|
|
// The Xkb extension provides improved keyboard support
|
2013-01-07 17:08:07 +00:00
|
|
|
#include <X11/XKBlib.h>
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-11-27 14:02:26 +00:00
|
|
|
#if defined(_GLFW_GLX)
|
2013-01-02 00:40:42 +00:00
|
|
|
#define _GLFW_X11_CONTEXT_VISUAL window->glx.visual
|
2012-09-09 17:33:40 +00:00
|
|
|
#include "glx_platform.h"
|
2012-11-27 14:02:26 +00:00
|
|
|
#elif defined(_GLFW_EGL)
|
2013-01-02 00:40:42 +00:00
|
|
|
#define _GLFW_X11_CONTEXT_VISUAL window->egl.visual
|
|
|
|
#define _GLFW_EGL_NATIVE_WINDOW window->x11.handle
|
|
|
|
#define _GLFW_EGL_NATIVE_DISPLAY _glfw.x11.display
|
2012-09-09 17:33:40 +00:00
|
|
|
#include "egl_platform.h"
|
2011-09-07 12:37:09 +00:00
|
|
|
#else
|
2012-12-02 18:01:20 +00:00
|
|
|
#error "No supported context creation API selected"
|
2011-09-07 12:37:09 +00:00
|
|
|
#endif
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowX11 x11
|
|
|
|
#define _GLFW_PLATFORM_LIBRARY_WINDOW_STATE _GLFWlibraryX11 x11
|
|
|
|
#define _GLFW_PLATFORM_MONITOR_STATE _GLFWmonitorX11 x11
|
2010-09-09 16:15:32 +00:00
|
|
|
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2010-10-14 15:55:45 +00:00
|
|
|
// GLFW platform specific types
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2010-10-14 15:55:45 +00:00
|
|
|
|
2010-09-09 18:36:23 +00:00
|
|
|
//------------------------------------------------------------------------
|
2010-09-10 20:10:19 +00:00
|
|
|
// Platform-specific window structure
|
2010-09-09 18:36:23 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
typedef struct _GLFWwindowX11
|
|
|
|
{
|
|
|
|
// Platform specific window resources
|
2013-01-02 15:48:02 +00:00
|
|
|
Colormap colormap; // Window colormap
|
|
|
|
Window handle; // Window handle
|
2010-09-09 18:36:23 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
// Various platform specific internal variables
|
2013-01-02 15:48:02 +00:00
|
|
|
GLboolean overrideRedirect; // True if window is OverrideRedirect
|
|
|
|
GLboolean cursorGrabbed; // True if cursor is currently grabbed
|
|
|
|
GLboolean cursorHidden; // True if cursor is currently hidden
|
|
|
|
GLboolean cursorCentered; // True if cursor was moved since last poll
|
2013-04-04 14:48:58 +00:00
|
|
|
double cursorPosX, cursorPosY;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
} _GLFWwindowX11;
|
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
2012-04-22 13:53:02 +00:00
|
|
|
// Platform-specific library global data for X11
|
2010-09-09 16:15:32 +00:00
|
|
|
//------------------------------------------------------------------------
|
2010-09-09 18:21:15 +00:00
|
|
|
typedef struct _GLFWlibraryX11
|
|
|
|
{
|
2010-09-09 16:15:32 +00:00
|
|
|
Display* display;
|
2010-09-09 21:37:50 +00:00
|
|
|
int screen;
|
|
|
|
Window root;
|
2013-01-04 06:28:12 +00:00
|
|
|
|
|
|
|
// Invisible cursor for hidden cursor mode
|
|
|
|
Cursor cursor;
|
2013-04-15 00:16:51 +00:00
|
|
|
XContext context;
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2013-01-21 17:03:47 +00:00
|
|
|
// Window manager atoms
|
2013-01-21 18:57:03 +00:00
|
|
|
Atom WM_STATE;
|
2013-01-21 17:03:47 +00:00
|
|
|
Atom WM_DELETE_WINDOW;
|
|
|
|
Atom NET_WM_NAME;
|
|
|
|
Atom NET_WM_ICON_NAME;
|
|
|
|
Atom NET_WM_PING;
|
|
|
|
Atom NET_WM_STATE;
|
|
|
|
Atom NET_WM_STATE_FULLSCREEN;
|
|
|
|
Atom NET_ACTIVE_WINDOW;
|
2013-04-08 13:16:32 +00:00
|
|
|
Atom MOTIF_WM_HINTS;
|
2012-04-05 15:29:08 +00:00
|
|
|
|
2013-01-29 01:45:08 +00:00
|
|
|
// Selection atoms
|
|
|
|
Atom TARGETS;
|
2013-04-29 10:26:25 +00:00
|
|
|
Atom MULTIPLE;
|
2013-01-29 01:45:08 +00:00
|
|
|
Atom CLIPBOARD;
|
2013-04-29 11:16:56 +00:00
|
|
|
Atom CLIPBOARD_MANAGER;
|
|
|
|
Atom SAVE_TARGETS;
|
2013-01-29 01:45:08 +00:00
|
|
|
Atom UTF8_STRING;
|
|
|
|
Atom COMPOUND_STRING;
|
2013-04-29 11:16:56 +00:00
|
|
|
Atom ATOM_PAIR;
|
2013-04-29 10:45:18 +00:00
|
|
|
Atom GLFW_SELECTION;
|
2013-01-29 01:45:08 +00:00
|
|
|
|
2012-04-05 15:29:08 +00:00
|
|
|
// True if window manager supports EWMH
|
|
|
|
GLboolean hasEWMH;
|
2010-09-09 16:15:32 +00:00
|
|
|
|
|
|
|
struct {
|
2010-10-13 02:04:43 +00:00
|
|
|
GLboolean available;
|
2010-09-09 16:15:32 +00:00
|
|
|
int eventBase;
|
|
|
|
int errorBase;
|
2013-01-02 00:40:42 +00:00
|
|
|
} vidmode;
|
2010-09-09 16:15:32 +00:00
|
|
|
|
|
|
|
struct {
|
2010-10-13 02:04:43 +00:00
|
|
|
GLboolean available;
|
2010-09-09 16:15:32 +00:00
|
|
|
int eventBase;
|
|
|
|
int errorBase;
|
2013-01-02 00:40:42 +00:00
|
|
|
int versionMajor;
|
|
|
|
int versionMinor;
|
2010-10-13 02:04:43 +00:00
|
|
|
GLboolean gammaBroken;
|
2013-01-02 00:40:42 +00:00
|
|
|
} randr;
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2011-01-02 10:18:14 +00:00
|
|
|
struct {
|
|
|
|
int majorOpcode;
|
|
|
|
int eventBase;
|
|
|
|
int errorBase;
|
2013-01-02 00:40:42 +00:00
|
|
|
int versionMajor;
|
|
|
|
int versionMinor;
|
|
|
|
} xkb;
|
2011-01-02 10:18:14 +00:00
|
|
|
|
2013-04-04 14:48:58 +00:00
|
|
|
struct {
|
|
|
|
GLboolean available;
|
|
|
|
int majorOpcode;
|
|
|
|
int eventBase;
|
|
|
|
int errorBase;
|
|
|
|
int versionMajor;
|
|
|
|
int versionMinor;
|
2013-04-14 14:33:20 +00:00
|
|
|
} xi;
|
2013-04-04 14:48:58 +00:00
|
|
|
|
2013-01-04 06:28:12 +00:00
|
|
|
// LUT for mapping X11 key codes to GLFW key codes
|
2011-09-20 16:52:00 +00:00
|
|
|
int keyCodeLUT[256];
|
2011-01-03 20:44:05 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
struct {
|
2010-10-14 15:37:56 +00:00
|
|
|
GLboolean changed;
|
|
|
|
int timeout;
|
|
|
|
int interval;
|
|
|
|
int blanking;
|
|
|
|
int exposure;
|
2010-09-09 18:22:23 +00:00
|
|
|
} saver;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
struct {
|
2011-09-19 22:55:20 +00:00
|
|
|
GLboolean monotonic;
|
2010-09-07 15:34:51 +00:00
|
|
|
double resolution;
|
2011-09-20 16:52:00 +00:00
|
|
|
uint64_t base;
|
2010-09-09 18:25:33 +00:00
|
|
|
} timer;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-09-21 14:43:28 +00:00
|
|
|
struct {
|
2013-01-02 15:48:02 +00:00
|
|
|
char* string;
|
2011-09-21 14:43:28 +00:00
|
|
|
} selection;
|
|
|
|
|
2012-08-26 16:11:31 +00:00
|
|
|
struct {
|
2013-01-02 15:48:02 +00:00
|
|
|
int present;
|
|
|
|
int fd;
|
|
|
|
int numAxes;
|
|
|
|
int numButtons;
|
|
|
|
float* axis;
|
|
|
|
unsigned char* button;
|
|
|
|
char* name;
|
2012-08-26 16:11:31 +00:00
|
|
|
} joystick[GLFW_JOYSTICK_LAST + 1];
|
|
|
|
|
2012-04-22 13:53:02 +00:00
|
|
|
} _GLFWlibraryX11;
|
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
2012-12-02 19:52:03 +00:00
|
|
|
// Platform-specific monitor structure
|
2011-10-02 20:13:47 +00:00
|
|
|
//------------------------------------------------------------------------
|
2011-10-03 07:24:35 +00:00
|
|
|
typedef struct _GLFWmonitorX11
|
2011-10-02 20:13:47 +00:00
|
|
|
{
|
2013-02-01 07:25:05 +00:00
|
|
|
RROutput output;
|
|
|
|
RRCrtc crtc;
|
|
|
|
RRMode oldMode;
|
2011-10-06 21:28:56 +00:00
|
|
|
|
2011-10-03 07:24:35 +00:00
|
|
|
} _GLFWmonitorX11;
|
2011-10-02 20:13:47 +00:00
|
|
|
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
// Prototypes for platform specific internal functions
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
// Time
|
2010-09-08 21:46:12 +00:00
|
|
|
void _glfwInitTimer(void);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-05-24 09:36:43 +00:00
|
|
|
// Gamma
|
|
|
|
void _glfwInitGammaRamp(void);
|
|
|
|
|
2012-04-23 10:48:57 +00:00
|
|
|
// OpenGL support
|
2013-01-15 19:49:29 +00:00
|
|
|
int _glfwInitContextAPI(void);
|
|
|
|
void _glfwTerminateContextAPI(void);
|
2012-04-23 10:48:57 +00:00
|
|
|
int _glfwCreateContext(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
|
|
|
const _GLFWfbconfig* fbconfig);
|
|
|
|
void _glfwDestroyContext(_GLFWwindow* window);
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
// Fullscreen support
|
2013-04-21 19:28:07 +00:00
|
|
|
void _glfwSetVideoMode(_GLFWmonitor* monitor, const GLFWvidmode* desired);
|
2013-01-02 16:29:24 +00:00
|
|
|
void _glfwRestoreVideoMode(_GLFWmonitor* monitor);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Joystick input
|
2012-09-07 13:27:41 +00:00
|
|
|
int _glfwInitJoysticks(void);
|
2010-09-08 21:46:12 +00:00
|
|
|
void _glfwTerminateJoysticks(void);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Unicode support
|
2010-09-08 21:46:12 +00:00
|
|
|
long _glfwKeySym2Unicode(KeySym keysym);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-09-22 11:03:45 +00:00
|
|
|
// Clipboard handling
|
2012-04-11 21:32:50 +00:00
|
|
|
Atom _glfwWriteSelection(XSelectionRequestEvent* request);
|
2013-04-29 11:16:56 +00:00
|
|
|
void _glfwPushSelectionToManager(_GLFWwindow* window);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-01-21 18:57:03 +00:00
|
|
|
// Window support
|
2013-01-30 23:26:37 +00:00
|
|
|
_GLFWwindow* _glfwFindWindowByHandle(Window handle);
|
2013-01-21 18:57:03 +00:00
|
|
|
unsigned long _glfwGetWindowProperty(Window window,
|
|
|
|
Atom property,
|
|
|
|
Atom type,
|
|
|
|
unsigned char** value);
|
|
|
|
|
2013-01-15 00:59:56 +00:00
|
|
|
#endif // _x11_platform_h_
|