glfw/src/x11_platform.h

271 lines
7.6 KiB
C
Raw Normal View History

2010-09-07 17:34:51 +02:00
//========================================================================
2015-06-01 22:55:06 +02:00
// GLFW 3.2 X11 - www.glfw.org
2010-09-07 17:34:51 +02: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.
//
//========================================================================
2015-06-07 19:32:24 +02:00
#ifndef _glfw3_x11_platform_h_
#define _glfw3_x11_platform_h_
2010-09-07 17:34:51 +02:00
#include <unistd.h>
#include <signal.h>
#include <stdint.h>
2010-09-07 17:34:51 +02:00
#include <X11/Xlib.h>
#include <X11/keysym.h>
#include <X11/Xatom.h>
#include <X11/Xcursor/Xcursor.h>
2010-10-03 19:50:19 +02:00
2012-08-26 15:38:18 +02:00
// The XRandR extension provides mode setting and gamma control
#include <X11/extensions/Xrandr.h>
2010-09-07 17:34:51 +02:00
// The Xkb extension provides improved keyboard support
#include <X11/XKBlib.h>
2010-09-07 17:34:51 +02:00
// The Xinerama extension provides legacy monitor indices
#include <X11/extensions/Xinerama.h>
#if defined(_GLFW_HAS_XINPUT)
// The XInput2 extension provides improved input events
#include <X11/extensions/XInput2.h>
#endif
2015-01-27 23:56:44 +01:00
#if defined(_GLFW_HAS_XF86VM)
// The Xf86VidMode extension provides fallback gamma control
#include <X11/extensions/xf86vmode.h>
#endif
#include "posix_tls.h"
2015-05-27 15:06:52 +02:00
#include "posix_time.h"
#include "linux_joystick.h"
#include "xkb_unicode.h"
#if defined(_GLFW_GLX)
2014-04-08 16:25:35 +02:00
#include "glx_context.h"
#elif defined(_GLFW_EGL)
2015-12-02 23:53:50 +01:00
#define _GLFW_EGL_NATIVE_WINDOW ((EGLNativeWindowType) window->x11.handle)
#define _GLFW_EGL_NATIVE_DISPLAY ((EGLNativeDisplayType) _glfw.x11.display)
2014-04-08 16:25:35 +02:00
#include "egl_context.h"
#else
2012-12-02 19:01:20 +01:00
#error "No supported context creation API selected"
#endif
#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowX11 x11
#define _GLFW_PLATFORM_LIBRARY_WINDOW_STATE _GLFWlibraryX11 x11
#define _GLFW_PLATFORM_MONITOR_STATE _GLFWmonitorX11 x11
#define _GLFW_PLATFORM_CURSOR_STATE _GLFWcursorX11 x11
2010-09-09 18:15:32 +02:00
2014-09-02 19:42:43 +02:00
// X11-specific per-window data
//
typedef struct _GLFWwindowX11
{
2014-09-02 19:42:43 +02:00
Colormap colormap;
Window handle;
XIC ic;
2013-06-16 18:29:46 +02:00
// Cached position and size used to filter out duplicate events
int width, height;
int xpos, ypos;
2013-04-30 15:50:01 +02:00
// The last received cursor position, regardless of source
2013-04-04 16:48:58 +02:00
double cursorPosX, cursorPosY;
2013-04-30 15:50:01 +02:00
// The last position the cursor was warped to by GLFW
int warpPosX, warpPosY;
2010-09-07 17:34:51 +02:00
// The information from the last KeyPress event
struct {
unsigned int keycode;
Time time;
} last;
2010-09-09 18:15:32 +02:00
} _GLFWwindowX11;
2014-09-02 19:42:43 +02:00
// X11-specific global data
//
2010-09-09 20:21:15 +02:00
typedef struct _GLFWlibraryX11
{
2010-09-09 18:15:32 +02:00
Display* display;
int screen;
Window root;
2013-01-04 07:28:12 +01:00
// Invisible cursor for hidden cursor mode
Cursor cursor;
// Context for mapping window XIDs to _GLFWwindow pointers
2013-04-15 02:16:51 +02:00
XContext context;
// XIM input method
XIM im;
// Most recent error code received by X error handler
int errorCode;
2014-11-03 19:16:29 +01:00
// Clipboard string (while the selection is owned)
char* clipboardString;
2015-07-02 14:24:50 +02:00
// Key name string
char keyName[64];
2014-03-30 16:23:22 +02:00
// X11 keycode to GLFW key LUT
short int publicKeys[256];
2015-07-02 14:24:50 +02:00
// GLFW key to X11 keycode LUT
short int nativeKeys[GLFW_KEY_LAST + 1];
// Window manager atoms
Atom WM_PROTOCOLS;
2013-01-21 19:57:03 +01:00
Atom WM_STATE;
Atom WM_DELETE_WINDOW;
Atom NET_WM_NAME;
Atom NET_WM_ICON_NAME;
2013-05-02 16:31:27 +02:00
Atom NET_WM_PID;
Atom NET_WM_PING;
Atom NET_WM_STATE;
2014-05-23 14:01:02 +02:00
Atom NET_WM_STATE_ABOVE;
Atom NET_WM_STATE_FULLSCREEN;
Atom NET_WM_BYPASS_COMPOSITOR;
Atom NET_WM_FULLSCREEN_MONITORS;
Atom NET_ACTIVE_WINDOW;
2014-03-25 21:30:13 +01:00
Atom NET_FRAME_EXTENTS;
Atom NET_REQUEST_FRAME_EXTENTS;
2013-04-08 15:16:32 +02:00
Atom MOTIF_WM_HINTS;
2012-04-05 17:29:08 +02:00
2014-02-13 02:30:28 +01: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 16:38:56 +01:00
2014-01-22 01:34:44 +01:00
// Selection (clipboard) atoms
2013-01-29 02:45:08 +01:00
Atom TARGETS;
2013-04-29 12:26:25 +02:00
Atom MULTIPLE;
2013-01-29 02:45:08 +01:00
Atom CLIPBOARD;
2013-04-29 13:16:56 +02:00
Atom CLIPBOARD_MANAGER;
Atom SAVE_TARGETS;
Atom NULL_;
2013-01-29 02:45:08 +01:00
Atom UTF8_STRING;
Atom COMPOUND_STRING;
2013-04-29 13:16:56 +02:00
Atom ATOM_PAIR;
2013-04-29 12:45:18 +02:00
Atom GLFW_SELECTION;
2013-01-29 02:45:08 +01:00
2010-09-09 18:15:32 +02:00
struct {
2015-08-23 19:30:04 +02:00
GLFWbool available;
2010-09-09 18:15:32 +02:00
int eventBase;
int errorBase;
int major;
int minor;
2015-08-23 19:30:04 +02:00
GLFWbool gammaBroken;
GLFWbool monitorBroken;
} randr;
2010-09-09 18:15:32 +02:00
struct {
2015-08-23 19:30:04 +02:00
GLFWbool available;
GLFWbool detectable;
int majorOpcode;
int eventBase;
int errorBase;
int major;
int minor;
} xkb;
2010-09-07 17:34:51 +02:00
struct {
int count;
2010-10-14 17:37:56 +02:00
int timeout;
int interval;
int blanking;
int exposure;
2010-09-09 20:22:23 +02:00
} saver;
2010-09-07 17:34:51 +02:00
2014-02-13 02:30:28 +01:00
struct {
Window source;
} xdnd;
2014-01-22 01:34:44 +01:00
struct {
2015-08-23 19:30:04 +02:00
GLFWbool available;
int major;
int minor;
} xinerama;
#if defined(_GLFW_HAS_XINPUT)
struct {
2015-08-23 19:30:04 +02:00
GLFWbool available;
int majorOpcode;
int eventBase;
int errorBase;
int major;
int minor;
} xi;
#endif /*_GLFW_HAS_XINPUT*/
2015-01-27 23:56:44 +01:00
#if defined(_GLFW_HAS_XF86VM)
struct {
2015-08-23 19:30:04 +02:00
GLFWbool available;
2015-01-27 23:56:44 +01:00
int eventBase;
int errorBase;
} vidmode;
#endif /*_GLFW_HAS_XF86VM*/
2012-04-22 15:53:02 +02:00
} _GLFWlibraryX11;
2014-09-02 19:42:43 +02:00
// X11-specific per-monitor data
//
typedef struct _GLFWmonitorX11
{
RROutput output;
RRCrtc crtc;
RRMode oldMode;
// Index of corresponding Xinerama screen,
// for EWMH full screen window placement
int index;
} _GLFWmonitorX11;
2014-09-02 19:42:43 +02:00
// X11-specific per-cursor data
//
typedef struct _GLFWcursorX11
{
Cursor handle;
2014-09-02 19:42:43 +02:00
} _GLFWcursorX11;
2010-09-07 17:34:51 +02:00
GLFWbool _glfwSetVideoModeX11(_GLFWmonitor* monitor, const GLFWvidmode* desired);
void _glfwRestoreVideoModeX11(_GLFWmonitor* monitor);
2010-09-07 17:34:51 +02:00
Cursor _glfwCreateCursorX11(const GLFWimage* image, int xhot, int yhot);
2014-06-22 13:13:53 +02:00
unsigned long _glfwGetWindowPropertyX11(Window window,
Atom property,
Atom type,
unsigned char** value);
2013-01-21 19:57:03 +01:00
void _glfwGrabErrorHandlerX11(void);
void _glfwReleaseErrorHandlerX11(void);
void _glfwInputErrorX11(int error, const char* message);
2015-06-07 19:32:24 +02:00
#endif // _glfw3_x11_platform_h_