2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2014-01-22 00:32:00 +00:00
|
|
|
// GLFW 3.1 X11 - www.glfw.org
|
2010-09-07 15:34:51 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// 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>
|
2013-12-04 13:19:22 +00:00
|
|
|
#include <X11/Xcursor/Xcursor.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
|
|
|
|
2014-09-22 10:49:03 +00:00
|
|
|
// The Xinerama extension provides legacy monitor indices
|
|
|
|
#include <X11/extensions/Xinerama.h>
|
|
|
|
|
2014-03-30 12:37:20 +00:00
|
|
|
#include "posix_tls.h"
|
|
|
|
|
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
|
2014-04-08 14:25:35 +00:00
|
|
|
#include "glx_context.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
|
2014-04-08 14:25:35 +00:00
|
|
|
#include "egl_context.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
|
|
|
|
|
2014-03-27 15:08:06 +00:00
|
|
|
#include "posix_time.h"
|
2014-03-17 21:53:43 +00:00
|
|
|
#include "linux_joystick.h"
|
2014-06-29 21:01:11 +00:00
|
|
|
#include "xkb_unicode.h"
|
2014-03-17 21:53:43 +00:00
|
|
|
|
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
|
2013-12-04 13:19:22 +00:00
|
|
|
#define _GLFW_PLATFORM_CURSOR_STATE _GLFWcursorX11 x11
|
2010-09-09 16:15:32 +00:00
|
|
|
|
|
|
|
|
2014-09-02 17:42:43 +00:00
|
|
|
// X11-specific per-window data
|
|
|
|
//
|
2010-09-09 18:36:23 +00:00
|
|
|
typedef struct _GLFWwindowX11
|
|
|
|
{
|
2014-09-02 17:42:43 +00:00
|
|
|
Colormap colormap;
|
|
|
|
Window handle;
|
2014-09-21 00:13:41 +00:00
|
|
|
XIC ic;
|
2010-09-09 18:36:23 +00:00
|
|
|
|
2014-09-02 17:42:43 +00:00
|
|
|
GLboolean overrideRedirect;
|
2013-04-30 13:50:01 +00:00
|
|
|
|
2013-06-16 16:29:46 +00:00
|
|
|
// Cached position and size used to filter out duplicate events
|
|
|
|
int width, height;
|
|
|
|
int xpos, ypos;
|
|
|
|
|
2013-04-30 13:50:01 +00:00
|
|
|
// The last received cursor position, regardless of source
|
2013-04-04 14:48:58 +00:00
|
|
|
double cursorPosX, cursorPosY;
|
2013-04-30 13:50:01 +00:00
|
|
|
// The last position the cursor was warped to by GLFW
|
|
|
|
int warpPosX, warpPosY;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
} _GLFWwindowX11;
|
|
|
|
|
|
|
|
|
2014-09-02 17:42:43 +00:00
|
|
|
// X11-specific global data
|
|
|
|
//
|
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;
|
2014-08-22 09:18:24 +00:00
|
|
|
// Context for mapping window XIDs to _GLFWwindow pointers
|
2013-04-15 00:16:51 +00:00
|
|
|
XContext context;
|
2014-09-21 00:13:41 +00:00
|
|
|
// XIM input method
|
|
|
|
XIM im;
|
2014-08-22 09:18:24 +00:00
|
|
|
// True if window manager supports EWMH
|
|
|
|
GLboolean hasEWMH;
|
|
|
|
// Most recent error code received by X error handler
|
|
|
|
int errorCode;
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2014-08-21 19:14:29 +00:00
|
|
|
char* clipboardString;
|
|
|
|
|
2014-08-22 09:18:24 +00:00
|
|
|
// LUT for mapping X11 key codes to GLFW key codes
|
|
|
|
int keyCodeLUT[256];
|
|
|
|
|
2013-01-21 17:03:47 +00:00
|
|
|
// Window manager atoms
|
2014-03-09 12:24:17 +00:00
|
|
|
Atom WM_PROTOCOLS;
|
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;
|
2013-05-02 14:31:27 +00:00
|
|
|
Atom NET_WM_PID;
|
2013-01-21 17:03:47 +00:00
|
|
|
Atom NET_WM_PING;
|
|
|
|
Atom NET_WM_STATE;
|
2014-05-23 12:01:02 +00:00
|
|
|
Atom NET_WM_STATE_ABOVE;
|
2013-01-21 17:03:47 +00:00
|
|
|
Atom NET_WM_STATE_FULLSCREEN;
|
2013-11-20 18:58:06 +00:00
|
|
|
Atom NET_WM_BYPASS_COMPOSITOR;
|
2014-09-22 10:49:03 +00:00
|
|
|
Atom NET_WM_FULLSCREEN_MONITORS;
|
2013-01-21 17:03:47 +00:00
|
|
|
Atom NET_ACTIVE_WINDOW;
|
2014-03-25 20:30:13 +00:00
|
|
|
Atom NET_FRAME_EXTENTS;
|
2014-03-30 10:24:18 +00:00
|
|
|
Atom NET_REQUEST_FRAME_EXTENTS;
|
2013-04-08 13:16:32 +00:00
|
|
|
Atom MOTIF_WM_HINTS;
|
2012-04-05 15:29:08 +00:00
|
|
|
|
2014-02-13 01:30:28 +00:00
|
|
|
// Xdnd (drag and drop) atoms
|
|
|
|
Atom XdndAware;
|
|
|
|
Atom XdndEnter;
|
|
|
|
Atom XdndPosition;
|
|
|
|
Atom XdndStatus;
|
|
|
|
Atom XdndActionCopy;
|
|
|
|
Atom XdndDrop;
|
|
|
|
Atom XdndLeave;
|
|
|
|
Atom XdndFinished;
|
|
|
|
Atom XdndSelection;
|
2013-12-22 15:38:56 +00:00
|
|
|
|
2014-01-22 00:34:44 +00:00
|
|
|
// Selection (clipboard) atoms
|
2013-01-29 01:45:08 +00:00
|
|
|
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;
|
2014-03-09 12:18:58 +00:00
|
|
|
Atom _NULL;
|
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
|
|
|
|
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;
|
2014-01-22 15:39:34 +00:00
|
|
|
GLboolean monitorBroken;
|
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 {
|
2014-04-24 05:10:58 +00:00
|
|
|
GLboolean available;
|
2014-05-18 10:24:29 +00:00
|
|
|
GLboolean detectable;
|
2011-01-02 10:18:14 +00:00
|
|
|
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
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
struct {
|
2013-07-04 15:52:15 +00:00
|
|
|
int count;
|
2010-10-14 15:37:56 +00:00
|
|
|
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
|
|
|
|
2014-02-13 01:30:28 +00:00
|
|
|
struct {
|
|
|
|
Window source;
|
|
|
|
} xdnd;
|
2014-01-22 00:34:44 +00:00
|
|
|
|
2014-09-22 10:49:03 +00:00
|
|
|
struct {
|
|
|
|
GLboolean available;
|
|
|
|
int versionMajor;
|
|
|
|
int versionMinor;
|
|
|
|
} xinerama;
|
|
|
|
|
2012-04-22 13:53:02 +00:00
|
|
|
} _GLFWlibraryX11;
|
|
|
|
|
|
|
|
|
2014-09-02 17:42:43 +00:00
|
|
|
// X11-specific per-monitor data
|
|
|
|
//
|
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
|
|
|
|
2014-09-22 10:49:03 +00:00
|
|
|
// Index of corresponding Xinerama screen,
|
|
|
|
// for EWMH full screen window placement
|
|
|
|
int index;
|
|
|
|
|
2011-10-03 07:24:35 +00:00
|
|
|
} _GLFWmonitorX11;
|
2011-10-02 20:13:47 +00:00
|
|
|
|
|
|
|
|
2014-09-02 17:42:43 +00:00
|
|
|
// X11-specific per-cursor data
|
|
|
|
//
|
2013-12-04 13:19:22 +00:00
|
|
|
typedef struct _GLFWcursorX11
|
|
|
|
{
|
|
|
|
Cursor handle;
|
|
|
|
|
2014-09-02 17:42:43 +00:00
|
|
|
} _GLFWcursorX11;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-05-24 09:36:43 +00:00
|
|
|
|
2014-03-10 11:34:15 +00:00
|
|
|
GLboolean _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
|
|
|
|
2014-06-22 11:13:53 +00:00
|
|
|
Cursor _glfwCreateCursor(const GLFWimage* image, int xhot, int yhot);
|
|
|
|
|
2013-01-21 18:57:03 +00:00
|
|
|
unsigned long _glfwGetWindowProperty(Window window,
|
|
|
|
Atom property,
|
|
|
|
Atom type,
|
|
|
|
unsigned char** value);
|
|
|
|
|
2013-07-09 16:38:21 +00:00
|
|
|
void _glfwGrabXErrorHandler(void);
|
|
|
|
void _glfwReleaseXErrorHandler(void);
|
2013-07-10 23:23:26 +00:00
|
|
|
void _glfwInputXError(int error, const char* message);
|
2013-07-09 16:38:21 +00:00
|
|
|
|
2013-01-15 00:59:56 +00:00
|
|
|
#endif // _x11_platform_h_
|