2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2015-06-01 20:55:06 +00:00
|
|
|
// GLFW 3.2 X11 - www.glfw.org
|
2010-09-07 15:34:51 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2002-2006 Marcus Geelnard
|
2016-06-01 14:17:06 +00:00
|
|
|
// Copyright (c) 2006-2016 Camilla Berglund <elmindreda@glfw.org>
|
2010-09-07 15:34:51 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
2014-09-02 14:52:16 +00:00
|
|
|
#include <X11/cursorfont.h>
|
2015-01-27 23:04:59 +00:00
|
|
|
#include <X11/Xmd.h>
|
2014-09-02 14:52:16 +00:00
|
|
|
|
2012-08-12 14:06:22 +00:00
|
|
|
#include <sys/select.h>
|
|
|
|
|
2010-09-08 15:01:39 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2013-01-21 18:57:03 +00:00
|
|
|
#include <limits.h>
|
2015-08-14 11:49:52 +00:00
|
|
|
#include <errno.h>
|
2015-10-09 11:23:34 +00:00
|
|
|
#include <assert.h>
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Action for EWMH client messages
|
|
|
|
#define _NET_WM_STATE_REMOVE 0
|
|
|
|
#define _NET_WM_STATE_ADD 1
|
|
|
|
#define _NET_WM_STATE_TOGGLE 2
|
|
|
|
|
2010-09-27 00:09:54 +00:00
|
|
|
// Additional mouse button names for XButtonEvent
|
2011-09-22 11:03:45 +00:00
|
|
|
#define Button6 6
|
|
|
|
#define Button7 7
|
2010-10-04 20:18:58 +00:00
|
|
|
|
2013-04-08 13:16:32 +00:00
|
|
|
|
2016-07-24 19:55:36 +00:00
|
|
|
// Wait for data to arrive using select
|
|
|
|
// This avoids blocking other threads via the per-display Xlib lock that also
|
|
|
|
// covers GLX functions
|
2015-03-16 17:19:50 +00:00
|
|
|
//
|
|
|
|
void selectDisplayConnection(struct timeval* timeout)
|
|
|
|
{
|
|
|
|
fd_set fds;
|
2015-12-13 16:38:50 +00:00
|
|
|
int result, count;
|
2015-03-16 17:19:50 +00:00
|
|
|
const int fd = ConnectionNumber(_glfw.x11.display);
|
|
|
|
|
2016-05-04 14:56:17 +00:00
|
|
|
count = fd + 1;
|
|
|
|
|
2015-03-16 17:19:50 +00:00
|
|
|
FD_ZERO(&fds);
|
|
|
|
FD_SET(fd, &fds);
|
2015-12-13 16:38:50 +00:00
|
|
|
#if defined(__linux__)
|
|
|
|
FD_SET(_glfw.linux_js.inotify, &fds);
|
|
|
|
|
2016-05-04 14:56:17 +00:00
|
|
|
if (fd < _glfw.linux_js.inotify)
|
2015-12-13 16:38:50 +00:00
|
|
|
count = _glfw.linux_js.inotify + 1;
|
2016-05-04 14:56:17 +00:00
|
|
|
#endif
|
2015-03-16 17:19:50 +00:00
|
|
|
|
2015-08-14 11:49:52 +00:00
|
|
|
// NOTE: Only retry on EINTR if there is no timeout, as select is not
|
|
|
|
// required to update it for the time elapsed
|
|
|
|
// TODO: Update timeout value manually
|
|
|
|
do
|
|
|
|
{
|
2015-12-13 16:38:50 +00:00
|
|
|
result = select(count, &fds, NULL, NULL, timeout);
|
2015-08-14 11:49:52 +00:00
|
|
|
}
|
|
|
|
while (result == -1 && errno == EINTR && timeout == NULL);
|
2015-03-16 17:19:50 +00:00
|
|
|
}
|
|
|
|
|
2014-12-26 11:25:48 +00:00
|
|
|
// Returns whether the window is iconified
|
|
|
|
//
|
|
|
|
static int getWindowState(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
int result = WithdrawnState;
|
|
|
|
struct {
|
|
|
|
CARD32 state;
|
|
|
|
Window icon;
|
|
|
|
} *state = NULL;
|
|
|
|
|
2015-12-03 17:16:46 +00:00
|
|
|
if (_glfwGetWindowPropertyX11(window->x11.handle,
|
|
|
|
_glfw.x11.WM_STATE,
|
|
|
|
_glfw.x11.WM_STATE,
|
|
|
|
(unsigned char**) &state) >= 2)
|
2014-12-26 11:25:48 +00:00
|
|
|
{
|
|
|
|
result = state->state;
|
|
|
|
}
|
|
|
|
|
|
|
|
XFree(state);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-07-25 11:57:06 +00:00
|
|
|
// Returns whether the event is a selection event
|
|
|
|
//
|
|
|
|
static Bool isSelectionEvent(Display* display, XEvent* event, XPointer pointer)
|
|
|
|
{
|
|
|
|
return event->type == SelectionRequest ||
|
|
|
|
event->type == SelectionNotify ||
|
|
|
|
event->type == SelectionClear;
|
|
|
|
}
|
|
|
|
|
2016-07-25 11:59:07 +00:00
|
|
|
// Returns whether the event is a _NET_FRAME_EXTENTS event
|
2014-03-30 10:24:18 +00:00
|
|
|
//
|
|
|
|
static Bool isFrameExtentsEvent(Display* display, XEvent* event, XPointer pointer)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) pointer;
|
|
|
|
return event->type == PropertyNotify &&
|
|
|
|
event->xproperty.state == PropertyNewValue &&
|
|
|
|
event->xproperty.window == window->x11.handle &&
|
|
|
|
event->xproperty.atom == _glfw.x11.NET_FRAME_EXTENTS;
|
|
|
|
}
|
|
|
|
|
2014-09-02 14:52:16 +00:00
|
|
|
// Translates a GLFW standard cursor to a font cursor shape
|
|
|
|
//
|
|
|
|
static int translateCursorShape(int shape)
|
|
|
|
{
|
|
|
|
switch (shape)
|
|
|
|
{
|
|
|
|
case GLFW_ARROW_CURSOR:
|
2015-06-25 10:58:09 +00:00
|
|
|
return XC_left_ptr;
|
2014-09-02 14:52:16 +00:00
|
|
|
case GLFW_IBEAM_CURSOR:
|
|
|
|
return XC_xterm;
|
|
|
|
case GLFW_CROSSHAIR_CURSOR:
|
|
|
|
return XC_crosshair;
|
|
|
|
case GLFW_HAND_CURSOR:
|
|
|
|
return XC_hand1;
|
|
|
|
case GLFW_HRESIZE_CURSOR:
|
|
|
|
return XC_sb_h_double_arrow;
|
|
|
|
case GLFW_VRESIZE_CURSOR:
|
|
|
|
return XC_sb_v_double_arrow;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-12-09 18:19:00 +00:00
|
|
|
// Translates an X event modifier state mask
|
|
|
|
//
|
2013-05-30 22:09:37 +00:00
|
|
|
static int translateState(int state)
|
2012-12-09 18:19:00 +00:00
|
|
|
{
|
|
|
|
int mods = 0;
|
|
|
|
|
|
|
|
if (state & ShiftMask)
|
|
|
|
mods |= GLFW_MOD_SHIFT;
|
|
|
|
if (state & ControlMask)
|
2013-05-23 12:11:05 +00:00
|
|
|
mods |= GLFW_MOD_CONTROL;
|
2012-12-09 18:19:00 +00:00
|
|
|
if (state & Mod1Mask)
|
|
|
|
mods |= GLFW_MOD_ALT;
|
2013-05-23 11:22:27 +00:00
|
|
|
if (state & Mod4Mask)
|
|
|
|
mods |= GLFW_MOD_SUPER;
|
2012-12-09 18:19:00 +00:00
|
|
|
|
|
|
|
return mods;
|
|
|
|
}
|
|
|
|
|
2015-08-16 13:12:02 +00:00
|
|
|
// Translates an X11 key code to a GLFW key token
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2014-03-30 14:23:22 +00:00
|
|
|
static int translateKey(int scancode)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2014-03-30 14:23:22 +00:00
|
|
|
// Use the pre-filled LUT (see createKeyTables() in x11_init.c)
|
|
|
|
if (scancode < 0 || scancode > 255)
|
2014-03-30 10:32:17 +00:00
|
|
|
return GLFW_KEY_UNKNOWN;
|
2013-05-30 15:19:12 +00:00
|
|
|
|
2014-03-30 14:23:22 +00:00
|
|
|
return _glfw.x11.publicKeys[scancode];
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2014-09-09 14:26:57 +00:00
|
|
|
// Return the GLFW window corresponding to the specified X11 window
|
|
|
|
//
|
|
|
|
static _GLFWwindow* findWindowByHandle(Window handle)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window;
|
|
|
|
|
|
|
|
if (XFindContext(_glfw.x11.display,
|
|
|
|
handle,
|
|
|
|
_glfw.x11.context,
|
|
|
|
(XPointer*) &window) != 0)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return window;
|
|
|
|
}
|
|
|
|
|
2015-06-02 15:05:00 +00:00
|
|
|
// Sends an EWMH or ICCCM event to the window manager
|
2014-05-23 12:01:02 +00:00
|
|
|
//
|
2015-06-02 15:05:00 +00:00
|
|
|
static void sendEventToWM(_GLFWwindow* window, Atom type,
|
|
|
|
long a, long b, long c, long d, long e)
|
2014-05-23 12:01:02 +00:00
|
|
|
{
|
|
|
|
XEvent event;
|
|
|
|
memset(&event, 0, sizeof(event));
|
|
|
|
|
|
|
|
event.type = ClientMessage;
|
|
|
|
event.xclient.window = window->x11.handle;
|
|
|
|
event.xclient.format = 32; // Data is 32-bit longs
|
2015-06-02 15:05:00 +00:00
|
|
|
event.xclient.message_type = type;
|
|
|
|
event.xclient.data.l[0] = a;
|
|
|
|
event.xclient.data.l[1] = b;
|
|
|
|
event.xclient.data.l[2] = c;
|
|
|
|
event.xclient.data.l[3] = d;
|
|
|
|
event.xclient.data.l[4] = e;
|
2014-05-23 12:01:02 +00:00
|
|
|
|
2015-06-02 15:27:35 +00:00
|
|
|
XSendEvent(_glfw.x11.display, _glfw.x11.root,
|
2014-05-23 12:01:02 +00:00
|
|
|
False,
|
|
|
|
SubstructureNotifyMask | SubstructureRedirectMask,
|
|
|
|
&event);
|
|
|
|
}
|
|
|
|
|
2016-02-23 11:26:42 +00:00
|
|
|
// Updates the normal hints according to the window settings
|
|
|
|
//
|
2016-05-03 09:28:23 +00:00
|
|
|
static void updateNormalHints(_GLFWwindow* window, int width, int height)
|
2016-02-23 11:26:42 +00:00
|
|
|
{
|
|
|
|
XSizeHints* hints = XAllocSizeHints();
|
|
|
|
|
|
|
|
if (!window->monitor)
|
|
|
|
{
|
|
|
|
if (window->resizable)
|
|
|
|
{
|
2016-07-13 21:31:51 +00:00
|
|
|
if (window->minwidth != GLFW_DONT_CARE &&
|
|
|
|
window->minheight != GLFW_DONT_CARE)
|
|
|
|
{
|
2016-07-22 15:39:39 +00:00
|
|
|
hints->flags |= PMinSize;
|
2016-07-13 21:31:51 +00:00
|
|
|
hints->min_width = window->minwidth;
|
|
|
|
hints->min_height = window->minheight;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window->maxwidth != GLFW_DONT_CARE &&
|
|
|
|
window->maxheight != GLFW_DONT_CARE)
|
|
|
|
{
|
2016-07-22 15:39:39 +00:00
|
|
|
hints->flags |= PMaxSize;
|
2016-07-13 21:31:51 +00:00
|
|
|
hints->max_width = window->maxwidth;
|
|
|
|
hints->max_height = window->maxheight;
|
|
|
|
}
|
|
|
|
|
2016-02-23 11:26:42 +00:00
|
|
|
if (window->numer != GLFW_DONT_CARE &&
|
|
|
|
window->denom != GLFW_DONT_CARE)
|
|
|
|
{
|
|
|
|
hints->flags |= PAspect;
|
|
|
|
hints->min_aspect.x = hints->max_aspect.x = window->numer;
|
|
|
|
hints->min_aspect.y = hints->max_aspect.y = window->denom;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hints->flags |= (PMinSize | PMaxSize);
|
|
|
|
hints->min_width = hints->max_width = width;
|
|
|
|
hints->min_height = hints->max_height = height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
XSetWMNormalHints(_glfw.x11.display, window->x11.handle, hints);
|
|
|
|
XFree(hints);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Updates the full screen status of the window
|
|
|
|
//
|
|
|
|
static void updateWindowMode(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
if (window->monitor)
|
|
|
|
{
|
|
|
|
if (_glfw.x11.xinerama.available &&
|
|
|
|
_glfw.x11.NET_WM_FULLSCREEN_MONITORS)
|
|
|
|
{
|
|
|
|
sendEventToWM(window,
|
|
|
|
_glfw.x11.NET_WM_FULLSCREEN_MONITORS,
|
|
|
|
window->monitor->x11.index,
|
|
|
|
window->monitor->x11.index,
|
|
|
|
window->monitor->x11.index,
|
|
|
|
window->monitor->x11.index,
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_glfw.x11.NET_WM_STATE && _glfw.x11.NET_WM_STATE_FULLSCREEN)
|
|
|
|
{
|
|
|
|
sendEventToWM(window,
|
|
|
|
_glfw.x11.NET_WM_STATE,
|
|
|
|
_NET_WM_STATE_ADD,
|
|
|
|
_glfw.x11.NET_WM_STATE_FULLSCREEN,
|
|
|
|
0, 1, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// This is the butcher's way of removing window decorations
|
|
|
|
// Setting the override-redirect attribute on a window makes the
|
|
|
|
// window manager ignore the window completely (ICCCM, section 4)
|
|
|
|
// The good thing is that this makes undecorated full screen windows
|
|
|
|
// easy to do; the bad thing is that we have to do everything
|
|
|
|
// manually and some things (like iconify/restore) won't work at
|
|
|
|
// all, as those are tasks usually performed by the window manager
|
|
|
|
|
|
|
|
XSetWindowAttributes attributes;
|
|
|
|
attributes.override_redirect = True;
|
|
|
|
XChangeWindowAttributes(_glfw.x11.display,
|
|
|
|
window->x11.handle,
|
|
|
|
CWOverrideRedirect,
|
|
|
|
&attributes);
|
|
|
|
|
|
|
|
window->x11.overrideRedirect = GLFW_TRUE;
|
|
|
|
}
|
|
|
|
|
2016-05-03 09:58:25 +00:00
|
|
|
// Enable compositor bypass
|
2016-02-23 11:26:42 +00:00
|
|
|
{
|
|
|
|
const unsigned long value = 1;
|
|
|
|
|
|
|
|
XChangeProperty(_glfw.x11.display, window->x11.handle,
|
|
|
|
_glfw.x11.NET_WM_BYPASS_COMPOSITOR, XA_CARDINAL, 32,
|
|
|
|
PropModeReplace, (unsigned char*) &value, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (_glfw.x11.xinerama.available &&
|
|
|
|
_glfw.x11.NET_WM_FULLSCREEN_MONITORS)
|
|
|
|
{
|
|
|
|
XDeleteProperty(_glfw.x11.display, window->x11.handle,
|
|
|
|
_glfw.x11.NET_WM_FULLSCREEN_MONITORS);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_glfw.x11.NET_WM_STATE && _glfw.x11.NET_WM_STATE_FULLSCREEN)
|
|
|
|
{
|
|
|
|
sendEventToWM(window,
|
|
|
|
_glfw.x11.NET_WM_STATE,
|
|
|
|
_NET_WM_STATE_REMOVE,
|
|
|
|
_glfw.x11.NET_WM_STATE_FULLSCREEN,
|
|
|
|
0, 1, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
XSetWindowAttributes attributes;
|
|
|
|
attributes.override_redirect = False;
|
|
|
|
XChangeWindowAttributes(_glfw.x11.display,
|
|
|
|
window->x11.handle,
|
|
|
|
CWOverrideRedirect,
|
|
|
|
&attributes);
|
|
|
|
|
|
|
|
window->x11.overrideRedirect = GLFW_FALSE;
|
|
|
|
}
|
|
|
|
|
2016-05-03 09:58:25 +00:00
|
|
|
// Disable compositor bypass
|
2016-02-23 11:26:42 +00:00
|
|
|
{
|
|
|
|
XDeleteProperty(_glfw.x11.display, window->x11.handle,
|
|
|
|
_glfw.x11.NET_WM_BYPASS_COMPOSITOR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-07 11:38:54 +00:00
|
|
|
// Splits and translates a text/uri-list into separate file paths
|
2015-01-27 22:03:12 +00:00
|
|
|
// NOTE: This function destroys the provided string
|
2013-12-22 18:28:46 +00:00
|
|
|
//
|
2014-04-07 11:38:54 +00:00
|
|
|
static char** parseUriList(char* text, int* count)
|
2013-12-22 18:28:46 +00:00
|
|
|
{
|
|
|
|
const char* prefix = "file://";
|
2015-01-27 22:04:22 +00:00
|
|
|
char** paths = NULL;
|
2013-12-22 18:28:46 +00:00
|
|
|
char* line;
|
|
|
|
|
|
|
|
*count = 0;
|
|
|
|
|
|
|
|
while ((line = strtok(text, "\r\n")))
|
|
|
|
{
|
|
|
|
text = NULL;
|
|
|
|
|
2015-01-27 22:03:12 +00:00
|
|
|
if (line[0] == '#')
|
2013-12-22 18:28:46 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (strncmp(line, prefix, strlen(prefix)) == 0)
|
|
|
|
line += strlen(prefix);
|
|
|
|
|
|
|
|
(*count)++;
|
|
|
|
|
2015-01-27 22:04:22 +00:00
|
|
|
char* path = calloc(strlen(line) + 1, 1);
|
|
|
|
paths = realloc(paths, *count * sizeof(char*));
|
|
|
|
paths[*count - 1] = path;
|
2013-12-22 18:28:46 +00:00
|
|
|
|
|
|
|
while (*line)
|
|
|
|
{
|
|
|
|
if (line[0] == '%' && line[1] && line[2])
|
|
|
|
{
|
|
|
|
const char digits[3] = { line[1], line[2], '\0' };
|
2015-01-27 22:04:22 +00:00
|
|
|
*path = strtol(digits, NULL, 16);
|
2013-12-22 18:28:46 +00:00
|
|
|
line += 2;
|
|
|
|
}
|
|
|
|
else
|
2015-01-27 22:04:22 +00:00
|
|
|
*path = *line;
|
2013-12-22 18:28:46 +00:00
|
|
|
|
2015-01-27 22:04:22 +00:00
|
|
|
path++;
|
2013-12-22 18:28:46 +00:00
|
|
|
line++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-27 22:04:22 +00:00
|
|
|
return paths;
|
2013-12-22 18:28:46 +00:00
|
|
|
}
|
|
|
|
|
2016-05-25 12:06:02 +00:00
|
|
|
// Centers the cursor over the window client area
|
|
|
|
//
|
|
|
|
static void centerCursor(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
_glfwPlatformGetWindowSize(window, &width, &height);
|
|
|
|
_glfwPlatformSetCursorPos(window, width / 2.0, height / 2.0);
|
|
|
|
}
|
|
|
|
|
2016-05-30 19:21:09 +00:00
|
|
|
// Updates the cursor image according to its cursor mode
|
|
|
|
//
|
|
|
|
static void updateCursorImage(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
if (window->cursorMode == GLFW_CURSOR_NORMAL)
|
|
|
|
{
|
|
|
|
if (window->cursor)
|
|
|
|
{
|
|
|
|
XDefineCursor(_glfw.x11.display, window->x11.handle,
|
|
|
|
window->cursor->x11.handle);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
XUndefineCursor(_glfw.x11.display, window->x11.handle);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
XDefineCursor(_glfw.x11.display, window->x11.handle, _glfw.x11.cursor);
|
|
|
|
}
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
// Create the X11 window (and its colormap)
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2016-07-25 17:36:25 +00:00
|
|
|
static GLFWbool createNativeWindow(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
|
|
|
Visual* visual, int depth)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2016-05-23 20:59:11 +00:00
|
|
|
// Create a colormap based on the visual used by the current context
|
2013-01-02 00:40:42 +00:00
|
|
|
window->x11.colormap = XCreateColormap(_glfw.x11.display,
|
|
|
|
_glfw.x11.root,
|
2015-06-18 12:03:02 +00:00
|
|
|
visual,
|
2010-09-13 21:42:51 +00:00
|
|
|
AllocNone);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Create the actual window
|
|
|
|
{
|
2015-10-24 20:47:27 +00:00
|
|
|
XSetWindowAttributes wa;
|
|
|
|
const unsigned long wamask = CWBorderPixel | CWColormap | CWEventMask;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
wa.colormap = window->x11.colormap;
|
2010-09-07 15:34:51 +00:00
|
|
|
wa.border_pixel = 0;
|
|
|
|
wa.event_mask = StructureNotifyMask | KeyPressMask | KeyReleaseMask |
|
2012-10-21 14:23:36 +00:00
|
|
|
PointerMotionMask | ButtonPressMask | ButtonReleaseMask |
|
|
|
|
ExposureMask | FocusChangeMask | VisibilityChangeMask |
|
2013-01-21 18:57:03 +00:00
|
|
|
EnterWindowMask | LeaveWindowMask | PropertyChangeMask;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2015-12-03 17:16:46 +00:00
|
|
|
_glfwGrabErrorHandlerX11();
|
2013-11-10 13:12:07 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
window->x11.handle = XCreateWindow(_glfw.x11.display,
|
|
|
|
_glfw.x11.root,
|
2013-01-24 18:30:31 +00:00
|
|
|
0, 0,
|
2012-11-25 13:53:33 +00:00
|
|
|
wndconfig->width, wndconfig->height,
|
2015-06-18 12:03:02 +00:00
|
|
|
0, // Border width
|
|
|
|
depth, // Color depth
|
2012-08-26 13:38:18 +00:00
|
|
|
InputOutput,
|
2015-06-18 12:03:02 +00:00
|
|
|
visual,
|
2012-08-26 13:38:18 +00:00
|
|
|
wamask,
|
|
|
|
&wa);
|
2010-09-08 02:15:49 +00:00
|
|
|
|
2015-12-03 17:16:46 +00:00
|
|
|
_glfwReleaseErrorHandlerX11();
|
2013-11-10 13:12:07 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (!window->x11.handle)
|
2010-09-09 19:52:31 +00:00
|
|
|
{
|
2015-12-03 17:16:46 +00:00
|
|
|
_glfwInputErrorX11(GLFW_PLATFORM_ERROR,
|
|
|
|
"X11: Failed to create window");
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_FALSE;
|
2010-09-09 19:52:31 +00:00
|
|
|
}
|
2013-04-08 01:07:52 +00:00
|
|
|
|
2013-04-15 00:16:51 +00:00
|
|
|
XSaveContext(_glfw.x11.display,
|
|
|
|
window->x11.handle,
|
|
|
|
_glfw.x11.context,
|
|
|
|
(XPointer) window);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2016-02-23 11:26:42 +00:00
|
|
|
if (!wndconfig->decorated)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2016-02-23 11:26:42 +00:00
|
|
|
struct
|
2015-06-15 12:27:25 +00:00
|
|
|
{
|
2016-02-23 11:26:42 +00:00
|
|
|
unsigned long flags;
|
|
|
|
unsigned long functions;
|
|
|
|
unsigned long decorations;
|
|
|
|
long input_mode;
|
|
|
|
unsigned long status;
|
|
|
|
} hints;
|
2015-06-15 12:27:25 +00:00
|
|
|
|
2016-02-23 11:26:42 +00:00
|
|
|
hints.flags = 2; // Set decorations
|
|
|
|
hints.decorations = 0; // No decorations
|
2016-02-28 15:05:02 +00:00
|
|
|
|
2016-02-23 11:26:42 +00:00
|
|
|
XChangeProperty(_glfw.x11.display, window->x11.handle,
|
|
|
|
_glfw.x11.MOTIF_WM_HINTS,
|
|
|
|
_glfw.x11.MOTIF_WM_HINTS, 32,
|
|
|
|
PropModeReplace,
|
|
|
|
(unsigned char*) &hints,
|
|
|
|
sizeof(hints) / sizeof(long));
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2016-02-23 11:26:42 +00:00
|
|
|
|
2016-05-03 09:38:45 +00:00
|
|
|
if (_glfw.x11.NET_WM_STATE && !window->monitor)
|
2015-06-16 10:10:20 +00:00
|
|
|
{
|
2016-05-03 09:38:45 +00:00
|
|
|
Atom states[3];
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
if (wndconfig->floating)
|
2015-08-12 15:21:46 +00:00
|
|
|
{
|
2016-05-03 09:38:45 +00:00
|
|
|
if (_glfw.x11.NET_WM_STATE_ABOVE)
|
|
|
|
states[count++] = _glfw.x11.NET_WM_STATE_ABOVE;
|
2015-06-16 10:10:20 +00:00
|
|
|
}
|
2015-10-13 10:50:59 +00:00
|
|
|
|
2016-05-03 09:38:45 +00:00
|
|
|
if (wndconfig->maximized)
|
2015-10-13 10:50:59 +00:00
|
|
|
{
|
2016-05-03 09:38:45 +00:00
|
|
|
if (_glfw.x11.NET_WM_STATE_MAXIMIZED_VERT &&
|
|
|
|
_glfw.x11.NET_WM_STATE_MAXIMIZED_HORZ)
|
2015-10-13 10:50:59 +00:00
|
|
|
{
|
2016-05-03 09:38:45 +00:00
|
|
|
states[count++] = _glfw.x11.NET_WM_STATE_MAXIMIZED_VERT;
|
|
|
|
states[count++] = _glfw.x11.NET_WM_STATE_MAXIMIZED_HORZ;
|
|
|
|
}
|
|
|
|
}
|
2015-10-13 10:50:59 +00:00
|
|
|
|
2016-05-03 09:38:45 +00:00
|
|
|
if (count)
|
|
|
|
{
|
2016-02-23 11:26:42 +00:00
|
|
|
XChangeProperty(_glfw.x11.display, window->x11.handle,
|
|
|
|
_glfw.x11.NET_WM_STATE, XA_ATOM, 32,
|
2016-05-03 09:38:45 +00:00
|
|
|
PropModeReplace, (unsigned char*) &states, count);
|
2015-10-13 10:50:59 +00:00
|
|
|
}
|
2015-06-16 10:10:20 +00:00
|
|
|
}
|
|
|
|
|
2012-08-26 13:38:18 +00:00
|
|
|
// Declare the WM protocols supported by GLFW
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2016-05-03 09:58:25 +00:00
|
|
|
Atom protocols[] =
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2016-05-03 09:58:25 +00:00
|
|
|
_glfw.x11.WM_DELETE_WINDOW,
|
|
|
|
_glfw.x11.NET_WM_PING
|
|
|
|
};
|
|
|
|
|
|
|
|
XSetWMProtocols(_glfw.x11.display, window->x11.handle,
|
|
|
|
protocols, sizeof(protocols) / sizeof(Atom));
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2016-05-03 09:58:25 +00:00
|
|
|
// Declare our PID
|
2013-05-02 14:31:27 +00:00
|
|
|
{
|
|
|
|
const pid_t pid = getpid();
|
|
|
|
|
|
|
|
XChangeProperty(_glfw.x11.display, window->x11.handle,
|
|
|
|
_glfw.x11.NET_WM_PID, XA_CARDINAL, 32,
|
|
|
|
PropModeReplace,
|
|
|
|
(unsigned char*) &pid, 1);
|
|
|
|
}
|
|
|
|
|
2016-03-14 19:47:48 +00:00
|
|
|
if (_glfw.x11.NET_WM_WINDOW_TYPE && _glfw.x11.NET_WM_WINDOW_TYPE_NORMAL)
|
|
|
|
{
|
|
|
|
Atom type = _glfw.x11.NET_WM_WINDOW_TYPE_NORMAL;
|
|
|
|
XChangeProperty(_glfw.x11.display, window->x11.handle,
|
|
|
|
_glfw.x11.NET_WM_WINDOW_TYPE, XA_ATOM, 32,
|
|
|
|
PropModeReplace, (unsigned char*) &type, 1);
|
|
|
|
}
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
// Set ICCCM WM_HINTS property
|
|
|
|
{
|
2010-09-08 13:58:43 +00:00
|
|
|
XWMHints* hints = XAllocWMHints();
|
2010-09-08 13:51:25 +00:00
|
|
|
if (!hints)
|
2010-09-09 19:52:31 +00:00
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_OUT_OF_MEMORY,
|
|
|
|
"X11: Failed to allocate WM hints");
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_FALSE;
|
2010-09-09 19:52:31 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
hints->flags = StateHint;
|
|
|
|
hints->initial_state = NormalState;
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
XSetWMHints(_glfw.x11.display, window->x11.handle, hints);
|
2010-09-08 13:51:25 +00:00
|
|
|
XFree(hints);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2016-05-03 09:28:23 +00:00
|
|
|
updateNormalHints(window, wndconfig->width, wndconfig->height);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-10-04 11:41:19 +00:00
|
|
|
// Set ICCCM WM_CLASS property
|
|
|
|
// HACK: Until a mechanism for specifying the application name is added, the
|
2013-11-10 12:56:27 +00:00
|
|
|
// initial window title is used as the window class name
|
2013-10-04 11:41:19 +00:00
|
|
|
if (strlen(wndconfig->title))
|
|
|
|
{
|
|
|
|
XClassHint* hint = XAllocClassHint();
|
|
|
|
hint->res_name = (char*) wndconfig->title;
|
|
|
|
hint->res_class = (char*) wndconfig->title;
|
|
|
|
|
|
|
|
XSetClassHint(_glfw.x11.display, window->x11.handle, hint);
|
|
|
|
XFree(hint);
|
|
|
|
}
|
|
|
|
|
2013-12-22 15:38:56 +00:00
|
|
|
if (_glfw.x11.XdndAware)
|
2013-07-10 09:42:14 +00:00
|
|
|
{
|
2014-01-22 00:34:44 +00:00
|
|
|
// Announce support for Xdnd (drag and drop)
|
2013-12-22 15:38:56 +00:00
|
|
|
const Atom version = 5;
|
|
|
|
XChangeProperty(_glfw.x11.display, window->x11.handle,
|
|
|
|
_glfw.x11.XdndAware, XA_ATOM, 32,
|
|
|
|
PropModeReplace, (unsigned char*) &version, 1);
|
2013-07-10 09:42:14 +00:00
|
|
|
}
|
|
|
|
|
2010-09-14 01:10:45 +00:00
|
|
|
_glfwPlatformSetWindowTitle(window, wndconfig->title);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-09-21 00:13:41 +00:00
|
|
|
if (_glfw.x11.im)
|
|
|
|
{
|
|
|
|
window->x11.ic = XCreateIC(_glfw.x11.im,
|
|
|
|
XNInputStyle,
|
|
|
|
XIMPreeditNothing | XIMStatusNothing,
|
|
|
|
XNClientWindow,
|
|
|
|
window->x11.handle,
|
|
|
|
XNFocusWindow,
|
|
|
|
window->x11.handle,
|
|
|
|
NULL);
|
|
|
|
}
|
2013-02-01 07:25:05 +00:00
|
|
|
|
2013-06-16 16:29:46 +00:00
|
|
|
_glfwPlatformGetWindowPos(window, &window->x11.xpos, &window->x11.ypos);
|
|
|
|
_glfwPlatformGetWindowSize(window, &window->x11.width, &window->x11.height);
|
|
|
|
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_TRUE;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2014-09-09 14:26:57 +00:00
|
|
|
// Set the specified property to the selection converted to the requested target
|
|
|
|
//
|
|
|
|
static Atom writeTargetToProperty(const XSelectionRequestEvent* request)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
const Atom formats[] = { _glfw.x11.UTF8_STRING,
|
|
|
|
_glfw.x11.COMPOUND_STRING,
|
|
|
|
XA_STRING };
|
|
|
|
const int formatCount = sizeof(formats) / sizeof(formats[0]);
|
|
|
|
|
|
|
|
if (request->property == None)
|
|
|
|
{
|
2015-01-05 20:55:15 +00:00
|
|
|
// The requester is a legacy client (ICCCM section 2.2)
|
2014-09-09 14:26:57 +00:00
|
|
|
// We don't support legacy clients, so fail here
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request->target == _glfw.x11.TARGETS)
|
|
|
|
{
|
|
|
|
// The list of supported targets was requested
|
|
|
|
|
|
|
|
const Atom targets[] = { _glfw.x11.TARGETS,
|
|
|
|
_glfw.x11.MULTIPLE,
|
|
|
|
_glfw.x11.UTF8_STRING,
|
|
|
|
_glfw.x11.COMPOUND_STRING,
|
|
|
|
XA_STRING };
|
|
|
|
|
|
|
|
XChangeProperty(_glfw.x11.display,
|
|
|
|
request->requestor,
|
|
|
|
request->property,
|
|
|
|
XA_ATOM,
|
|
|
|
32,
|
|
|
|
PropModeReplace,
|
|
|
|
(unsigned char*) targets,
|
|
|
|
sizeof(targets) / sizeof(targets[0]));
|
|
|
|
|
|
|
|
return request->property;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request->target == _glfw.x11.MULTIPLE)
|
|
|
|
{
|
|
|
|
// Multiple conversions were requested
|
|
|
|
|
|
|
|
Atom* targets;
|
|
|
|
unsigned long i, count;
|
|
|
|
|
2015-12-03 17:16:46 +00:00
|
|
|
count = _glfwGetWindowPropertyX11(request->requestor,
|
|
|
|
request->property,
|
|
|
|
_glfw.x11.ATOM_PAIR,
|
|
|
|
(unsigned char**) &targets);
|
2014-09-09 14:26:57 +00:00
|
|
|
|
|
|
|
for (i = 0; i < count; i += 2)
|
|
|
|
{
|
|
|
|
int j;
|
|
|
|
|
|
|
|
for (j = 0; j < formatCount; j++)
|
|
|
|
{
|
|
|
|
if (targets[i] == formats[j])
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (j < formatCount)
|
|
|
|
{
|
|
|
|
XChangeProperty(_glfw.x11.display,
|
|
|
|
request->requestor,
|
|
|
|
targets[i + 1],
|
|
|
|
targets[i],
|
|
|
|
8,
|
|
|
|
PropModeReplace,
|
|
|
|
(unsigned char*) _glfw.x11.clipboardString,
|
|
|
|
strlen(_glfw.x11.clipboardString));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
targets[i + 1] = None;
|
|
|
|
}
|
|
|
|
|
|
|
|
XChangeProperty(_glfw.x11.display,
|
|
|
|
request->requestor,
|
|
|
|
request->property,
|
|
|
|
_glfw.x11.ATOM_PAIR,
|
|
|
|
32,
|
|
|
|
PropModeReplace,
|
|
|
|
(unsigned char*) targets,
|
|
|
|
count);
|
|
|
|
|
|
|
|
XFree(targets);
|
|
|
|
|
|
|
|
return request->property;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request->target == _glfw.x11.SAVE_TARGETS)
|
|
|
|
{
|
|
|
|
// The request is a check whether we support SAVE_TARGETS
|
|
|
|
// It should be handled as a no-op side effect target
|
|
|
|
|
|
|
|
XChangeProperty(_glfw.x11.display,
|
|
|
|
request->requestor,
|
|
|
|
request->property,
|
2015-01-27 23:04:59 +00:00
|
|
|
_glfw.x11.NULL_,
|
2014-09-09 14:26:57 +00:00
|
|
|
32,
|
|
|
|
PropModeReplace,
|
|
|
|
NULL,
|
|
|
|
0);
|
|
|
|
|
|
|
|
return request->property;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Conversion to a data target was requested
|
|
|
|
|
|
|
|
for (i = 0; i < formatCount; i++)
|
|
|
|
{
|
|
|
|
if (request->target == formats[i])
|
|
|
|
{
|
|
|
|
// The requested target is one we support
|
|
|
|
|
|
|
|
XChangeProperty(_glfw.x11.display,
|
|
|
|
request->requestor,
|
|
|
|
request->property,
|
|
|
|
request->target,
|
|
|
|
8,
|
|
|
|
PropModeReplace,
|
|
|
|
(unsigned char*) _glfw.x11.clipboardString,
|
|
|
|
strlen(_glfw.x11.clipboardString));
|
|
|
|
|
|
|
|
return request->property;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The requested target is not supported
|
|
|
|
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleSelectionClear(XEvent* event)
|
|
|
|
{
|
|
|
|
free(_glfw.x11.clipboardString);
|
|
|
|
_glfw.x11.clipboardString = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleSelectionRequest(XEvent* event)
|
|
|
|
{
|
|
|
|
const XSelectionRequestEvent* request = &event->xselectionrequest;
|
|
|
|
|
2015-06-02 15:26:23 +00:00
|
|
|
XEvent reply;
|
|
|
|
memset(&reply, 0, sizeof(reply));
|
|
|
|
|
|
|
|
reply.xselection.property = writeTargetToProperty(request);
|
|
|
|
reply.xselection.type = SelectionNotify;
|
|
|
|
reply.xselection.display = request->display;
|
|
|
|
reply.xselection.requestor = request->requestor;
|
|
|
|
reply.xselection.selection = request->selection;
|
|
|
|
reply.xselection.target = request->target;
|
|
|
|
reply.xselection.time = request->time;
|
|
|
|
|
|
|
|
XSendEvent(_glfw.x11.display, request->requestor, False, 0, &reply);
|
2014-09-09 14:26:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void pushSelectionToManager(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
XConvertSelection(_glfw.x11.display,
|
|
|
|
_glfw.x11.CLIPBOARD_MANAGER,
|
|
|
|
_glfw.x11.SAVE_TARGETS,
|
|
|
|
None,
|
|
|
|
window->x11.handle,
|
|
|
|
CurrentTime);
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
XEvent event;
|
|
|
|
|
2015-03-16 17:19:50 +00:00
|
|
|
while (XCheckIfEvent(_glfw.x11.display, &event, isSelectionEvent, NULL))
|
2014-09-09 14:26:57 +00:00
|
|
|
{
|
2015-03-16 17:19:50 +00:00
|
|
|
switch (event.type)
|
|
|
|
{
|
|
|
|
case SelectionRequest:
|
|
|
|
handleSelectionRequest(&event);
|
|
|
|
break;
|
2014-09-09 14:26:57 +00:00
|
|
|
|
2015-03-16 17:19:50 +00:00
|
|
|
case SelectionClear:
|
|
|
|
handleSelectionClear(&event);
|
|
|
|
break;
|
2014-09-09 14:26:57 +00:00
|
|
|
|
2015-03-16 17:19:50 +00:00
|
|
|
case SelectionNotify:
|
2014-09-09 14:26:57 +00:00
|
|
|
{
|
2015-03-16 17:19:50 +00:00
|
|
|
if (event.xselection.target == _glfw.x11.SAVE_TARGETS)
|
|
|
|
{
|
|
|
|
// This means one of two things; either the selection was
|
|
|
|
// not owned, which means there is no clipboard manager, or
|
|
|
|
// the transfer to the clipboard manager has completed
|
|
|
|
// In either case, it means we are done here
|
|
|
|
return;
|
|
|
|
}
|
2014-09-09 14:26:57 +00:00
|
|
|
|
2015-03-16 17:19:50 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-09-09 14:26:57 +00:00
|
|
|
}
|
|
|
|
}
|
2015-03-16 17:19:50 +00:00
|
|
|
|
|
|
|
selectDisplayConnection(NULL);
|
2014-09-09 14:26:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-23 11:34:35 +00:00
|
|
|
// Make the specified window and its video mode active on its monitor
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2016-02-23 11:34:35 +00:00
|
|
|
static GLFWbool acquireMonitor(_GLFWwindow* window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2016-02-23 11:34:35 +00:00
|
|
|
GLFWbool status;
|
|
|
|
|
2013-07-04 15:52:15 +00:00
|
|
|
if (_glfw.x11.saver.count == 0)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Remember old screen saver settings
|
2013-01-02 00:40:42 +00:00
|
|
|
XGetScreenSaver(_glfw.x11.display,
|
|
|
|
&_glfw.x11.saver.timeout,
|
|
|
|
&_glfw.x11.saver.interval,
|
|
|
|
&_glfw.x11.saver.blanking,
|
|
|
|
&_glfw.x11.saver.exposure);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Disable screen saver
|
2013-01-02 00:40:42 +00:00
|
|
|
XSetScreenSaver(_glfw.x11.display, 0, 0, DontPreferBlanking,
|
2010-09-08 13:51:25 +00:00
|
|
|
DefaultExposures);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2016-02-23 11:26:42 +00:00
|
|
|
if (!window->monitor->window)
|
|
|
|
_glfw.x11.saver.count++;
|
2013-07-04 15:52:15 +00:00
|
|
|
|
2016-02-23 11:34:35 +00:00
|
|
|
status = _glfwSetVideoModeX11(window->monitor, &window->videoMode);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2016-02-23 11:26:42 +00:00
|
|
|
if (window->x11.overrideRedirect)
|
2015-06-15 12:45:05 +00:00
|
|
|
{
|
|
|
|
int xpos, ypos;
|
|
|
|
GLFWvidmode mode;
|
|
|
|
|
2016-02-23 11:26:42 +00:00
|
|
|
// Manually position the window over its monitor
|
2015-06-15 12:45:05 +00:00
|
|
|
_glfwPlatformGetMonitorPos(window->monitor, &xpos, &ypos);
|
|
|
|
_glfwPlatformGetVideoMode(window->monitor, &mode);
|
|
|
|
|
|
|
|
XMoveResizeWindow(_glfw.x11.display, window->x11.handle,
|
|
|
|
xpos, ypos, mode.width, mode.height);
|
|
|
|
}
|
|
|
|
|
2016-02-23 11:34:35 +00:00
|
|
|
_glfwInputMonitorWindowChange(window->monitor, window);
|
|
|
|
return status;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2016-02-23 11:34:35 +00:00
|
|
|
// Remove the window and restore the original video mode
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2016-02-23 11:34:35 +00:00
|
|
|
static void releaseMonitor(_GLFWwindow* window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2016-02-23 11:34:35 +00:00
|
|
|
if (window->monitor->window != window)
|
|
|
|
return;
|
|
|
|
|
|
|
|
_glfwInputMonitorWindowChange(window->monitor, NULL);
|
2015-12-03 17:16:46 +00:00
|
|
|
_glfwRestoreVideoModeX11(window->monitor);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-07-04 15:52:15 +00:00
|
|
|
_glfw.x11.saver.count--;
|
|
|
|
|
|
|
|
if (_glfw.x11.saver.count == 0)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Restore old screen saver settings
|
2013-01-02 00:40:42 +00:00
|
|
|
XSetScreenSaver(_glfw.x11.display,
|
|
|
|
_glfw.x11.saver.timeout,
|
|
|
|
_glfw.x11.saver.interval,
|
|
|
|
_glfw.x11.saver.blanking,
|
|
|
|
_glfw.x11.saver.exposure);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-09 11:23:34 +00:00
|
|
|
// Decode a Unicode code point from a UTF-8 stream
|
|
|
|
// Based on cutef8 by Jeff Bezanson (Public Domain)
|
|
|
|
//
|
|
|
|
#if defined(X_HAVE_UTF8_STRING)
|
|
|
|
static unsigned int decodeUTF8(const char** s)
|
|
|
|
{
|
|
|
|
unsigned int ch = 0, count = 0;
|
|
|
|
static const unsigned int offsets[] =
|
|
|
|
{
|
|
|
|
0x00000000u, 0x00003080u, 0x000e2080u,
|
|
|
|
0x03c82080u, 0xfa082080u, 0x82082080u
|
|
|
|
};
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
ch = (ch << 6) + (unsigned char) **s;
|
|
|
|
(*s)++;
|
|
|
|
count++;
|
|
|
|
} while ((**s & 0xc0) == 0x80);
|
|
|
|
|
|
|
|
assert(count <= 6);
|
|
|
|
return ch - offsets[count - 1];
|
|
|
|
}
|
|
|
|
#endif /*X_HAVE_UTF8_STRING*/
|
|
|
|
|
2012-08-12 14:21:06 +00:00
|
|
|
// Process the specified X event
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2012-08-12 14:04:03 +00:00
|
|
|
static void processEvent(XEvent *event)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2013-01-28 18:56:09 +00:00
|
|
|
_GLFWwindow* window = NULL;
|
2015-07-28 19:56:12 +00:00
|
|
|
int keycode = 0;
|
2015-06-09 12:41:15 +00:00
|
|
|
Bool filtered = False;
|
|
|
|
|
2015-07-28 19:56:12 +00:00
|
|
|
// HACK: Save scancode as some IMs clear the field in XFilterEvent
|
|
|
|
if (event->type == KeyPress || event->type == KeyRelease)
|
|
|
|
keycode = event->xkey.keycode;
|
|
|
|
|
2015-06-09 12:41:15 +00:00
|
|
|
if (_glfw.x11.im)
|
|
|
|
filtered = XFilterEvent(event, None);
|
2013-01-28 18:56:09 +00:00
|
|
|
|
2015-06-14 19:05:42 +00:00
|
|
|
if (_glfw.x11.randr.available)
|
|
|
|
{
|
|
|
|
if (event->type == _glfw.x11.randr.eventBase + RRNotify)
|
|
|
|
{
|
|
|
|
XRRUpdateConfiguration(event);
|
|
|
|
_glfwInputMonitorChange();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-28 18:56:09 +00:00
|
|
|
if (event->type != GenericEvent)
|
|
|
|
{
|
2014-09-09 14:26:57 +00:00
|
|
|
window = findWindowByHandle(event->xany.window);
|
2013-01-28 18:56:09 +00:00
|
|
|
if (window == NULL)
|
|
|
|
{
|
2013-06-19 11:49:51 +00:00
|
|
|
// This is an event for a window that has already been destroyed
|
2013-01-28 18:56:09 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2012-08-12 13:57:52 +00:00
|
|
|
switch (event->type)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
case KeyPress:
|
|
|
|
{
|
2015-07-28 19:56:12 +00:00
|
|
|
const int key = translateKey(keycode);
|
2012-12-09 18:19:00 +00:00
|
|
|
const int mods = translateState(event->xkey.state);
|
2014-09-21 00:13:41 +00:00
|
|
|
const int plain = !(mods & (GLFW_MOD_CONTROL | GLFW_MOD_ALT));
|
2013-04-04 15:13:28 +00:00
|
|
|
|
2014-09-21 00:13:41 +00:00
|
|
|
if (window->x11.ic)
|
2014-06-12 21:04:20 +00:00
|
|
|
{
|
2015-07-28 19:56:12 +00:00
|
|
|
// HACK: Ignore duplicate key press events generated by ibus
|
|
|
|
// Corresponding release events are filtered out by the
|
|
|
|
// GLFW key repeat logic
|
|
|
|
if (window->x11.last.keycode != keycode ||
|
|
|
|
window->x11.last.time != event->xkey.time)
|
2015-06-24 18:24:52 +00:00
|
|
|
{
|
2015-07-28 19:56:12 +00:00
|
|
|
if (keycode)
|
|
|
|
_glfwInputKey(window, key, keycode, GLFW_PRESS, mods);
|
2015-06-24 18:24:52 +00:00
|
|
|
}
|
2015-07-28 19:56:12 +00:00
|
|
|
|
|
|
|
window->x11.last.keycode = keycode;
|
|
|
|
window->x11.last.time = event->xkey.time;
|
|
|
|
|
|
|
|
if (!filtered)
|
2015-06-24 18:24:52 +00:00
|
|
|
{
|
2015-10-09 11:37:44 +00:00
|
|
|
int count;
|
2015-10-09 11:23:34 +00:00
|
|
|
Status status;
|
2015-10-09 11:37:44 +00:00
|
|
|
#if defined(X_HAVE_UTF8_STRING)
|
2015-10-27 22:01:02 +00:00
|
|
|
char buffer[100];
|
2015-10-09 11:37:44 +00:00
|
|
|
char* chars = buffer;
|
2015-10-09 11:23:34 +00:00
|
|
|
|
2015-10-09 11:37:44 +00:00
|
|
|
count = Xutf8LookupString(window->x11.ic,
|
|
|
|
&event->xkey,
|
2015-10-27 22:01:02 +00:00
|
|
|
buffer, sizeof(buffer) - 1,
|
2015-10-09 11:37:44 +00:00
|
|
|
NULL, &status);
|
2015-10-09 11:23:34 +00:00
|
|
|
|
2015-10-09 11:37:44 +00:00
|
|
|
if (status == XBufferOverflow)
|
|
|
|
{
|
2015-10-27 22:01:02 +00:00
|
|
|
chars = calloc(count + 1, 1);
|
2015-10-09 11:37:44 +00:00
|
|
|
count = Xutf8LookupString(window->x11.ic,
|
|
|
|
&event->xkey,
|
|
|
|
chars, count,
|
|
|
|
NULL, &status);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status == XLookupChars || status == XLookupBoth)
|
|
|
|
{
|
|
|
|
const char* c = chars;
|
2015-10-27 22:01:02 +00:00
|
|
|
chars[count] = '\0';
|
2015-10-09 11:37:44 +00:00
|
|
|
while (c - chars < count)
|
|
|
|
_glfwInputChar(window, decodeUTF8(&c), mods, plain);
|
|
|
|
}
|
2016-02-18 21:27:44 +00:00
|
|
|
#else /*X_HAVE_UTF8_STRING*/
|
2015-07-28 19:56:12 +00:00
|
|
|
wchar_t buffer[16];
|
2015-10-09 11:37:44 +00:00
|
|
|
wchar_t* chars = buffer;
|
|
|
|
|
|
|
|
count = XwcLookupString(window->x11.ic,
|
|
|
|
&event->xkey,
|
|
|
|
buffer, sizeof(buffer) / sizeof(wchar_t),
|
|
|
|
NULL, &status);
|
2015-07-28 19:56:12 +00:00
|
|
|
|
2015-10-09 11:37:44 +00:00
|
|
|
if (status == XBufferOverflow)
|
|
|
|
{
|
|
|
|
chars = calloc(count, sizeof(wchar_t));
|
|
|
|
count = XwcLookupString(window->x11.ic,
|
|
|
|
&event->xkey,
|
|
|
|
chars, count,
|
|
|
|
NULL, &status);
|
|
|
|
}
|
2014-09-21 00:13:41 +00:00
|
|
|
|
2015-10-09 11:37:44 +00:00
|
|
|
if (status == XLookupChars || status == XLookupBoth)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
_glfwInputChar(window, chars[i], mods, plain);
|
|
|
|
}
|
2016-02-18 21:27:44 +00:00
|
|
|
#endif /*X_HAVE_UTF8_STRING*/
|
2015-10-09 11:37:44 +00:00
|
|
|
|
|
|
|
if (chars != buffer)
|
|
|
|
free(chars);
|
2015-06-24 18:24:52 +00:00
|
|
|
}
|
2014-09-21 00:13:41 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
KeySym keysym;
|
|
|
|
XLookupString(&event->xkey, NULL, 0, &keysym, NULL);
|
|
|
|
|
2015-07-28 19:56:12 +00:00
|
|
|
_glfwInputKey(window, key, keycode, GLFW_PRESS, mods);
|
2015-06-24 18:24:52 +00:00
|
|
|
|
2014-09-21 00:13:41 +00:00
|
|
|
const long character = _glfwKeySym2Unicode(keysym);
|
|
|
|
if (character != -1)
|
|
|
|
_glfwInputChar(window, character, mods, plain);
|
2014-06-12 21:04:20 +00:00
|
|
|
}
|
2013-04-04 15:13:28 +00:00
|
|
|
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case KeyRelease:
|
|
|
|
{
|
2015-07-28 19:56:12 +00:00
|
|
|
const int key = translateKey(keycode);
|
2012-12-09 18:19:00 +00:00
|
|
|
const int mods = translateState(event->xkey.state);
|
|
|
|
|
2014-05-18 10:24:29 +00:00
|
|
|
if (!_glfw.x11.xkb.detectable)
|
|
|
|
{
|
2014-09-02 23:44:08 +00:00
|
|
|
// HACK: Key repeat events will arrive as KeyRelease/KeyPress
|
|
|
|
// pairs with similar or identical time stamps
|
2015-01-05 20:55:15 +00:00
|
|
|
// The key repeat logic in _glfwInputKey expects only key
|
2014-09-02 23:44:08 +00:00
|
|
|
// presses to repeat, so detect and discard release events
|
2014-05-18 10:24:29 +00:00
|
|
|
if (XEventsQueued(_glfw.x11.display, QueuedAfterReading))
|
|
|
|
{
|
2015-07-07 08:58:55 +00:00
|
|
|
XEvent next;
|
|
|
|
XPeekEvent(_glfw.x11.display, &next);
|
2014-05-18 10:24:29 +00:00
|
|
|
|
2015-07-07 08:58:55 +00:00
|
|
|
if (next.type == KeyPress &&
|
|
|
|
next.xkey.window == event->xkey.window &&
|
2015-07-28 19:56:12 +00:00
|
|
|
next.xkey.keycode == keycode)
|
2014-05-18 10:24:29 +00:00
|
|
|
{
|
2016-03-02 22:14:55 +00:00
|
|
|
// HACK: The time of repeat events sometimes doesn't
|
|
|
|
// match that of the press event, so add an
|
|
|
|
// epsilon
|
|
|
|
// Toshiyuki Takahashi can press a button
|
|
|
|
// 16 times per second so it's fairly safe to
|
|
|
|
// assume that no human is pressing the key 50
|
|
|
|
// times per second (value is ms)
|
2015-07-07 08:58:55 +00:00
|
|
|
if ((next.xkey.time - event->xkey.time) < 20)
|
2014-05-18 10:24:29 +00:00
|
|
|
{
|
2014-09-02 23:44:08 +00:00
|
|
|
// This is very likely a server-generated key repeat
|
|
|
|
// event, so ignore it
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2014-05-18 10:24:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-28 19:56:12 +00:00
|
|
|
_glfwInputKey(window, key, keycode, GLFW_RELEASE, mods);
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case ButtonPress:
|
|
|
|
{
|
2012-12-09 18:19:00 +00:00
|
|
|
const int mods = translateState(event->xbutton.state);
|
|
|
|
|
2012-08-12 13:57:52 +00:00
|
|
|
if (event->xbutton.button == Button1)
|
2012-12-09 18:19:00 +00:00
|
|
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_LEFT, GLFW_PRESS, mods);
|
2012-08-12 13:57:52 +00:00
|
|
|
else if (event->xbutton.button == Button2)
|
2012-12-09 18:19:00 +00:00
|
|
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_MIDDLE, GLFW_PRESS, mods);
|
2012-08-12 13:57:52 +00:00
|
|
|
else if (event->xbutton.button == Button3)
|
2012-12-09 18:19:00 +00:00
|
|
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_RIGHT, GLFW_PRESS, mods);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-01-12 20:11:41 +00:00
|
|
|
// Modern X provides scroll events as mouse button presses
|
2012-08-12 13:57:52 +00:00
|
|
|
else if (event->xbutton.button == Button4)
|
2012-03-28 19:54:09 +00:00
|
|
|
_glfwInputScroll(window, 0.0, 1.0);
|
2012-08-12 13:57:52 +00:00
|
|
|
else if (event->xbutton.button == Button5)
|
2012-03-28 19:54:09 +00:00
|
|
|
_glfwInputScroll(window, 0.0, -1.0);
|
2012-08-12 13:57:52 +00:00
|
|
|
else if (event->xbutton.button == Button6)
|
2012-03-28 19:54:09 +00:00
|
|
|
_glfwInputScroll(window, 1.0, 0.0);
|
2014-10-26 12:53:45 +00:00
|
|
|
else if (event->xbutton.button == Button7)
|
|
|
|
_glfwInputScroll(window, -1.0, 0.0);
|
2010-09-27 00:09:54 +00:00
|
|
|
|
2013-09-08 14:08:15 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// Additional buttons after 7 are treated as regular buttons
|
|
|
|
// We subtract 4 to fill the gap left by scroll input above
|
|
|
|
_glfwInputMouseClick(window,
|
2015-02-22 16:31:32 +00:00
|
|
|
event->xbutton.button - Button1 - 4,
|
2013-09-08 14:08:15 +00:00
|
|
|
GLFW_PRESS,
|
|
|
|
mods);
|
|
|
|
}
|
|
|
|
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case ButtonRelease:
|
|
|
|
{
|
2012-12-09 18:19:00 +00:00
|
|
|
const int mods = translateState(event->xbutton.state);
|
|
|
|
|
2012-08-12 13:57:52 +00:00
|
|
|
if (event->xbutton.button == Button1)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-09 16:15:32 +00:00
|
|
|
_glfwInputMouseClick(window,
|
|
|
|
GLFW_MOUSE_BUTTON_LEFT,
|
2012-12-09 18:19:00 +00:00
|
|
|
GLFW_RELEASE,
|
|
|
|
mods);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2012-08-12 13:57:52 +00:00
|
|
|
else if (event->xbutton.button == Button2)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-09 16:15:32 +00:00
|
|
|
_glfwInputMouseClick(window,
|
|
|
|
GLFW_MOUSE_BUTTON_MIDDLE,
|
2012-12-09 18:19:00 +00:00
|
|
|
GLFW_RELEASE,
|
|
|
|
mods);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2012-08-12 13:57:52 +00:00
|
|
|
else if (event->xbutton.button == Button3)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-09 16:15:32 +00:00
|
|
|
_glfwInputMouseClick(window,
|
|
|
|
GLFW_MOUSE_BUTTON_RIGHT,
|
2012-12-09 18:19:00 +00:00
|
|
|
GLFW_RELEASE,
|
|
|
|
mods);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2013-09-08 14:08:15 +00:00
|
|
|
else if (event->xbutton.button > Button7)
|
|
|
|
{
|
|
|
|
// Additional buttons after 7 are treated as regular buttons
|
|
|
|
// We subtract 4 to fill the gap left by scroll input above
|
|
|
|
_glfwInputMouseClick(window,
|
2015-02-23 04:14:24 +00:00
|
|
|
event->xbutton.button - Button1 - 4,
|
2013-09-08 14:08:15 +00:00
|
|
|
GLFW_RELEASE,
|
|
|
|
mods);
|
|
|
|
}
|
2015-06-11 15:06:35 +00:00
|
|
|
|
|
|
|
return;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2012-01-30 21:18:05 +00:00
|
|
|
case EnterNotify:
|
|
|
|
{
|
2015-02-22 13:59:55 +00:00
|
|
|
// HACK: This is a workaround for WMs (KWM, Fluxbox) that otherwise
|
|
|
|
// ignore the defined cursor for hidden cursor mode
|
2015-01-23 17:38:12 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_HIDDEN)
|
2015-07-02 11:04:56 +00:00
|
|
|
_glfwPlatformSetCursorMode(window, GLFW_CURSOR_HIDDEN);
|
2015-01-23 17:38:12 +00:00
|
|
|
|
2015-08-23 17:30:04 +00:00
|
|
|
_glfwInputCursorEnter(window, GLFW_TRUE);
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2012-01-30 21:18:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case LeaveNotify:
|
|
|
|
{
|
2015-08-23 17:30:04 +00:00
|
|
|
_glfwInputCursorEnter(window, GLFW_FALSE);
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2012-01-30 21:18:05 +00:00
|
|
|
}
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
case MotionNotify:
|
|
|
|
{
|
2014-02-11 17:24:01 +00:00
|
|
|
const int x = event->xmotion.x;
|
|
|
|
const int y = event->xmotion.y;
|
|
|
|
|
2016-05-24 10:23:58 +00:00
|
|
|
if (x != window->x11.warpCursorPosX || y != window->x11.warpCursorPosY)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-08-26 13:38:18 +00:00
|
|
|
// The cursor was moved by something other than GLFW
|
|
|
|
|
2013-04-26 15:20:31 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_DISABLED)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2016-05-30 19:21:09 +00:00
|
|
|
if (_glfw.x11.disabledCursorWindow != window)
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2011-09-06 11:55:29 +00:00
|
|
|
|
2016-05-25 12:06:02 +00:00
|
|
|
const int dx = x - window->x11.lastCursorPosX;
|
|
|
|
const int dy = y - window->x11.lastCursorPosY;
|
|
|
|
|
|
|
|
_glfwInputCursorPos(window,
|
|
|
|
window->virtualCursorPosX + dx,
|
|
|
|
window->virtualCursorPosY + dy);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
else
|
2016-05-25 12:06:02 +00:00
|
|
|
_glfwInputCursorPos(window, x, y);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2011-09-06 11:55:29 +00:00
|
|
|
|
2016-05-24 10:23:58 +00:00
|
|
|
window->x11.lastCursorPosX = x;
|
|
|
|
window->x11.lastCursorPosY = y;
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case ConfigureNotify:
|
|
|
|
{
|
2013-06-16 16:29:46 +00:00
|
|
|
if (event->xconfigure.width != window->x11.width ||
|
|
|
|
event->xconfigure.height != window->x11.height)
|
|
|
|
{
|
|
|
|
_glfwInputFramebufferSize(window,
|
|
|
|
event->xconfigure.width,
|
|
|
|
event->xconfigure.height);
|
2013-06-03 10:51:57 +00:00
|
|
|
|
2013-06-16 16:29:46 +00:00
|
|
|
_glfwInputWindowSize(window,
|
|
|
|
event->xconfigure.width,
|
|
|
|
event->xconfigure.height);
|
|
|
|
|
|
|
|
window->x11.width = event->xconfigure.width;
|
|
|
|
window->x11.height = event->xconfigure.height;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-06-16 16:29:46 +00:00
|
|
|
if (event->xconfigure.x != window->x11.xpos ||
|
|
|
|
event->xconfigure.y != window->x11.ypos)
|
|
|
|
{
|
2016-02-23 11:26:42 +00:00
|
|
|
if (window->x11.overrideRedirect || event->xany.send_event)
|
|
|
|
{
|
|
|
|
_glfwInputWindowPos(window,
|
|
|
|
event->xconfigure.x,
|
|
|
|
event->xconfigure.y);
|
2013-06-16 16:29:46 +00:00
|
|
|
|
2016-02-23 11:26:42 +00:00
|
|
|
window->x11.xpos = event->xconfigure.x;
|
|
|
|
window->x11.ypos = event->xconfigure.y;
|
|
|
|
}
|
2013-06-16 16:29:46 +00:00
|
|
|
}
|
2010-09-14 01:53:22 +00:00
|
|
|
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case ClientMessage:
|
|
|
|
{
|
2010-09-09 22:06:23 +00:00
|
|
|
// Custom client message, probably from the window manager
|
|
|
|
|
2015-06-09 12:41:15 +00:00
|
|
|
if (filtered)
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2015-06-09 12:41:15 +00:00
|
|
|
|
2014-03-09 12:24:17 +00:00
|
|
|
if (event->xclient.message_type == None)
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-03-09 12:24:17 +00:00
|
|
|
if (event->xclient.message_type == _glfw.x11.WM_PROTOCOLS)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2015-06-02 15:49:49 +00:00
|
|
|
const Atom protocol = event->xclient.data.l[0];
|
|
|
|
if (protocol == None)
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2015-06-02 15:49:49 +00:00
|
|
|
|
|
|
|
if (protocol == _glfw.x11.WM_DELETE_WINDOW)
|
2014-03-09 12:24:17 +00:00
|
|
|
{
|
|
|
|
// The window manager was asked to close the window, for example by
|
|
|
|
// the user pressing a 'close' window decoration button
|
|
|
|
_glfwInputWindowCloseRequest(window);
|
|
|
|
}
|
2015-06-02 15:49:49 +00:00
|
|
|
else if (protocol == _glfw.x11.NET_WM_PING)
|
2014-03-09 12:24:17 +00:00
|
|
|
{
|
|
|
|
// The window manager is pinging the application to ensure it's
|
|
|
|
// still responding to events
|
|
|
|
|
2015-06-02 15:25:09 +00:00
|
|
|
XEvent reply = *event;
|
|
|
|
reply.xclient.window = _glfw.x11.root;
|
|
|
|
|
2015-06-02 15:27:35 +00:00
|
|
|
XSendEvent(_glfw.x11.display, _glfw.x11.root,
|
2015-06-02 15:05:21 +00:00
|
|
|
False,
|
|
|
|
SubstructureNotifyMask | SubstructureRedirectMask,
|
2015-06-02 15:25:09 +00:00
|
|
|
&reply);
|
2014-03-09 12:24:17 +00:00
|
|
|
}
|
2013-07-10 09:42:14 +00:00
|
|
|
}
|
2013-12-22 15:38:56 +00:00
|
|
|
else if (event->xclient.message_type == _glfw.x11.XdndEnter)
|
2013-07-10 09:42:14 +00:00
|
|
|
{
|
2014-01-22 00:34:44 +00:00
|
|
|
// A drag operation has entered the window
|
|
|
|
// TODO: Check if UTF-8 string is supported by the source
|
2013-07-10 09:42:14 +00:00
|
|
|
}
|
2013-12-22 15:38:56 +00:00
|
|
|
else if (event->xclient.message_type == _glfw.x11.XdndDrop)
|
2013-07-10 09:42:14 +00:00
|
|
|
{
|
2014-01-22 00:34:44 +00:00
|
|
|
// The drag operation has finished dropping on
|
|
|
|
// the window, ask to convert it to a UTF-8 string
|
|
|
|
_glfw.x11.xdnd.source = event->xclient.data.l[0];
|
2013-12-22 15:38:56 +00:00
|
|
|
XConvertSelection(_glfw.x11.display,
|
|
|
|
_glfw.x11.XdndSelection,
|
|
|
|
_glfw.x11.UTF8_STRING,
|
|
|
|
_glfw.x11.XdndSelection,
|
|
|
|
window->x11.handle, CurrentTime);
|
2013-07-10 09:42:14 +00:00
|
|
|
}
|
2013-12-22 15:38:56 +00:00
|
|
|
else if (event->xclient.message_type == _glfw.x11.XdndPosition)
|
2013-07-10 09:42:14 +00:00
|
|
|
{
|
2014-01-22 00:34:44 +00:00
|
|
|
// The drag operation has moved over the window
|
2013-12-22 15:38:56 +00:00
|
|
|
const int absX = (event->xclient.data.l[2] >> 16) & 0xFFFF;
|
|
|
|
const int absY = (event->xclient.data.l[2]) & 0xFFFF;
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
_glfwPlatformGetWindowPos(window, &x, &y);
|
2016-05-25 12:06:02 +00:00
|
|
|
_glfwInputCursorPos(window, absX - x, absY - y);
|
2013-12-22 15:38:56 +00:00
|
|
|
|
2014-01-22 00:34:44 +00:00
|
|
|
// Reply that we are ready to copy the dragged data
|
2013-12-22 15:38:56 +00:00
|
|
|
XEvent reply;
|
2013-12-22 15:40:06 +00:00
|
|
|
memset(&reply, 0, sizeof(reply));
|
2013-12-22 15:38:56 +00:00
|
|
|
|
|
|
|
reply.type = ClientMessage;
|
|
|
|
reply.xclient.window = event->xclient.data.l[0];
|
|
|
|
reply.xclient.message_type = _glfw.x11.XdndStatus;
|
|
|
|
reply.xclient.format = 32;
|
|
|
|
reply.xclient.data.l[0] = window->x11.handle;
|
|
|
|
reply.xclient.data.l[1] = 1; // Always accept the dnd with no rectangle
|
|
|
|
reply.xclient.data.l[2] = 0; // Specify an empty rectangle
|
|
|
|
reply.xclient.data.l[3] = 0;
|
2014-01-22 00:34:44 +00:00
|
|
|
reply.xclient.data.l[4] = _glfw.x11.XdndActionCopy;
|
2013-12-22 15:38:56 +00:00
|
|
|
|
2014-02-10 13:19:11 +00:00
|
|
|
XSendEvent(_glfw.x11.display, event->xclient.data.l[0],
|
2013-12-22 15:38:56 +00:00
|
|
|
False, NoEventMask, &reply);
|
|
|
|
XFlush(_glfw.x11.display);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2013-12-22 15:38:56 +00:00
|
|
|
|
2013-07-10 09:42:14 +00:00
|
|
|
case SelectionNotify:
|
2013-12-22 15:38:56 +00:00
|
|
|
{
|
2013-12-22 18:28:46 +00:00
|
|
|
if (event->xselection.property)
|
2013-12-22 15:38:56 +00:00
|
|
|
{
|
2014-01-22 00:34:44 +00:00
|
|
|
// The converted data from the drag operation has arrived
|
2013-12-22 15:38:56 +00:00
|
|
|
char* data;
|
2014-03-10 12:55:23 +00:00
|
|
|
const int result =
|
2015-12-03 17:16:46 +00:00
|
|
|
_glfwGetWindowPropertyX11(event->xselection.requestor,
|
|
|
|
event->xselection.property,
|
|
|
|
event->xselection.target,
|
|
|
|
(unsigned char**) &data);
|
2013-12-22 15:38:56 +00:00
|
|
|
|
|
|
|
if (result)
|
|
|
|
{
|
2013-12-22 18:28:46 +00:00
|
|
|
int i, count;
|
2015-01-27 22:04:22 +00:00
|
|
|
char** paths = parseUriList(data, &count);
|
2013-12-22 18:28:46 +00:00
|
|
|
|
2015-01-27 22:04:22 +00:00
|
|
|
_glfwInputDrop(window, count, (const char**) paths);
|
2013-12-22 18:28:46 +00:00
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
2015-01-27 22:04:22 +00:00
|
|
|
free(paths[i]);
|
|
|
|
free(paths);
|
2013-12-22 15:38:56 +00:00
|
|
|
}
|
|
|
|
|
2013-12-22 18:28:46 +00:00
|
|
|
XFree(data);
|
|
|
|
|
2013-12-22 15:38:56 +00:00
|
|
|
XEvent reply;
|
2013-12-22 15:40:06 +00:00
|
|
|
memset(&reply, 0, sizeof(reply));
|
|
|
|
|
2013-12-22 15:38:56 +00:00
|
|
|
reply.type = ClientMessage;
|
2014-01-22 00:34:44 +00:00
|
|
|
reply.xclient.window = _glfw.x11.xdnd.source;
|
2013-12-22 15:38:56 +00:00
|
|
|
reply.xclient.message_type = _glfw.x11.XdndFinished;
|
|
|
|
reply.xclient.format = 32;
|
|
|
|
reply.xclient.data.l[0] = window->x11.handle;
|
|
|
|
reply.xclient.data.l[1] = result;
|
2014-01-22 00:34:44 +00:00
|
|
|
reply.xclient.data.l[2] = _glfw.x11.XdndActionCopy;
|
2013-12-22 15:38:56 +00:00
|
|
|
|
|
|
|
// Reply that all is well
|
2014-01-22 00:34:44 +00:00
|
|
|
XSendEvent(_glfw.x11.display, _glfw.x11.xdnd.source,
|
2013-12-22 15:38:56 +00:00
|
|
|
False, NoEventMask, &reply);
|
2013-12-22 18:28:46 +00:00
|
|
|
XFlush(_glfw.x11.display);
|
2013-12-22 15:38:56 +00:00
|
|
|
}
|
|
|
|
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2013-12-22 15:38:56 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
case FocusIn:
|
|
|
|
{
|
2016-05-31 11:03:59 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_DISABLED)
|
|
|
|
_glfwPlatformSetCursorMode(window, GLFW_CURSOR_DISABLED);
|
|
|
|
|
2015-06-15 13:11:29 +00:00
|
|
|
if (event->xfocus.mode == NotifyGrab ||
|
|
|
|
event->xfocus.mode == NotifyUngrab)
|
2014-04-02 11:29:07 +00:00
|
|
|
{
|
2015-06-15 13:11:29 +00:00
|
|
|
// Ignore focus events from popup indicator windows, window menu
|
|
|
|
// key chords and window dragging
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window->x11.ic)
|
|
|
|
XSetICFocus(window->x11.ic);
|
2015-06-09 12:41:15 +00:00
|
|
|
|
2015-08-23 17:30:04 +00:00
|
|
|
_glfwInputWindowFocus(window, GLFW_TRUE);
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case FocusOut:
|
|
|
|
{
|
2016-05-31 11:03:59 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_DISABLED)
|
|
|
|
_glfwPlatformSetCursorMode(window, GLFW_CURSOR_NORMAL);
|
|
|
|
|
2015-06-15 13:11:29 +00:00
|
|
|
if (event->xfocus.mode == NotifyGrab ||
|
|
|
|
event->xfocus.mode == NotifyUngrab)
|
2014-04-02 11:29:07 +00:00
|
|
|
{
|
2015-06-15 13:11:29 +00:00
|
|
|
// Ignore focus events from popup indicator windows, window menu
|
|
|
|
// key chords and window dragging
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window->x11.ic)
|
|
|
|
XUnsetICFocus(window->x11.ic);
|
2015-06-09 12:41:15 +00:00
|
|
|
|
2015-06-15 13:25:31 +00:00
|
|
|
if (window->monitor && window->autoIconify)
|
|
|
|
_glfwPlatformIconifyWindow(window);
|
|
|
|
|
2015-08-23 17:30:04 +00:00
|
|
|
_glfwInputWindowFocus(window, GLFW_FALSE);
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case Expose:
|
|
|
|
{
|
2011-10-09 19:12:13 +00:00
|
|
|
_glfwInputWindowDamage(window);
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-01-21 18:57:03 +00:00
|
|
|
case PropertyNotify:
|
|
|
|
{
|
|
|
|
if (event->xproperty.atom == _glfw.x11.WM_STATE &&
|
|
|
|
event->xproperty.state == PropertyNewValue)
|
|
|
|
{
|
2014-12-26 11:25:48 +00:00
|
|
|
const int state = getWindowState(window);
|
|
|
|
if (state == IconicState)
|
2015-08-28 10:00:06 +00:00
|
|
|
{
|
|
|
|
if (window->monitor)
|
2016-02-23 11:34:35 +00:00
|
|
|
releaseMonitor(window);
|
2015-08-28 10:00:06 +00:00
|
|
|
|
2015-08-23 17:30:04 +00:00
|
|
|
_glfwInputWindowIconify(window, GLFW_TRUE);
|
2015-08-28 10:00:06 +00:00
|
|
|
}
|
2014-12-26 11:25:48 +00:00
|
|
|
else if (state == NormalState)
|
2015-08-28 10:00:06 +00:00
|
|
|
{
|
|
|
|
if (window->monitor)
|
2016-02-23 11:34:35 +00:00
|
|
|
acquireMonitor(window);
|
2015-08-28 10:00:06 +00:00
|
|
|
|
2015-08-23 17:30:04 +00:00
|
|
|
_glfwInputWindowIconify(window, GLFW_FALSE);
|
2015-08-28 10:00:06 +00:00
|
|
|
}
|
2013-01-21 18:57:03 +00:00
|
|
|
}
|
|
|
|
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2013-01-21 18:57:03 +00:00
|
|
|
}
|
|
|
|
|
2012-04-11 21:32:50 +00:00
|
|
|
case SelectionClear:
|
|
|
|
{
|
2014-09-09 14:26:57 +00:00
|
|
|
handleSelectionClear(event);
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2012-04-11 21:32:50 +00:00
|
|
|
}
|
|
|
|
|
2011-09-22 11:03:45 +00:00
|
|
|
case SelectionRequest:
|
|
|
|
{
|
2014-09-09 14:26:57 +00:00
|
|
|
handleSelectionRequest(event);
|
2015-06-11 15:06:35 +00:00
|
|
|
return;
|
2011-09-22 11:03:45 +00:00
|
|
|
}
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
case DestroyNotify:
|
2010-09-09 22:06:23 +00:00
|
|
|
return;
|
2015-06-11 15:06:35 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-01-21 18:57:03 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Retrieve a single window property of the specified type
|
|
|
|
// Inspired by fghGetWindowProperty from freeglut
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2015-12-03 17:16:46 +00:00
|
|
|
unsigned long _glfwGetWindowPropertyX11(Window window,
|
|
|
|
Atom property,
|
|
|
|
Atom type,
|
|
|
|
unsigned char** value)
|
2013-01-21 18:57:03 +00:00
|
|
|
{
|
|
|
|
Atom actualType;
|
|
|
|
int actualFormat;
|
|
|
|
unsigned long itemCount, bytesAfter;
|
|
|
|
|
|
|
|
XGetWindowProperty(_glfw.x11.display,
|
|
|
|
window,
|
|
|
|
property,
|
|
|
|
0,
|
|
|
|
LONG_MAX,
|
|
|
|
False,
|
|
|
|
type,
|
|
|
|
&actualType,
|
|
|
|
&actualFormat,
|
|
|
|
&itemCount,
|
|
|
|
&bytesAfter,
|
|
|
|
value);
|
|
|
|
|
2013-07-10 09:42:14 +00:00
|
|
|
if (type != AnyPropertyType && actualType != type)
|
2013-01-21 18:57:03 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return itemCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-15 14:44:43 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW platform API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-08-06 15:56:41 +00:00
|
|
|
int _glfwPlatformCreateWindow(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
2014-03-06 19:05:32 +00:00
|
|
|
const _GLFWctxconfig* ctxconfig,
|
2012-08-06 15:56:41 +00:00
|
|
|
const _GLFWfbconfig* fbconfig)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2015-06-18 12:03:02 +00:00
|
|
|
Visual* visual;
|
|
|
|
int depth;
|
|
|
|
|
2016-03-28 11:19:31 +00:00
|
|
|
if (ctxconfig->client == GLFW_NO_API)
|
2015-08-10 18:19:04 +00:00
|
|
|
{
|
|
|
|
visual = DefaultVisual(_glfw.x11.display, _glfw.x11.screen);
|
|
|
|
depth = DefaultDepth(_glfw.x11.display, _glfw.x11.screen);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-03-28 11:19:31 +00:00
|
|
|
if (ctxconfig->source == GLFW_NATIVE_CONTEXT_API)
|
|
|
|
{
|
2016-07-20 10:52:06 +00:00
|
|
|
if (!_glfwInitGLX())
|
|
|
|
return GLFW_FALSE;
|
2016-03-28 11:19:31 +00:00
|
|
|
if (!_glfwChooseVisualGLX(ctxconfig, fbconfig, &visual, &depth))
|
|
|
|
return GLFW_FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-20 10:52:06 +00:00
|
|
|
if (!_glfwInitEGL())
|
|
|
|
return GLFW_FALSE;
|
2016-03-28 11:19:31 +00:00
|
|
|
if (!_glfwChooseVisualEGL(ctxconfig, fbconfig, &visual, &depth))
|
|
|
|
return GLFW_FALSE;
|
|
|
|
}
|
2015-08-10 18:19:04 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2016-07-25 17:36:25 +00:00
|
|
|
if (!createNativeWindow(window, wndconfig, visual, depth))
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_FALSE;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2016-03-28 11:19:31 +00:00
|
|
|
if (ctxconfig->client != GLFW_NO_API)
|
2015-06-18 12:03:02 +00:00
|
|
|
{
|
2016-03-28 11:19:31 +00:00
|
|
|
if (ctxconfig->source == GLFW_NATIVE_CONTEXT_API)
|
|
|
|
{
|
|
|
|
if (!_glfwCreateContextGLX(window, ctxconfig, fbconfig))
|
|
|
|
return GLFW_FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!_glfwCreateContextEGL(window, ctxconfig, fbconfig))
|
|
|
|
return GLFW_FALSE;
|
|
|
|
}
|
2015-06-18 12:03:02 +00:00
|
|
|
}
|
|
|
|
|
2016-03-14 14:17:28 +00:00
|
|
|
if (window->monitor)
|
2012-01-30 15:21:21 +00:00
|
|
|
{
|
2012-09-23 13:08:43 +00:00
|
|
|
_glfwPlatformShowWindow(window);
|
2016-02-23 11:26:42 +00:00
|
|
|
updateWindowMode(window);
|
2016-02-23 11:34:35 +00:00
|
|
|
if (!acquireMonitor(window))
|
|
|
|
return GLFW_FALSE;
|
2016-05-25 12:06:02 +00:00
|
|
|
|
|
|
|
centerCursor(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 20:14:13 +00:00
|
|
|
XFlush(_glfw.x11.display);
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_TRUE;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2012-08-06 15:56:41 +00:00
|
|
|
void _glfwPlatformDestroyWindow(_GLFWwindow* window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2016-05-30 19:21:09 +00:00
|
|
|
if (_glfw.x11.disabledCursorWindow == window)
|
|
|
|
_glfw.x11.disabledCursorWindow = NULL;
|
|
|
|
|
2012-09-27 19:37:36 +00:00
|
|
|
if (window->monitor)
|
2016-02-23 11:34:35 +00:00
|
|
|
releaseMonitor(window);
|
2014-09-21 00:13:41 +00:00
|
|
|
|
2013-10-06 19:19:38 +00:00
|
|
|
if (window->x11.ic)
|
|
|
|
{
|
|
|
|
XDestroyIC(window->x11.ic);
|
|
|
|
window->x11.ic = NULL;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2016-08-05 09:22:55 +00:00
|
|
|
if (window->context.destroy)
|
2016-05-25 12:43:51 +00:00
|
|
|
window->context.destroy(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (window->x11.handle)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2015-02-22 17:34:38 +00:00
|
|
|
if (XGetSelectionOwner(_glfw.x11.display, _glfw.x11.CLIPBOARD) ==
|
|
|
|
window->x11.handle)
|
2013-04-29 18:54:42 +00:00
|
|
|
{
|
2014-09-09 14:26:57 +00:00
|
|
|
pushSelectionToManager(window);
|
2013-04-29 18:54:42 +00:00
|
|
|
}
|
2013-04-29 11:16:56 +00:00
|
|
|
|
2013-04-15 00:16:51 +00:00
|
|
|
XDeleteContext(_glfw.x11.display, window->x11.handle, _glfw.x11.context);
|
2013-01-02 00:40:42 +00:00
|
|
|
XUnmapWindow(_glfw.x11.display, window->x11.handle);
|
|
|
|
XDestroyWindow(_glfw.x11.display, window->x11.handle);
|
|
|
|
window->x11.handle = (Window) 0;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (window->x11.colormap)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
XFreeColormap(_glfw.x11.display, window->x11.colormap);
|
|
|
|
window->x11.colormap = (Colormap) 0;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2014-03-12 19:53:57 +00:00
|
|
|
|
|
|
|
XFlush(_glfw.x11.display);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-02-02 16:01:11 +00:00
|
|
|
#if defined(X_HAVE_UTF8_STRING)
|
2013-01-02 00:40:42 +00:00
|
|
|
Xutf8SetWMProperties(_glfw.x11.display,
|
|
|
|
window->x11.handle,
|
2012-02-02 16:01:11 +00:00
|
|
|
title, title,
|
|
|
|
NULL, 0,
|
|
|
|
NULL, NULL, NULL);
|
|
|
|
#else
|
|
|
|
// This may be a slightly better fallback than using XStoreName and
|
|
|
|
// XSetIconName, which always store their arguments using STRING
|
2013-01-02 00:40:42 +00:00
|
|
|
XmbSetWMProperties(_glfw.x11.display,
|
|
|
|
window->x11.handle,
|
2012-02-02 16:01:11 +00:00
|
|
|
title, title,
|
|
|
|
NULL, 0,
|
|
|
|
NULL, NULL, NULL);
|
|
|
|
#endif
|
2012-02-01 13:43:42 +00:00
|
|
|
|
2016-05-03 09:58:25 +00:00
|
|
|
XChangeProperty(_glfw.x11.display, window->x11.handle,
|
|
|
|
_glfw.x11.NET_WM_NAME, _glfw.x11.UTF8_STRING, 8,
|
|
|
|
PropModeReplace,
|
|
|
|
(unsigned char*) title, strlen(title));
|
2012-02-02 16:20:14 +00:00
|
|
|
|
2016-05-03 09:58:25 +00:00
|
|
|
XChangeProperty(_glfw.x11.display, window->x11.handle,
|
|
|
|
_glfw.x11.NET_WM_ICON_NAME, _glfw.x11.UTF8_STRING, 8,
|
|
|
|
PropModeReplace,
|
|
|
|
(unsigned char*) title, strlen(title));
|
2014-04-07 11:36:25 +00:00
|
|
|
|
|
|
|
XFlush(_glfw.x11.display);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2016-03-07 13:55:30 +00:00
|
|
|
void _glfwPlatformSetWindowIcon(_GLFWwindow* window,
|
|
|
|
int count, const GLFWimage* images)
|
|
|
|
{
|
|
|
|
if (count)
|
|
|
|
{
|
|
|
|
int i, j, longCount = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
longCount += 2 + images[i].width * images[i].height;
|
|
|
|
|
|
|
|
long* icon = calloc(longCount, sizeof(long));
|
|
|
|
long* target = icon;
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
*target++ = images[i].width;
|
|
|
|
*target++ = images[i].height;
|
|
|
|
|
2016-03-11 10:45:53 +00:00
|
|
|
for (j = 0; j < images[i].width * images[i].height; j++)
|
2016-03-07 13:55:30 +00:00
|
|
|
{
|
2016-03-11 10:45:53 +00:00
|
|
|
*target++ = (images[i].pixels[j * 4 + 0] << 16) |
|
|
|
|
(images[i].pixels[j * 4 + 1] << 8) |
|
|
|
|
(images[i].pixels[j * 4 + 2] << 0) |
|
|
|
|
(images[i].pixels[j * 4 + 3] << 24);
|
2016-03-07 13:55:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
XChangeProperty(_glfw.x11.display, window->x11.handle,
|
|
|
|
_glfw.x11.NET_WM_ICON,
|
|
|
|
XA_CARDINAL, 32,
|
|
|
|
PropModeReplace,
|
|
|
|
(unsigned char*) icon,
|
|
|
|
longCount);
|
|
|
|
|
|
|
|
free(icon);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
XDeleteProperty(_glfw.x11.display, window->x11.handle,
|
|
|
|
_glfw.x11.NET_WM_ICON);
|
|
|
|
}
|
|
|
|
|
|
|
|
XFlush(_glfw.x11.display);
|
|
|
|
}
|
|
|
|
|
2013-01-24 18:30:31 +00:00
|
|
|
void _glfwPlatformGetWindowPos(_GLFWwindow* window, int* xpos, int* ypos)
|
|
|
|
{
|
|
|
|
Window child;
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
XTranslateCoordinates(_glfw.x11.display, window->x11.handle, _glfw.x11.root,
|
|
|
|
0, 0, &x, &y, &child);
|
|
|
|
|
2013-11-20 19:04:00 +00:00
|
|
|
if (child)
|
2013-07-30 13:52:23 +00:00
|
|
|
{
|
|
|
|
int left, top;
|
|
|
|
XTranslateCoordinates(_glfw.x11.display, window->x11.handle, child,
|
|
|
|
0, 0, &left, &top, &child);
|
|
|
|
|
|
|
|
x -= left;
|
|
|
|
y -= top;
|
|
|
|
}
|
|
|
|
|
2013-01-24 18:30:31 +00:00
|
|
|
if (xpos)
|
|
|
|
*xpos = x;
|
|
|
|
if (ypos)
|
|
|
|
*ypos = y;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetWindowPos(_GLFWwindow* window, int xpos, int ypos)
|
|
|
|
{
|
2016-03-14 19:39:27 +00:00
|
|
|
// HACK: Explicitly setting PPosition to any value causes some WMs, notably
|
|
|
|
// Compiz and Metacity, to honor the position of unmapped windows
|
|
|
|
if (!_glfwPlatformWindowVisible(window))
|
|
|
|
{
|
|
|
|
long supplied;
|
|
|
|
XSizeHints* hints = XAllocSizeHints();
|
|
|
|
|
|
|
|
if (XGetWMNormalHints(_glfw.x11.display, window->x11.handle, hints, &supplied))
|
|
|
|
{
|
|
|
|
hints->flags |= PPosition;
|
|
|
|
hints->x = hints->y = 0;
|
|
|
|
|
|
|
|
XSetWMNormalHints(_glfw.x11.display, window->x11.handle, hints);
|
|
|
|
}
|
|
|
|
|
|
|
|
XFree(hints);
|
|
|
|
}
|
|
|
|
|
2013-01-24 18:30:31 +00:00
|
|
|
XMoveWindow(_glfw.x11.display, window->x11.handle, xpos, ypos);
|
2013-05-19 07:08:42 +00:00
|
|
|
XFlush(_glfw.x11.display);
|
2013-01-24 18:30:31 +00:00
|
|
|
}
|
|
|
|
|
2012-11-25 13:53:33 +00:00
|
|
|
void _glfwPlatformGetWindowSize(_GLFWwindow* window, int* width, int* height)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-11-25 13:53:33 +00:00
|
|
|
XWindowAttributes attribs;
|
|
|
|
XGetWindowAttributes(_glfw.x11.display, window->x11.handle, &attribs);
|
|
|
|
|
|
|
|
if (width)
|
|
|
|
*width = attribs.width;
|
|
|
|
if (height)
|
|
|
|
*height = attribs.height;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-11-25 13:53:33 +00:00
|
|
|
void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height)
|
|
|
|
{
|
2012-09-27 19:37:36 +00:00
|
|
|
if (window->monitor)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2016-02-23 11:26:42 +00:00
|
|
|
if (window->monitor->window == window)
|
|
|
|
acquireMonitor(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2012-11-25 13:53:33 +00:00
|
|
|
else
|
2013-06-19 11:46:18 +00:00
|
|
|
{
|
|
|
|
if (!window->resizable)
|
2016-05-03 09:28:23 +00:00
|
|
|
updateNormalHints(window, width, height);
|
2013-06-19 11:46:18 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
XResizeWindow(_glfw.x11.display, window->x11.handle, width, height);
|
2013-06-19 11:46:18 +00:00
|
|
|
}
|
2013-05-19 07:08:42 +00:00
|
|
|
|
|
|
|
XFlush(_glfw.x11.display);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2014-02-13 01:57:59 +00:00
|
|
|
void _glfwPlatformSetWindowSizeLimits(_GLFWwindow* window,
|
|
|
|
int minwidth, int minheight,
|
|
|
|
int maxwidth, int maxheight)
|
|
|
|
{
|
2016-05-03 09:28:23 +00:00
|
|
|
int width, height;
|
|
|
|
_glfwPlatformGetWindowSize(window, &width, &height);
|
|
|
|
updateNormalHints(window, width, height);
|
2016-02-23 11:26:42 +00:00
|
|
|
XFlush(_glfw.x11.display);
|
2014-02-13 01:57:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetWindowAspectRatio(_GLFWwindow* window, int numer, int denom)
|
|
|
|
{
|
2016-05-03 09:28:23 +00:00
|
|
|
int width, height;
|
|
|
|
_glfwPlatformGetWindowSize(window, &width, &height);
|
|
|
|
updateNormalHints(window, width, height);
|
2016-02-23 11:26:42 +00:00
|
|
|
XFlush(_glfw.x11.display);
|
2014-02-13 01:57:59 +00:00
|
|
|
}
|
|
|
|
|
2013-06-03 10:51:57 +00:00
|
|
|
void _glfwPlatformGetFramebufferSize(_GLFWwindow* window, int* width, int* height)
|
|
|
|
{
|
|
|
|
_glfwPlatformGetWindowSize(window, width, height);
|
|
|
|
}
|
|
|
|
|
2014-03-25 20:30:13 +00:00
|
|
|
void _glfwPlatformGetWindowFrameSize(_GLFWwindow* window,
|
|
|
|
int* left, int* top,
|
|
|
|
int* right, int* bottom)
|
|
|
|
{
|
|
|
|
long* extents = NULL;
|
|
|
|
|
2016-02-28 17:41:10 +00:00
|
|
|
if (window->monitor || !window->decorated)
|
|
|
|
return;
|
|
|
|
|
2014-03-25 20:30:13 +00:00
|
|
|
if (_glfw.x11.NET_FRAME_EXTENTS == None)
|
|
|
|
return;
|
|
|
|
|
2015-03-12 14:42:06 +00:00
|
|
|
if (!_glfwPlatformWindowVisible(window) &&
|
|
|
|
_glfw.x11.NET_REQUEST_FRAME_EXTENTS)
|
|
|
|
{
|
2016-03-23 09:09:07 +00:00
|
|
|
uint64_t base;
|
2015-03-12 14:42:06 +00:00
|
|
|
XEvent event;
|
2015-06-02 15:05:00 +00:00
|
|
|
|
|
|
|
// Ensure _NET_FRAME_EXTENTS is set, allowing glfwGetWindowFrameSize to
|
|
|
|
// function before the window is mapped
|
|
|
|
sendEventToWM(window, _glfw.x11.NET_REQUEST_FRAME_EXTENTS,
|
|
|
|
0, 0, 0, 0, 0);
|
2015-03-12 14:42:06 +00:00
|
|
|
|
2016-03-06 10:38:55 +00:00
|
|
|
base = _glfwPlatformGetTimerValue();
|
|
|
|
|
2016-07-24 19:55:36 +00:00
|
|
|
// HACK: Use a timeout because earlier versions of some window managers
|
|
|
|
// (at least Unity, Fluxbox and Xfwm) failed to send the reply
|
2015-03-12 14:42:06 +00:00
|
|
|
// They have been fixed but broken versions are still in the wild
|
|
|
|
// If you are affected by this and your window manager is NOT
|
|
|
|
// listed above, PLEASE report it to their and our issue trackers
|
2015-03-16 17:19:50 +00:00
|
|
|
while (!XCheckIfEvent(_glfw.x11.display,
|
|
|
|
&event,
|
|
|
|
isFrameExtentsEvent,
|
|
|
|
(XPointer) window))
|
2015-03-12 14:42:06 +00:00
|
|
|
{
|
2015-03-16 17:19:50 +00:00
|
|
|
double remaining;
|
|
|
|
struct timeval timeout;
|
|
|
|
|
2016-03-06 10:38:55 +00:00
|
|
|
remaining = 0.5 - (_glfwPlatformGetTimerValue() - base) /
|
|
|
|
(double) _glfwPlatformGetTimerFrequency();
|
2015-03-16 17:19:50 +00:00
|
|
|
if (remaining <= 0.0)
|
2015-03-12 14:42:06 +00:00
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-03-10 18:51:14 +00:00
|
|
|
"X11: The window manager has a broken _NET_REQUEST_FRAME_EXTENTS implementation; please report this issue");
|
2015-03-16 17:19:50 +00:00
|
|
|
return;
|
2015-03-12 14:42:06 +00:00
|
|
|
}
|
|
|
|
|
2015-03-16 17:19:50 +00:00
|
|
|
timeout.tv_sec = 0;
|
|
|
|
timeout.tv_usec = (long) (remaining * 1e6);
|
|
|
|
selectDisplayConnection(&timeout);
|
2015-03-12 14:42:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-03 17:16:46 +00:00
|
|
|
if (_glfwGetWindowPropertyX11(window->x11.handle,
|
|
|
|
_glfw.x11.NET_FRAME_EXTENTS,
|
|
|
|
XA_CARDINAL,
|
|
|
|
(unsigned char**) &extents) == 4)
|
2014-03-25 20:30:13 +00:00
|
|
|
{
|
|
|
|
if (left)
|
|
|
|
*left = extents[0];
|
|
|
|
if (top)
|
|
|
|
*top = extents[2];
|
|
|
|
if (right)
|
|
|
|
*right = extents[1];
|
|
|
|
if (bottom)
|
|
|
|
*bottom = extents[3];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (extents)
|
|
|
|
XFree(extents);
|
|
|
|
}
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwPlatformIconifyWindow(_GLFWwindow* window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2016-02-28 15:05:02 +00:00
|
|
|
if (window->x11.overrideRedirect)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-08-26 13:38:18 +00:00
|
|
|
// Override-redirect windows cannot be iconified or restored, as those
|
|
|
|
// tasks are performed by the window manager
|
2015-03-10 18:51:14 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-06-15 12:39:56 +00:00
|
|
|
"X11: Iconification of full screen windows requires a WM that supports EWMH full screen");
|
2010-09-07 15:34:51 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
XIconifyWindow(_glfw.x11.display, window->x11.handle, _glfw.x11.screen);
|
2014-04-07 11:36:25 +00:00
|
|
|
XFlush(_glfw.x11.display);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwPlatformRestoreWindow(_GLFWwindow* window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2016-02-28 15:05:02 +00:00
|
|
|
if (window->x11.overrideRedirect)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-08-26 13:38:18 +00:00
|
|
|
// Override-redirect windows cannot be iconified or restored, as those
|
|
|
|
// tasks are performed by the window manager
|
2015-03-10 18:51:14 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-06-15 12:39:56 +00:00
|
|
|
"X11: Iconification of full screen windows requires a WM that supports EWMH full screen");
|
2010-09-07 15:34:51 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-10-13 10:50:59 +00:00
|
|
|
if (_glfwPlatformWindowIconified(window))
|
|
|
|
XMapWindow(_glfw.x11.display, window->x11.handle);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (_glfw.x11.NET_WM_STATE &&
|
|
|
|
_glfw.x11.NET_WM_STATE_MAXIMIZED_VERT &&
|
|
|
|
_glfw.x11.NET_WM_STATE_MAXIMIZED_HORZ)
|
|
|
|
{
|
|
|
|
sendEventToWM(window,
|
|
|
|
_glfw.x11.NET_WM_STATE,
|
|
|
|
_NET_WM_STATE_REMOVE,
|
|
|
|
_glfw.x11.NET_WM_STATE_MAXIMIZED_VERT,
|
|
|
|
_glfw.x11.NET_WM_STATE_MAXIMIZED_HORZ,
|
|
|
|
1, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-07 11:36:25 +00:00
|
|
|
XFlush(_glfw.x11.display);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2015-10-13 10:50:59 +00:00
|
|
|
void _glfwPlatformMaximizeWindow(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
if (_glfw.x11.NET_WM_STATE &&
|
|
|
|
_glfw.x11.NET_WM_STATE_MAXIMIZED_VERT &&
|
|
|
|
_glfw.x11.NET_WM_STATE_MAXIMIZED_HORZ)
|
|
|
|
{
|
|
|
|
sendEventToWM(window,
|
|
|
|
_glfw.x11.NET_WM_STATE,
|
|
|
|
_NET_WM_STATE_ADD,
|
|
|
|
_glfw.x11.NET_WM_STATE_MAXIMIZED_VERT,
|
|
|
|
_glfw.x11.NET_WM_STATE_MAXIMIZED_HORZ,
|
|
|
|
1, 0);
|
|
|
|
XFlush(_glfw.x11.display);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-21 18:01:57 +00:00
|
|
|
void _glfwPlatformShowWindow(_GLFWwindow* window)
|
|
|
|
{
|
2016-02-21 14:42:49 +00:00
|
|
|
XMapWindow(_glfw.x11.display, window->x11.handle);
|
2013-01-02 00:40:42 +00:00
|
|
|
XFlush(_glfw.x11.display);
|
2012-08-21 18:01:57 +00:00
|
|
|
}
|
|
|
|
|
2016-02-21 14:42:49 +00:00
|
|
|
void _glfwPlatformHideWindow(_GLFWwindow* window)
|
2014-06-20 11:39:06 +00:00
|
|
|
{
|
2016-02-21 14:42:49 +00:00
|
|
|
XUnmapWindow(_glfw.x11.display, window->x11.handle);
|
2014-06-20 11:39:06 +00:00
|
|
|
XFlush(_glfw.x11.display);
|
|
|
|
}
|
|
|
|
|
2016-02-21 14:42:49 +00:00
|
|
|
void _glfwPlatformFocusWindow(_GLFWwindow* window)
|
2012-08-21 18:01:57 +00:00
|
|
|
{
|
2016-02-21 14:42:49 +00:00
|
|
|
if (_glfw.x11.NET_ACTIVE_WINDOW)
|
|
|
|
sendEventToWM(window, _glfw.x11.NET_ACTIVE_WINDOW, 1, 0, 0, 0, 0);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
XRaiseWindow(_glfw.x11.display, window->x11.handle);
|
|
|
|
XSetInputFocus(_glfw.x11.display, window->x11.handle,
|
|
|
|
RevertToParent, CurrentTime);
|
|
|
|
}
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
XFlush(_glfw.x11.display);
|
2012-08-21 18:01:57 +00:00
|
|
|
}
|
|
|
|
|
2016-02-23 11:26:42 +00:00
|
|
|
void _glfwPlatformSetWindowMonitor(_GLFWwindow* window,
|
|
|
|
_GLFWmonitor* monitor,
|
|
|
|
int xpos, int ypos,
|
|
|
|
int width, int height,
|
|
|
|
int refreshRate)
|
|
|
|
{
|
|
|
|
if (window->monitor == monitor)
|
|
|
|
{
|
|
|
|
if (monitor)
|
|
|
|
{
|
|
|
|
if (monitor->window == window)
|
|
|
|
acquireMonitor(window);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
XMoveResizeWindow(_glfw.x11.display, window->x11.handle,
|
|
|
|
xpos, ypos, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window->monitor)
|
|
|
|
releaseMonitor(window);
|
|
|
|
|
|
|
|
_glfwInputWindowMonitorChange(window, monitor);
|
2016-05-03 09:28:23 +00:00
|
|
|
updateNormalHints(window, width, height);
|
2016-02-23 11:26:42 +00:00
|
|
|
updateWindowMode(window);
|
|
|
|
|
|
|
|
if (window->monitor)
|
|
|
|
{
|
|
|
|
XMapRaised(_glfw.x11.display, window->x11.handle);
|
|
|
|
acquireMonitor(window);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
XMoveResizeWindow(_glfw.x11.display, window->x11.handle,
|
|
|
|
xpos, ypos, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
XFlush(_glfw.x11.display);
|
|
|
|
}
|
|
|
|
|
2014-12-26 11:25:48 +00:00
|
|
|
int _glfwPlatformWindowFocused(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
Window focused;
|
|
|
|
int state;
|
|
|
|
|
|
|
|
XGetInputFocus(_glfw.x11.display, &focused, &state);
|
|
|
|
return window->x11.handle == focused;
|
|
|
|
}
|
|
|
|
|
|
|
|
int _glfwPlatformWindowIconified(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
return getWindowState(window) == IconicState;
|
|
|
|
}
|
|
|
|
|
|
|
|
int _glfwPlatformWindowVisible(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
XWindowAttributes wa;
|
|
|
|
XGetWindowAttributes(_glfw.x11.display, window->x11.handle, &wa);
|
|
|
|
return wa.map_state == IsViewable;
|
|
|
|
}
|
|
|
|
|
2015-10-13 10:50:59 +00:00
|
|
|
int _glfwPlatformWindowMaximized(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
Atom* states;
|
|
|
|
unsigned long i;
|
|
|
|
GLFWbool maximized = GLFW_FALSE;
|
|
|
|
const unsigned long count =
|
|
|
|
_glfwGetWindowPropertyX11(window->x11.handle,
|
|
|
|
_glfw.x11.NET_WM_STATE,
|
|
|
|
XA_ATOM,
|
|
|
|
(unsigned char**) &states);
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
if (states[i] == _glfw.x11.NET_WM_STATE_MAXIMIZED_VERT ||
|
|
|
|
states[i] == _glfw.x11.NET_WM_STATE_MAXIMIZED_HORZ)
|
|
|
|
{
|
|
|
|
maximized = GLFW_TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
XFree(states);
|
|
|
|
return maximized;
|
|
|
|
}
|
|
|
|
|
2010-09-08 13:51:25 +00:00
|
|
|
void _glfwPlatformPollEvents(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2015-12-13 16:38:50 +00:00
|
|
|
_glfwPollJoystickEvents();
|
|
|
|
|
2013-01-30 23:26:37 +00:00
|
|
|
int count = XPending(_glfw.x11.display);
|
|
|
|
while (count--)
|
2012-08-12 14:04:03 +00:00
|
|
|
{
|
2013-01-30 23:26:37 +00:00
|
|
|
XEvent event;
|
|
|
|
XNextEvent(_glfw.x11.display, &event);
|
2012-08-12 14:04:03 +00:00
|
|
|
processEvent(&event);
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2016-05-30 19:21:09 +00:00
|
|
|
if (_glfw.x11.disabledCursorWindow)
|
|
|
|
centerCursor(_glfw.x11.disabledCursorWindow);
|
2016-05-30 20:14:13 +00:00
|
|
|
|
|
|
|
XFlush(_glfw.x11.display);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2010-09-08 13:51:25 +00:00
|
|
|
void _glfwPlatformWaitEvents(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2015-08-14 11:52:02 +00:00
|
|
|
while (!XPending(_glfw.x11.display))
|
2015-03-16 17:19:50 +00:00
|
|
|
selectDisplayConnection(NULL);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-01-30 23:26:37 +00:00
|
|
|
_glfwPlatformPollEvents();
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 20:11:16 +00:00
|
|
|
void _glfwPlatformWaitEventsTimeout(double timeout)
|
|
|
|
{
|
|
|
|
const double deadline = timeout + _glfwPlatformGetTimerValue() /
|
|
|
|
(double) _glfwPlatformGetTimerFrequency();
|
|
|
|
|
|
|
|
while (!XPending(_glfw.x11.display))
|
|
|
|
{
|
|
|
|
const double remaining = deadline - _glfwPlatformGetTimerValue() /
|
|
|
|
(double) _glfwPlatformGetTimerFrequency();
|
|
|
|
if (remaining <= 0.0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const long seconds = (long) remaining;
|
|
|
|
const long microseconds = (long) ((remaining - seconds) * 1e6);
|
|
|
|
struct timeval tv = { seconds, microseconds };
|
|
|
|
|
|
|
|
selectDisplayConnection(&tv);
|
|
|
|
}
|
|
|
|
|
|
|
|
_glfwPlatformPollEvents();
|
|
|
|
}
|
|
|
|
|
2014-02-10 17:16:58 +00:00
|
|
|
void _glfwPlatformPostEmptyEvent(void)
|
|
|
|
{
|
|
|
|
XEvent event;
|
|
|
|
_GLFWwindow* window = _glfw.windowListHead;
|
|
|
|
|
|
|
|
memset(&event, 0, sizeof(event));
|
|
|
|
event.type = ClientMessage;
|
|
|
|
event.xclient.window = window->x11.handle;
|
|
|
|
event.xclient.format = 32; // Data is 32-bit longs
|
2015-01-27 23:04:59 +00:00
|
|
|
event.xclient.message_type = _glfw.x11.NULL_;
|
2014-02-10 17:16:58 +00:00
|
|
|
|
|
|
|
XSendEvent(_glfw.x11.display, window->x11.handle, False, 0, &event);
|
|
|
|
XFlush(_glfw.x11.display);
|
|
|
|
}
|
|
|
|
|
2014-02-11 17:24:01 +00:00
|
|
|
void _glfwPlatformGetCursorPos(_GLFWwindow* window, double* xpos, double* ypos)
|
|
|
|
{
|
|
|
|
Window root, child;
|
|
|
|
int rootX, rootY, childX, childY;
|
|
|
|
unsigned int mask;
|
|
|
|
|
|
|
|
XQueryPointer(_glfw.x11.display, window->x11.handle,
|
|
|
|
&root, &child,
|
|
|
|
&rootX, &rootY, &childX, &childY,
|
|
|
|
&mask);
|
|
|
|
|
|
|
|
if (xpos)
|
|
|
|
*xpos = childX;
|
|
|
|
if (ypos)
|
|
|
|
*ypos = childY;
|
|
|
|
}
|
|
|
|
|
2013-04-04 14:16:21 +00:00
|
|
|
void _glfwPlatformSetCursorPos(_GLFWwindow* window, double x, double y)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-08-26 13:38:18 +00:00
|
|
|
// Store the new position so it can be recognized later
|
2016-05-24 10:23:58 +00:00
|
|
|
window->x11.warpCursorPosX = (int) x;
|
|
|
|
window->x11.warpCursorPosY = (int) y;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-04-04 14:16:21 +00:00
|
|
|
XWarpPointer(_glfw.x11.display, None, window->x11.handle,
|
|
|
|
0,0,0,0, (int) x, (int) y);
|
2016-05-30 20:14:13 +00:00
|
|
|
XFlush(_glfw.x11.display);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 11:04:56 +00:00
|
|
|
void _glfwPlatformSetCursorMode(_GLFWwindow* window, int mode)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2015-07-02 11:04:56 +00:00
|
|
|
if (mode == GLFW_CURSOR_DISABLED)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2016-05-30 19:21:09 +00:00
|
|
|
_glfw.x11.disabledCursorWindow = window;
|
2016-05-25 12:06:02 +00:00
|
|
|
_glfwPlatformGetCursorPos(window,
|
|
|
|
&_glfw.x11.restoreCursorPosX,
|
|
|
|
&_glfw.x11.restoreCursorPosY);
|
|
|
|
centerCursor(window);
|
2015-07-02 11:04:56 +00:00
|
|
|
XGrabPointer(_glfw.x11.display, window->x11.handle, True,
|
|
|
|
ButtonPressMask | ButtonReleaseMask | PointerMotionMask,
|
|
|
|
GrabModeAsync, GrabModeAsync,
|
|
|
|
window->x11.handle, _glfw.x11.cursor, CurrentTime);
|
|
|
|
}
|
2016-05-30 19:21:09 +00:00
|
|
|
else if (_glfw.x11.disabledCursorWindow == window)
|
2015-07-02 11:04:56 +00:00
|
|
|
{
|
2016-05-30 19:21:09 +00:00
|
|
|
_glfw.x11.disabledCursorWindow = NULL;
|
2015-07-02 11:04:56 +00:00
|
|
|
XUngrabPointer(_glfw.x11.display, CurrentTime);
|
2016-05-25 12:06:02 +00:00
|
|
|
_glfwPlatformSetCursorPos(window,
|
|
|
|
_glfw.x11.restoreCursorPosX,
|
|
|
|
_glfw.x11.restoreCursorPosY);
|
|
|
|
}
|
2015-07-02 11:04:56 +00:00
|
|
|
|
2016-05-30 19:21:09 +00:00
|
|
|
updateCursorImage(window);
|
2016-05-30 20:14:13 +00:00
|
|
|
XFlush(_glfw.x11.display);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 12:24:50 +00:00
|
|
|
const char* _glfwPlatformGetKeyName(int key, int scancode)
|
|
|
|
{
|
|
|
|
KeySym keysym;
|
|
|
|
int extra;
|
|
|
|
|
|
|
|
if (!_glfw.x11.xkb.available)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (key != GLFW_KEY_UNKNOWN)
|
|
|
|
scancode = _glfw.x11.nativeKeys[key];
|
|
|
|
|
|
|
|
if (!_glfwIsPrintable(_glfw.x11.publicKeys[scancode]))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
keysym = XkbKeycodeToKeysym(_glfw.x11.display, scancode, 0, 0);
|
|
|
|
if (keysym == NoSymbol)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
XkbTranslateKeySym(_glfw.x11.display, &keysym, 0,
|
|
|
|
_glfw.x11.keyName, sizeof(_glfw.x11.keyName),
|
|
|
|
&extra);
|
|
|
|
|
|
|
|
if (!strlen(_glfw.x11.keyName))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return _glfw.x11.keyName;
|
|
|
|
}
|
|
|
|
|
2014-02-23 15:43:17 +00:00
|
|
|
int _glfwPlatformCreateCursor(_GLFWcursor* cursor,
|
|
|
|
const GLFWimage* image,
|
|
|
|
int xhot, int yhot)
|
2013-12-04 13:19:22 +00:00
|
|
|
{
|
2015-12-03 17:16:46 +00:00
|
|
|
cursor->x11.handle = _glfwCreateCursorX11(image, xhot, yhot);
|
2014-09-02 14:52:16 +00:00
|
|
|
if (!cursor->x11.handle)
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_FALSE;
|
2014-09-02 14:52:16 +00:00
|
|
|
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_TRUE;
|
2014-09-02 14:52:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int _glfwPlatformCreateStandardCursor(_GLFWcursor* cursor, int shape)
|
|
|
|
{
|
2015-03-10 18:51:14 +00:00
|
|
|
cursor->x11.handle = XCreateFontCursor(_glfw.x11.display,
|
|
|
|
translateCursorShape(shape));
|
2014-09-02 14:52:16 +00:00
|
|
|
if (!cursor->x11.handle)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"X11: Failed to create standard cursor");
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_FALSE;
|
2014-09-02 14:52:16 +00:00
|
|
|
}
|
2013-12-04 13:19:22 +00:00
|
|
|
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_TRUE;
|
2013-12-04 13:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformDestroyCursor(_GLFWcursor* cursor)
|
|
|
|
{
|
2014-01-23 14:24:57 +00:00
|
|
|
if (cursor->x11.handle)
|
|
|
|
XFreeCursor(_glfw.x11.display, cursor->x11.handle);
|
2013-12-04 13:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetCursor(_GLFWwindow* window, _GLFWcursor* cursor)
|
|
|
|
{
|
|
|
|
if (window->cursorMode == GLFW_CURSOR_NORMAL)
|
|
|
|
{
|
2016-05-30 19:21:09 +00:00
|
|
|
updateCursorImage(window);
|
2013-12-04 13:19:22 +00:00
|
|
|
XFlush(_glfw.x11.display);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-09 14:26:57 +00:00
|
|
|
void _glfwPlatformSetClipboardString(_GLFWwindow* window, const char* string)
|
|
|
|
{
|
|
|
|
free(_glfw.x11.clipboardString);
|
|
|
|
_glfw.x11.clipboardString = strdup(string);
|
|
|
|
|
|
|
|
XSetSelectionOwner(_glfw.x11.display,
|
|
|
|
_glfw.x11.CLIPBOARD,
|
|
|
|
window->x11.handle, CurrentTime);
|
|
|
|
|
|
|
|
if (XGetSelectionOwner(_glfw.x11.display, _glfw.x11.CLIPBOARD) !=
|
|
|
|
window->x11.handle)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-03-10 18:51:14 +00:00
|
|
|
"X11: Failed to become owner of clipboard selection");
|
2014-09-09 14:26:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* _glfwPlatformGetClipboardString(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
const Atom formats[] = { _glfw.x11.UTF8_STRING,
|
|
|
|
_glfw.x11.COMPOUND_STRING,
|
|
|
|
XA_STRING };
|
|
|
|
const size_t formatCount = sizeof(formats) / sizeof(formats[0]);
|
|
|
|
|
|
|
|
if (findWindowByHandle(XGetSelectionOwner(_glfw.x11.display,
|
|
|
|
_glfw.x11.CLIPBOARD)))
|
|
|
|
{
|
|
|
|
// Instead of doing a large number of X round-trips just to put this
|
|
|
|
// string into a window property and then read it back, just return it
|
|
|
|
return _glfw.x11.clipboardString;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(_glfw.x11.clipboardString);
|
|
|
|
_glfw.x11.clipboardString = NULL;
|
|
|
|
|
|
|
|
for (i = 0; i < formatCount; i++)
|
|
|
|
{
|
|
|
|
char* data;
|
|
|
|
XEvent event;
|
|
|
|
|
|
|
|
XConvertSelection(_glfw.x11.display,
|
|
|
|
_glfw.x11.CLIPBOARD,
|
|
|
|
formats[i],
|
|
|
|
_glfw.x11.GLFW_SELECTION,
|
|
|
|
window->x11.handle, CurrentTime);
|
|
|
|
|
|
|
|
while (!XCheckTypedEvent(_glfw.x11.display, SelectionNotify, &event))
|
2015-03-16 17:19:50 +00:00
|
|
|
selectDisplayConnection(NULL);
|
2014-09-09 14:26:57 +00:00
|
|
|
|
|
|
|
if (event.xselection.property == None)
|
|
|
|
continue;
|
|
|
|
|
2015-12-03 17:16:46 +00:00
|
|
|
if (_glfwGetWindowPropertyX11(event.xselection.requestor,
|
|
|
|
event.xselection.property,
|
|
|
|
event.xselection.target,
|
|
|
|
(unsigned char**) &data))
|
2014-09-09 14:26:57 +00:00
|
|
|
{
|
|
|
|
_glfw.x11.clipboardString = strdup(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
XFree(data);
|
|
|
|
|
|
|
|
XDeleteProperty(_glfw.x11.display,
|
|
|
|
event.xselection.requestor,
|
|
|
|
event.xselection.property);
|
|
|
|
|
|
|
|
if (_glfw.x11.clipboardString)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_glfw.x11.clipboardString == NULL)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_FORMAT_UNAVAILABLE,
|
2015-03-10 18:51:14 +00:00
|
|
|
"X11: Failed to convert clipboard to string");
|
2014-09-09 14:26:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return _glfw.x11.clipboardString;
|
|
|
|
}
|
|
|
|
|
2016-03-23 09:24:01 +00:00
|
|
|
char** _glfwPlatformGetRequiredInstanceExtensions(uint32_t* count)
|
2015-08-10 18:19:04 +00:00
|
|
|
{
|
|
|
|
char** extensions;
|
|
|
|
|
|
|
|
*count = 0;
|
|
|
|
|
2016-02-18 18:35:48 +00:00
|
|
|
if (!_glfw.vk.KHR_xcb_surface || !_glfw.x11.x11xcb.handle)
|
2015-08-10 18:19:04 +00:00
|
|
|
{
|
2016-02-18 18:35:48 +00:00
|
|
|
if (!_glfw.vk.KHR_xlib_surface)
|
2015-08-10 18:19:04 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
extensions = calloc(2, sizeof(char*));
|
|
|
|
extensions[0] = strdup("VK_KHR_surface");
|
|
|
|
|
2016-02-21 17:36:28 +00:00
|
|
|
if (_glfw.vk.KHR_xcb_surface && _glfw.x11.x11xcb.handle)
|
2015-08-10 18:19:04 +00:00
|
|
|
extensions[1] = strdup("VK_KHR_xcb_surface");
|
2016-02-18 18:35:48 +00:00
|
|
|
else
|
|
|
|
extensions[1] = strdup("VK_KHR_xlib_surface");
|
2015-08-10 18:19:04 +00:00
|
|
|
|
|
|
|
*count = 2;
|
|
|
|
return extensions;
|
|
|
|
}
|
|
|
|
|
|
|
|
int _glfwPlatformGetPhysicalDevicePresentationSupport(VkInstance instance,
|
|
|
|
VkPhysicalDevice device,
|
2016-03-23 09:24:01 +00:00
|
|
|
uint32_t queuefamily)
|
2015-08-10 18:19:04 +00:00
|
|
|
{
|
|
|
|
VisualID visualID = XVisualIDFromVisual(DefaultVisual(_glfw.x11.display,
|
|
|
|
_glfw.x11.screen));
|
|
|
|
|
2016-02-19 07:56:46 +00:00
|
|
|
if (_glfw.vk.KHR_xcb_surface && _glfw.x11.x11xcb.handle)
|
2015-08-10 18:19:04 +00:00
|
|
|
{
|
|
|
|
PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR vkGetPhysicalDeviceXcbPresentationSupportKHR =
|
|
|
|
(PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR)
|
|
|
|
vkGetInstanceProcAddr(instance, "vkGetPhysicalDeviceXcbPresentationSupportKHR");
|
|
|
|
if (!vkGetPhysicalDeviceXcbPresentationSupportKHR)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
|
|
|
"X11: Vulkan instance missing VK_KHR_xcb_surface extension");
|
|
|
|
return GLFW_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
xcb_connection_t* connection =
|
|
|
|
_glfw.x11.x11xcb.XGetXCBConnection(_glfw.x11.display);
|
|
|
|
if (!connection)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"X11: Failed to retrieve XCB connection");
|
|
|
|
return GLFW_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return vkGetPhysicalDeviceXcbPresentationSupportKHR(device,
|
|
|
|
queuefamily,
|
|
|
|
connection,
|
|
|
|
visualID);
|
|
|
|
}
|
2016-02-18 18:35:48 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
PFN_vkGetPhysicalDeviceXlibPresentationSupportKHR vkGetPhysicalDeviceXlibPresentationSupportKHR =
|
|
|
|
(PFN_vkGetPhysicalDeviceXlibPresentationSupportKHR)
|
|
|
|
vkGetInstanceProcAddr(instance, "vkGetPhysicalDeviceXlibPresentationSupportKHR");
|
|
|
|
if (!vkGetPhysicalDeviceXlibPresentationSupportKHR)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
|
|
|
"X11: Vulkan instance missing VK_KHR_xlib_surface extension");
|
|
|
|
return GLFW_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return vkGetPhysicalDeviceXlibPresentationSupportKHR(device,
|
|
|
|
queuefamily,
|
|
|
|
_glfw.x11.display,
|
|
|
|
visualID);
|
|
|
|
}
|
2015-08-10 18:19:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
VkResult _glfwPlatformCreateWindowSurface(VkInstance instance,
|
|
|
|
_GLFWwindow* window,
|
|
|
|
const VkAllocationCallbacks* allocator,
|
|
|
|
VkSurfaceKHR* surface)
|
|
|
|
{
|
2016-02-19 07:56:46 +00:00
|
|
|
if (_glfw.vk.KHR_xcb_surface && _glfw.x11.x11xcb.handle)
|
2015-08-10 18:19:04 +00:00
|
|
|
{
|
|
|
|
VkResult err;
|
2016-02-18 18:35:48 +00:00
|
|
|
VkXcbSurfaceCreateInfoKHR sci;
|
|
|
|
PFN_vkCreateXcbSurfaceKHR vkCreateXcbSurfaceKHR;
|
2015-08-10 18:19:04 +00:00
|
|
|
|
2016-02-18 18:35:48 +00:00
|
|
|
xcb_connection_t* connection =
|
|
|
|
_glfw.x11.x11xcb.XGetXCBConnection(_glfw.x11.display);
|
|
|
|
if (!connection)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"X11: Failed to retrieve XCB connection");
|
|
|
|
return VK_ERROR_EXTENSION_NOT_PRESENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
vkCreateXcbSurfaceKHR = (PFN_vkCreateXcbSurfaceKHR)
|
|
|
|
vkGetInstanceProcAddr(instance, "vkCreateXcbSurfaceKHR");
|
|
|
|
if (!vkCreateXcbSurfaceKHR)
|
2015-08-10 18:19:04 +00:00
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
2016-02-18 18:35:48 +00:00
|
|
|
"X11: Vulkan instance missing VK_KHR_xcb_surface extension");
|
2015-08-10 18:19:04 +00:00
|
|
|
return VK_ERROR_EXTENSION_NOT_PRESENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(&sci, 0, sizeof(sci));
|
2016-02-18 18:35:48 +00:00
|
|
|
sci.sType = VK_STRUCTURE_TYPE_XCB_SURFACE_CREATE_INFO_KHR;
|
|
|
|
sci.connection = connection;
|
2015-08-10 18:19:04 +00:00
|
|
|
sci.window = window->x11.handle;
|
|
|
|
|
2016-02-18 18:35:48 +00:00
|
|
|
err = vkCreateXcbSurfaceKHR(instance, &sci, allocator, surface);
|
2015-08-10 18:19:04 +00:00
|
|
|
if (err)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2016-02-18 18:35:48 +00:00
|
|
|
"X11: Failed to create Vulkan XCB surface: %s",
|
2015-08-10 18:19:04 +00:00
|
|
|
_glfwGetVulkanResultString(err));
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
VkResult err;
|
2016-02-18 18:35:48 +00:00
|
|
|
VkXlibSurfaceCreateInfoKHR sci;
|
|
|
|
PFN_vkCreateXlibSurfaceKHR vkCreateXlibSurfaceKHR;
|
2015-08-10 18:19:04 +00:00
|
|
|
|
2016-02-18 18:35:48 +00:00
|
|
|
vkCreateXlibSurfaceKHR = (PFN_vkCreateXlibSurfaceKHR)
|
|
|
|
vkGetInstanceProcAddr(instance, "vkCreateXlibSurfaceKHR");
|
|
|
|
if (!vkCreateXlibSurfaceKHR)
|
2015-08-10 18:19:04 +00:00
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
2016-02-18 18:35:48 +00:00
|
|
|
"X11: Vulkan instance missing VK_KHR_xlib_surface extension");
|
2015-08-10 18:19:04 +00:00
|
|
|
return VK_ERROR_EXTENSION_NOT_PRESENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(&sci, 0, sizeof(sci));
|
2016-02-18 18:35:48 +00:00
|
|
|
sci.sType = VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR;
|
|
|
|
sci.dpy = _glfw.x11.display;
|
2015-08-10 18:19:04 +00:00
|
|
|
sci.window = window->x11.handle;
|
|
|
|
|
2016-02-18 18:35:48 +00:00
|
|
|
err = vkCreateXlibSurfaceKHR(instance, &sci, allocator, surface);
|
2015-08-10 18:19:04 +00:00
|
|
|
if (err)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2016-02-18 18:35:48 +00:00
|
|
|
"X11: Failed to create Vulkan X11 surface: %s",
|
2015-08-10 18:19:04 +00:00
|
|
|
_glfwGetVulkanResultString(err));
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-15 21:38:14 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW native API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
GLFWAPI Display* glfwGetX11Display(void)
|
|
|
|
{
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-01-15 21:38:14 +00:00
|
|
|
return _glfw.x11.display;
|
|
|
|
}
|
|
|
|
|
|
|
|
GLFWAPI Window glfwGetX11Window(GLFWwindow* handle)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(None);
|
2013-01-15 21:38:14 +00:00
|
|
|
return window->x11.handle;
|
|
|
|
}
|
|
|
|
|