2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2011-03-06 00:46:39 +00:00
|
|
|
// GLFW - An OpenGL library
|
2010-09-07 15:34:51 +00:00
|
|
|
// Platform: X11/GLX
|
2010-09-07 15:41:26 +00:00
|
|
|
// API version: 3.0
|
2010-09-07 15:34:51 +00:00
|
|
|
// WWW: http://www.glfw.org/
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2002-2006 Marcus Geelnard
|
|
|
|
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
|
|
|
|
//
|
|
|
|
// This software is provided 'as-is', without any express or implied
|
|
|
|
// warranty. In no event will the authors be held liable for any damages
|
|
|
|
// arising from the use of this software.
|
|
|
|
//
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
// including commercial applications, and to alter it and redistribute it
|
|
|
|
// freely, subject to the following restrictions:
|
|
|
|
//
|
|
|
|
// 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
// claim that you wrote the original software. If you use this software
|
|
|
|
// in a product, an acknowledgment in the product documentation would
|
|
|
|
// be appreciated but is not required.
|
|
|
|
//
|
|
|
|
// 2. Altered source versions must be plainly marked as such, and must not
|
|
|
|
// be misrepresented as being the original software.
|
|
|
|
//
|
|
|
|
// 3. This notice may not be removed or altered from any source
|
|
|
|
// distribution.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
2010-09-08 15:01:39 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.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-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Translates an X Window key to internal coding
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-08 13:51:25 +00:00
|
|
|
static int translateKey(int keycode)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-01-04 22:07:34 +00:00
|
|
|
// Use the pre-filled LUT (see updateKeyCodeLUT() ).
|
2011-01-02 10:18:14 +00:00
|
|
|
if ((keycode >= 0) && (keycode < 256))
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-01-04 22:07:34 +00:00
|
|
|
return _glfwLibrary.X11.keyCodeLUT[keycode];
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2011-01-04 22:07:34 +00:00
|
|
|
else
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-01-04 22:07:34 +00:00
|
|
|
return -1;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Translates an X Window event to Unicode
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-08 13:58:43 +00:00
|
|
|
static int translateChar(XKeyEvent* event)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
KeySym keysym;
|
|
|
|
|
|
|
|
// Get X11 keysym
|
2010-09-08 13:51:25 +00:00
|
|
|
XLookupString(event, NULL, 0, &keysym, NULL);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Convert to Unicode (see x11_keysym2unicode.c)
|
2010-09-08 13:51:25 +00:00
|
|
|
return (int) _glfwKeySym2Unicode(keysym);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Create the X11 window (and its colormap)
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
static GLboolean createWindow(_GLFWwindow* window,
|
2010-09-08 13:58:43 +00:00
|
|
|
const _GLFWwndconfig* wndconfig)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
unsigned long wamask;
|
|
|
|
XSetWindowAttributes wa;
|
2012-04-23 20:31:55 +00:00
|
|
|
XVisualInfo* visual = _glfwGetContextVisual(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Every window needs a colormap
|
|
|
|
// Create one based on the visual used by the current context
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
window->X11.colormap = XCreateColormap(_glfwLibrary.X11.display,
|
2010-09-13 21:42:51 +00:00
|
|
|
_glfwLibrary.X11.root,
|
2012-04-23 20:31:55 +00:00
|
|
|
visual->visual,
|
2010-09-13 21:42:51 +00:00
|
|
|
AllocNone);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Create the actual window
|
|
|
|
{
|
|
|
|
wamask = CWBorderPixel | CWColormap | CWEventMask;
|
|
|
|
|
2010-09-09 16:15:32 +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 |
|
|
|
|
PointerMotionMask | ButtonPressMask | ButtonReleaseMask |
|
2012-01-30 21:18:05 +00:00
|
|
|
ExposureMask | FocusChangeMask | VisibilityChangeMask |
|
|
|
|
EnterWindowMask | LeaveWindowMask;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-10 11:24:19 +00:00
|
|
|
if (wndconfig->mode == GLFW_WINDOWED)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// The /only/ reason we are setting the background pixel here is
|
|
|
|
// that otherwise our window wont get any decorations on systems
|
|
|
|
// using Compiz on Intel hardware
|
2010-10-27 15:53:24 +00:00
|
|
|
wa.background_pixel = BlackPixel(_glfwLibrary.X11.display,
|
|
|
|
_glfwLibrary.X11.screen);
|
2010-09-07 15:34:51 +00:00
|
|
|
wamask |= CWBackPixel;
|
|
|
|
}
|
|
|
|
|
2010-09-11 13:34:03 +00:00
|
|
|
window->X11.handle = XCreateWindow(
|
2010-09-09 16:15:32 +00:00
|
|
|
_glfwLibrary.X11.display,
|
2010-09-09 21:37:50 +00:00
|
|
|
_glfwLibrary.X11.root,
|
2010-09-07 15:34:51 +00:00
|
|
|
0, 0, // Upper left corner of this window on root
|
2010-09-09 16:15:32 +00:00
|
|
|
window->width, window->height,
|
2010-09-07 15:34:51 +00:00
|
|
|
0, // Border width
|
2012-04-23 20:31:55 +00:00
|
|
|
visual->depth, // Color depth
|
2010-09-07 15:34:51 +00:00
|
|
|
InputOutput,
|
2012-04-23 20:31:55 +00:00
|
|
|
visual->visual,
|
2010-09-07 15:34:51 +00:00
|
|
|
wamask,
|
|
|
|
&wa
|
|
|
|
);
|
2010-09-08 02:15:49 +00:00
|
|
|
|
2010-09-11 13:34:03 +00:00
|
|
|
if (!window->X11.handle)
|
2010-09-09 19:52:31 +00:00
|
|
|
{
|
|
|
|
// TODO: Handle all the various error codes here
|
2010-11-23 16:45:23 +00:00
|
|
|
|
2011-05-21 15:34:17 +00:00
|
|
|
_glfwSetError(GLFW_PLATFORM_ERROR,
|
|
|
|
"X11/GLX: Failed to create window");
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_FALSE;
|
2010-09-09 19:52:31 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2012-04-05 15:29:08 +00:00
|
|
|
if (window->mode == GLFW_FULLSCREEN && !_glfwLibrary.X11.hasEWMH)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// 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 fullscreen 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 they're
|
|
|
|
// usually performed by the window manager
|
|
|
|
|
|
|
|
XSetWindowAttributes attributes;
|
|
|
|
attributes.override_redirect = True;
|
2010-09-09 16:15:32 +00:00
|
|
|
XChangeWindowAttributes(_glfwLibrary.X11.display,
|
2010-09-11 13:34:03 +00:00
|
|
|
window->X11.handle,
|
2010-09-08 13:51:25 +00:00
|
|
|
CWOverrideRedirect,
|
|
|
|
&attributes);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
window->X11.overrideRedirect = GL_TRUE;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Find or create the protocol atom for window close notifications
|
2012-04-05 15:29:08 +00:00
|
|
|
_glfwLibrary.X11.wmDeleteWindow = XInternAtom(_glfwLibrary.X11.display,
|
|
|
|
"WM_DELETE_WINDOW",
|
|
|
|
False);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Declare the WM protocols we support
|
|
|
|
{
|
|
|
|
int count = 0;
|
|
|
|
Atom protocols[2];
|
|
|
|
|
|
|
|
// The WM_DELETE_WINDOW ICCCM protocol
|
|
|
|
// Basic window close notification protocol
|
2012-04-05 15:29:08 +00:00
|
|
|
if (_glfwLibrary.X11.wmDeleteWindow != None)
|
|
|
|
protocols[count++] = _glfwLibrary.X11.wmDeleteWindow;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// The _NET_WM_PING EWMH protocol
|
|
|
|
// Tells the WM to ping our window and flag us as unresponsive if we
|
|
|
|
// don't reply within a few seconds
|
2012-04-05 15:29:08 +00:00
|
|
|
if (_glfwLibrary.X11.wmPing != None)
|
|
|
|
protocols[count++] = _glfwLibrary.X11.wmPing;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-08 13:51:25 +00:00
|
|
|
if (count > 0)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-11 13:34:03 +00:00
|
|
|
XSetWMProtocols(_glfwLibrary.X11.display, window->X11.handle,
|
2010-09-08 13:51:25 +00:00
|
|
|
protocols, count);
|
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
|
|
|
{
|
2011-05-21 15:34:17 +00:00
|
|
|
_glfwSetError(GLFW_OUT_OF_MEMORY,
|
|
|
|
"X11/GLX: Failed to allocate WM hints");
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_FALSE;
|
2010-09-09 19:52:31 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
hints->flags = StateHint;
|
|
|
|
hints->initial_state = NormalState;
|
|
|
|
|
2010-09-11 13:34:03 +00:00
|
|
|
XSetWMHints(_glfwLibrary.X11.display, window->X11.handle, hints);
|
2010-09-08 13:51:25 +00:00
|
|
|
XFree(hints);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set ICCCM WM_NORMAL_HINTS property (even if no parts are set)
|
|
|
|
{
|
2010-09-08 13:58:43 +00:00
|
|
|
XSizeHints* hints = XAllocSizeHints();
|
2010-09-08 13:51:25 +00:00
|
|
|
if (!hints)
|
2010-09-09 19:52:31 +00:00
|
|
|
{
|
2011-05-21 15:34:17 +00:00
|
|
|
_glfwSetError(GLFW_OUT_OF_MEMORY,
|
|
|
|
"X11/GLX: Failed to allocate size hints");
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_FALSE;
|
2010-09-09 19:52:31 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
hints->flags = 0;
|
|
|
|
|
2011-11-02 15:56:34 +00:00
|
|
|
if (!wndconfig->resizable)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
hints->flags |= (PMinSize | PMaxSize);
|
2010-09-09 16:15:32 +00:00
|
|
|
hints->min_width = hints->max_width = window->width;
|
|
|
|
hints->min_height = hints->max_height = window->height;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2010-09-11 13:34:03 +00:00
|
|
|
XSetWMNormalHints(_glfwLibrary.X11.display, window->X11.handle, hints);
|
2010-09-08 13:51:25 +00:00
|
|
|
XFree(hints);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2010-09-14 01:10:45 +00:00
|
|
|
_glfwPlatformSetWindowTitle(window, wndconfig->title);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Make sure the window is mapped before proceeding
|
2010-09-11 13:34:03 +00:00
|
|
|
XMapWindow(_glfwLibrary.X11.display, window->X11.handle);
|
2012-08-06 18:24:53 +00:00
|
|
|
XFlush(_glfwLibrary.X11.display);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-06 11:55:29 +00:00
|
|
|
//========================================================================
|
2012-06-22 11:53:02 +00:00
|
|
|
// Hide cursor
|
2011-09-06 11:55:29 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2012-06-22 11:53:02 +00:00
|
|
|
static void hideCursor(_GLFWwindow* window)
|
2011-09-06 11:55:29 +00:00
|
|
|
{
|
|
|
|
if (!window->X11.cursorHidden)
|
|
|
|
{
|
|
|
|
XDefineCursor(_glfwLibrary.X11.display,
|
|
|
|
window->X11.handle,
|
|
|
|
_glfwLibrary.X11.cursor);
|
|
|
|
window->X11.cursorHidden = GL_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
2012-06-22 11:53:02 +00:00
|
|
|
// Capture cursor
|
2011-09-06 11:55:29 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2012-06-22 11:53:02 +00:00
|
|
|
static void captureCursor(_GLFWwindow* window)
|
2011-09-06 11:55:29 +00:00
|
|
|
{
|
2012-06-22 11:53:02 +00:00
|
|
|
hideCursor(window);
|
2011-09-06 11:55:29 +00:00
|
|
|
|
|
|
|
if (!window->X11.cursorGrabbed)
|
|
|
|
{
|
|
|
|
if (XGrabPointer(_glfwLibrary.X11.display, window->X11.handle, True,
|
|
|
|
ButtonPressMask | ButtonReleaseMask |
|
|
|
|
PointerMotionMask, GrabModeAsync, GrabModeAsync,
|
|
|
|
window->X11.handle, None, CurrentTime) ==
|
|
|
|
GrabSuccess)
|
|
|
|
{
|
|
|
|
window->X11.cursorGrabbed = GL_TRUE;
|
|
|
|
window->X11.cursorCentered = GL_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
2012-06-22 11:53:02 +00:00
|
|
|
// Show cursor
|
2011-09-06 11:55:29 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2012-06-22 11:53:02 +00:00
|
|
|
static void showCursor(_GLFWwindow* window)
|
2011-09-06 11:55:29 +00:00
|
|
|
{
|
|
|
|
// Un-grab cursor (only in windowed mode: in fullscreen mode we still
|
2012-06-22 11:53:02 +00:00
|
|
|
// want the cursor grabbed in order to confine the cursor to the window
|
2011-09-06 11:55:29 +00:00
|
|
|
// area)
|
|
|
|
if (window->X11.cursorGrabbed)
|
|
|
|
{
|
|
|
|
XUngrabPointer(_glfwLibrary.X11.display, CurrentTime);
|
|
|
|
window->X11.cursorGrabbed = GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Show cursor
|
|
|
|
if (window->X11.cursorHidden)
|
|
|
|
{
|
|
|
|
XUndefineCursor(_glfwLibrary.X11.display, window->X11.handle);
|
|
|
|
window->X11.cursorHidden = GL_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
// Enter fullscreen mode
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
static void enterFullscreenMode(_GLFWwindow* window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-09 18:22:23 +00:00
|
|
|
if (!_glfwLibrary.X11.saver.changed)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Remember old screen saver settings
|
2010-09-09 16:15:32 +00:00
|
|
|
XGetScreenSaver(_glfwLibrary.X11.display,
|
2010-09-09 18:22:23 +00:00
|
|
|
&_glfwLibrary.X11.saver.timeout,
|
|
|
|
&_glfwLibrary.X11.saver.interval,
|
|
|
|
&_glfwLibrary.X11.saver.blanking,
|
|
|
|
&_glfwLibrary.X11.saver.exposure);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Disable screen saver
|
2010-09-09 16:15:32 +00:00
|
|
|
XSetScreenSaver(_glfwLibrary.X11.display, 0, 0, DontPreferBlanking,
|
2010-09-08 13:51:25 +00:00
|
|
|
DefaultExposures);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-09 18:22:23 +00:00
|
|
|
_glfwLibrary.X11.saver.changed = GL_TRUE;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2012-04-05 14:14:01 +00:00
|
|
|
_glfwSetVideoMode(&window->width, &window->height,
|
2010-09-09 16:15:32 +00:00
|
|
|
&window->refreshRate);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-04-05 15:29:08 +00:00
|
|
|
if (_glfwLibrary.X11.hasEWMH &&
|
|
|
|
_glfwLibrary.X11.wmState != None &&
|
|
|
|
_glfwLibrary.X11.wmStateFullscreen != None)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-04-05 15:29:08 +00:00
|
|
|
if (_glfwLibrary.X11.wmActiveWindow != None)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Ask the window manager to raise and focus the GLFW window
|
|
|
|
// Only focused windows with the _NET_WM_STATE_FULLSCREEN state end
|
|
|
|
// up on top of all other windows ("Stacking order" in EWMH spec)
|
|
|
|
|
|
|
|
XEvent event;
|
2010-09-08 13:51:25 +00:00
|
|
|
memset(&event, 0, sizeof(event));
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
event.type = ClientMessage;
|
2010-09-11 13:34:03 +00:00
|
|
|
event.xclient.window = window->X11.handle;
|
2010-09-07 15:34:51 +00:00
|
|
|
event.xclient.format = 32; // Data is 32-bit longs
|
2012-04-05 15:29:08 +00:00
|
|
|
event.xclient.message_type = _glfwLibrary.X11.wmActiveWindow;
|
2010-09-07 15:34:51 +00:00
|
|
|
event.xclient.data.l[0] = 1; // Sender is a normal application
|
|
|
|
event.xclient.data.l[1] = 0; // We don't really know the timestamp
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
XSendEvent(_glfwLibrary.X11.display,
|
2010-09-09 21:37:50 +00:00
|
|
|
_glfwLibrary.X11.root,
|
2010-09-08 13:51:25 +00:00
|
|
|
False,
|
|
|
|
SubstructureNotifyMask | SubstructureRedirectMask,
|
|
|
|
&event);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Ask the window manager to make the GLFW window a fullscreen window
|
|
|
|
// Fullscreen windows are undecorated and, when focused, are kept
|
|
|
|
// on top of all other windows
|
|
|
|
|
|
|
|
XEvent event;
|
2010-09-08 13:51:25 +00:00
|
|
|
memset(&event, 0, sizeof(event));
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
event.type = ClientMessage;
|
2010-09-11 13:34:03 +00:00
|
|
|
event.xclient.window = window->X11.handle;
|
2010-09-07 15:34:51 +00:00
|
|
|
event.xclient.format = 32; // Data is 32-bit longs
|
2012-04-05 15:29:08 +00:00
|
|
|
event.xclient.message_type = _glfwLibrary.X11.wmState;
|
2010-09-07 15:34:51 +00:00
|
|
|
event.xclient.data.l[0] = _NET_WM_STATE_ADD;
|
2012-04-05 15:29:08 +00:00
|
|
|
event.xclient.data.l[1] = _glfwLibrary.X11.wmStateFullscreen;
|
2010-09-07 15:34:51 +00:00
|
|
|
event.xclient.data.l[2] = 0; // No secondary property
|
|
|
|
event.xclient.data.l[3] = 1; // Sender is a normal application
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
XSendEvent(_glfwLibrary.X11.display,
|
2010-09-09 21:37:50 +00:00
|
|
|
_glfwLibrary.X11.root,
|
2010-09-08 13:51:25 +00:00
|
|
|
False,
|
|
|
|
SubstructureNotifyMask | SubstructureRedirectMask,
|
|
|
|
&event);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2010-09-09 16:15:32 +00:00
|
|
|
else if (window->X11.overrideRedirect)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// In override-redirect mode, we have divorced ourselves from the
|
|
|
|
// window manager, so we need to do everything manually
|
|
|
|
|
2010-09-11 13:34:03 +00:00
|
|
|
XRaiseWindow(_glfwLibrary.X11.display, window->X11.handle);
|
|
|
|
XSetInputFocus(_glfwLibrary.X11.display, window->X11.handle,
|
2010-09-08 13:51:25 +00:00
|
|
|
RevertToParent, CurrentTime);
|
2010-09-11 13:34:03 +00:00
|
|
|
XMoveWindow(_glfwLibrary.X11.display, window->X11.handle, 0, 0);
|
|
|
|
XResizeWindow(_glfwLibrary.X11.display, window->X11.handle,
|
2010-09-09 16:15:32 +00:00
|
|
|
window->width, window->height);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// HACK: Try to get window inside viewport (for virtual displays) by moving
|
2012-06-22 11:53:02 +00:00
|
|
|
// the cursor to the upper left corner (and then to the center)
|
2010-09-07 15:34:51 +00:00
|
|
|
// This hack should be harmless on saner systems as well
|
2010-09-11 13:34:03 +00:00
|
|
|
XWarpPointer(_glfwLibrary.X11.display, None, window->X11.handle, 0,0,0,0, 0,0);
|
|
|
|
XWarpPointer(_glfwLibrary.X11.display, None, window->X11.handle, 0,0,0,0,
|
2010-09-09 16:15:32 +00:00
|
|
|
window->width / 2, window->height / 2);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2011-10-08 21:57:03 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
// Leave fullscreen mode
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
static void leaveFullscreenMode(_GLFWwindow* window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-04-05 14:14:01 +00:00
|
|
|
_glfwRestoreVideoMode();
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Did we change the screen saver setting?
|
2010-09-09 18:22:23 +00:00
|
|
|
if (_glfwLibrary.X11.saver.changed)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Restore old screen saver settings
|
2010-09-09 16:15:32 +00:00
|
|
|
XSetScreenSaver(_glfwLibrary.X11.display,
|
2010-09-09 18:22:23 +00:00
|
|
|
_glfwLibrary.X11.saver.timeout,
|
|
|
|
_glfwLibrary.X11.saver.interval,
|
|
|
|
_glfwLibrary.X11.saver.blanking,
|
|
|
|
_glfwLibrary.X11.saver.exposure);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-09 18:22:23 +00:00
|
|
|
_glfwLibrary.X11.saver.changed = GL_FALSE;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2012-04-05 15:29:08 +00:00
|
|
|
if (_glfwLibrary.X11.hasEWMH &&
|
|
|
|
_glfwLibrary.X11.wmState != None &&
|
|
|
|
_glfwLibrary.X11.wmStateFullscreen != None)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Ask the window manager to make the GLFW window a normal window
|
|
|
|
// Normal windows usually have frames and other decorations
|
|
|
|
|
|
|
|
XEvent event;
|
2010-09-08 13:51:25 +00:00
|
|
|
memset(&event, 0, sizeof(event));
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
event.type = ClientMessage;
|
2010-09-11 13:34:03 +00:00
|
|
|
event.xclient.window = window->X11.handle;
|
2010-09-07 15:34:51 +00:00
|
|
|
event.xclient.format = 32; // Data is 32-bit longs
|
2012-04-05 15:29:08 +00:00
|
|
|
event.xclient.message_type = _glfwLibrary.X11.wmState;
|
2010-09-07 15:34:51 +00:00
|
|
|
event.xclient.data.l[0] = _NET_WM_STATE_REMOVE;
|
2012-04-05 15:29:08 +00:00
|
|
|
event.xclient.data.l[1] = _glfwLibrary.X11.wmStateFullscreen;
|
2010-09-07 15:34:51 +00:00
|
|
|
event.xclient.data.l[2] = 0; // No secondary property
|
|
|
|
event.xclient.data.l[3] = 1; // Sender is a normal application
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
XSendEvent(_glfwLibrary.X11.display,
|
2010-09-09 21:37:50 +00:00
|
|
|
_glfwLibrary.X11.root,
|
2010-09-08 13:51:25 +00:00
|
|
|
False,
|
|
|
|
SubstructureNotifyMask | SubstructureRedirectMask,
|
|
|
|
&event);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-09 22:06:23 +00:00
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Return the GLFW window corresponding to the specified X11 window
|
|
|
|
//========================================================================
|
2011-03-04 14:47:57 +00:00
|
|
|
|
2010-09-09 22:06:23 +00:00
|
|
|
static _GLFWwindow* findWindow(Window handle)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window;
|
|
|
|
|
|
|
|
for (window = _glfwLibrary.windowListHead; window; window = window->next)
|
|
|
|
{
|
2010-09-11 13:34:03 +00:00
|
|
|
if (window->X11.handle == handle)
|
2010-09-09 22:06:23 +00:00
|
|
|
return window;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
// Get and process next X event (called by _glfwPlatformPollEvents)
|
|
|
|
//========================================================================
|
|
|
|
|
2012-08-12 13:57:52 +00:00
|
|
|
static void processSingleEvent(XEvent *event)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-09 22:06:23 +00:00
|
|
|
_GLFWwindow* window;
|
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:
|
|
|
|
{
|
|
|
|
// A keyboard key was pressed
|
2012-08-12 13:57:52 +00:00
|
|
|
window = findWindow(event->xkey.window);
|
2010-09-09 22:06:23 +00:00
|
|
|
if (window == NULL)
|
|
|
|
{
|
2010-09-09 22:30:48 +00:00
|
|
|
fprintf(stderr, "Cannot find GLFW window structure for KeyPress event\n");
|
2010-09-09 22:06:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Translate and report key press
|
2012-08-12 13:57:52 +00:00
|
|
|
_glfwInputKey(window, translateKey(event->xkey.keycode), GLFW_PRESS);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Translate and report character input
|
2012-08-12 13:57:52 +00:00
|
|
|
_glfwInputChar(window, translateChar(&event->xkey));
|
2010-09-08 13:51:25 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case KeyRelease:
|
|
|
|
{
|
|
|
|
// A keyboard key was released
|
2012-08-12 13:57:52 +00:00
|
|
|
window = findWindow(event->xkey.window);
|
2010-09-09 22:06:23 +00:00
|
|
|
if (window == NULL)
|
|
|
|
{
|
2010-09-09 22:30:48 +00:00
|
|
|
fprintf(stderr, "Cannot find GLFW window structure for KeyRelease event\n");
|
2010-09-09 22:06:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Do not report key releases for key repeats. For key repeats we
|
|
|
|
// will get KeyRelease/KeyPress pairs with similar or identical
|
|
|
|
// time stamps. User selected key repeat filtering is handled in
|
2011-03-04 14:49:05 +00:00
|
|
|
// _glfwInputKey/_glfwInputChar.
|
2010-09-09 16:15:32 +00:00
|
|
|
if (XEventsQueued(_glfwLibrary.X11.display, QueuedAfterReading))
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
XEvent nextEvent;
|
2010-09-09 16:15:32 +00:00
|
|
|
XPeekEvent(_glfwLibrary.X11.display, &nextEvent);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-08 13:51:25 +00:00
|
|
|
if (nextEvent.type == KeyPress &&
|
2012-08-12 13:57:52 +00:00
|
|
|
nextEvent.xkey.window == event->xkey.window &&
|
|
|
|
nextEvent.xkey.keycode == event->xkey.keycode)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// This last check is a hack to work around key repeats
|
|
|
|
// leaking through due to some sort of time drift
|
|
|
|
// 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)
|
2012-08-12 13:57:52 +00:00
|
|
|
if ((nextEvent.xkey.time - event->xkey.time) < 20)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Do not report anything for this event
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Translate and report key release
|
2012-08-12 13:57:52 +00:00
|
|
|
_glfwInputKey(window, translateKey(event->xkey.keycode), GLFW_RELEASE);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case ButtonPress:
|
|
|
|
{
|
|
|
|
// A mouse button was pressed or a scrolling event occurred
|
2012-08-12 13:57:52 +00:00
|
|
|
window = findWindow(event->xbutton.window);
|
2010-09-09 22:06:23 +00:00
|
|
|
if (window == NULL)
|
|
|
|
{
|
2010-09-09 22:30:48 +00:00
|
|
|
fprintf(stderr, "Cannot find GLFW window structure for ButtonPress event\n");
|
2010-09-09 22:06:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-08-12 13:57:52 +00:00
|
|
|
if (event->xbutton.button == Button1)
|
2010-09-09 16:15:32 +00:00
|
|
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_LEFT, GLFW_PRESS);
|
2012-08-12 13:57:52 +00:00
|
|
|
else if (event->xbutton.button == Button2)
|
2010-09-09 16:15:32 +00:00
|
|
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_MIDDLE, GLFW_PRESS);
|
2012-08-12 13:57:52 +00:00
|
|
|
else if (event->xbutton.button == Button3)
|
2010-09-09 16:15:32 +00:00
|
|
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_RIGHT, GLFW_PRESS);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// XFree86 3.3.2 and later translates mouse wheel up/down into
|
|
|
|
// mouse button 4 & 5 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);
|
2010-09-27 00:09:54 +00:00
|
|
|
|
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);
|
2012-08-12 13:57:52 +00:00
|
|
|
else if (event->xbutton.button == Button7)
|
2012-03-28 19:54:09 +00:00
|
|
|
_glfwInputScroll(window, 1.0, 0.0);
|
2010-09-27 00:09:54 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case ButtonRelease:
|
|
|
|
{
|
|
|
|
// A mouse button was released
|
2012-08-12 13:57:52 +00:00
|
|
|
window = findWindow(event->xbutton.window);
|
2010-09-09 22:06:23 +00:00
|
|
|
if (window == NULL)
|
|
|
|
{
|
2010-09-09 22:30:48 +00:00
|
|
|
fprintf(stderr, "Cannot find GLFW window structure for ButtonRelease event\n");
|
2010-09-09 22:06:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
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,
|
2010-09-08 13:51:25 +00:00
|
|
|
GLFW_RELEASE);
|
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,
|
2010-09-08 13:51:25 +00:00
|
|
|
GLFW_RELEASE);
|
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,
|
2010-09-08 13:51:25 +00:00
|
|
|
GLFW_RELEASE);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-01-30 21:18:05 +00:00
|
|
|
case EnterNotify:
|
|
|
|
{
|
2012-06-22 11:53:02 +00:00
|
|
|
// The cursor entered the window
|
2012-08-12 13:57:52 +00:00
|
|
|
window = findWindow(event->xcrossing.window);
|
2012-01-30 21:18:05 +00:00
|
|
|
if (window == NULL)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Cannot find GLFW window structure for EnterNotify event\n");
|
|
|
|
return;
|
|
|
|
}
|
2012-01-30 21:32:14 +00:00
|
|
|
|
|
|
|
if (window->cursorMode == GLFW_CURSOR_HIDDEN)
|
2012-06-22 11:53:02 +00:00
|
|
|
hideCursor(window);
|
2012-01-30 21:32:14 +00:00
|
|
|
|
2012-01-30 21:59:38 +00:00
|
|
|
_glfwInputCursorEnter(window, GL_TRUE);
|
2012-01-30 21:18:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LeaveNotify:
|
|
|
|
{
|
2012-06-22 11:53:02 +00:00
|
|
|
// The cursor left the window
|
2012-08-12 13:57:52 +00:00
|
|
|
window = findWindow(event->xcrossing.window);
|
2012-01-30 21:18:05 +00:00
|
|
|
if (window == NULL)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Cannot find GLFW window structure for LeaveNotify event\n");
|
|
|
|
return;
|
|
|
|
}
|
2012-01-30 21:32:14 +00:00
|
|
|
|
2012-01-30 21:44:41 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_HIDDEN)
|
2012-06-22 11:53:02 +00:00
|
|
|
showCursor(window);
|
2012-01-30 21:32:14 +00:00
|
|
|
|
2012-01-30 21:59:38 +00:00
|
|
|
_glfwInputCursorEnter(window, GL_FALSE);
|
2012-01-30 21:18:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
case MotionNotify:
|
|
|
|
{
|
2012-06-22 11:53:02 +00:00
|
|
|
// The cursor was moved
|
2012-08-12 13:57:52 +00:00
|
|
|
window = findWindow(event->xmotion.window);
|
2010-09-09 22:06:23 +00:00
|
|
|
if (window == NULL)
|
|
|
|
{
|
2010-09-09 22:30:48 +00:00
|
|
|
fprintf(stderr, "Cannot find GLFW window structure for MotionNotify event\n");
|
2010-09-09 22:06:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-08-12 13:57:52 +00:00
|
|
|
if (event->xmotion.x != window->X11.cursorPosX ||
|
|
|
|
event->xmotion.y != window->X11.cursorPosY)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-06-22 11:53:02 +00:00
|
|
|
// The cursor was moved and we didn't do it
|
2011-10-09 15:10:40 +00:00
|
|
|
int x, y;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-09-06 11:55:29 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_CAPTURED)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-09-06 11:55:29 +00:00
|
|
|
if (_glfwLibrary.activeWindow != window)
|
|
|
|
break;
|
|
|
|
|
2012-08-12 13:57:52 +00:00
|
|
|
x = event->xmotion.x - window->X11.cursorPosX;
|
|
|
|
y = event->xmotion.y - window->X11.cursorPosY;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-08-12 13:57:52 +00:00
|
|
|
x = event->xmotion.x;
|
|
|
|
y = event->xmotion.y;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2012-08-12 13:57:52 +00:00
|
|
|
window->X11.cursorPosX = event->xmotion.x;
|
|
|
|
window->X11.cursorPosY = event->xmotion.y;
|
2011-09-06 11:55:29 +00:00
|
|
|
window->X11.cursorCentered = GL_FALSE;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-10-09 15:10:40 +00:00
|
|
|
_glfwInputCursorMotion(window, x, y);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2011-09-06 11:55:29 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case ConfigureNotify:
|
|
|
|
{
|
2010-09-09 22:06:23 +00:00
|
|
|
// The window configuration changed somehow
|
2012-08-12 13:57:52 +00:00
|
|
|
window = findWindow(event->xconfigure.window);
|
2010-09-09 22:06:23 +00:00
|
|
|
if (window == NULL)
|
|
|
|
{
|
2010-09-09 22:30:48 +00:00
|
|
|
fprintf(stderr, "Cannot find GLFW window structure for ConfigureNotify event\n");
|
2010-09-09 22:06:23 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-09 15:10:40 +00:00
|
|
|
_glfwInputWindowSize(window,
|
2012-08-12 13:57:52 +00:00
|
|
|
event->xconfigure.width,
|
|
|
|
event->xconfigure.height);
|
2010-09-14 01:53:22 +00:00
|
|
|
|
2011-10-09 15:10:40 +00:00
|
|
|
_glfwInputWindowPos(window,
|
2012-08-12 13:57:52 +00:00
|
|
|
event->xconfigure.x,
|
|
|
|
event->xconfigure.y);
|
2010-09-14 01:53:22 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case ClientMessage:
|
|
|
|
{
|
2010-09-09 22:06:23 +00:00
|
|
|
// Custom client message, probably from the window manager
|
2012-08-12 13:57:52 +00:00
|
|
|
window = findWindow(event->xclient.window);
|
2010-09-09 22:06:23 +00:00
|
|
|
if (window == NULL)
|
|
|
|
{
|
2010-09-09 22:30:48 +00:00
|
|
|
fprintf(stderr, "Cannot find GLFW window structure for ClientMessage event\n");
|
2010-09-09 22:06:23 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-08-12 13:57:52 +00:00
|
|
|
if ((Atom) event->xclient.data.l[0] == _glfwLibrary.X11.wmDeleteWindow)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// The window manager was asked to close the window, for example by
|
|
|
|
// the user pressing a 'close' window decoration button
|
|
|
|
|
2012-08-10 11:31:15 +00:00
|
|
|
_glfwInputWindowCloseRequest(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2012-04-05 15:29:08 +00:00
|
|
|
else if (_glfwLibrary.X11.wmPing != None &&
|
2012-08-12 13:57:52 +00:00
|
|
|
(Atom) event->xclient.data.l[0] == _glfwLibrary.X11.wmPing)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// The window manager is pinging us to make sure we are still
|
|
|
|
// responding to events
|
|
|
|
|
2012-08-12 13:57:52 +00:00
|
|
|
event->xclient.window = _glfwLibrary.X11.root;
|
2010-09-09 16:15:32 +00:00
|
|
|
XSendEvent(_glfwLibrary.X11.display,
|
2012-08-12 13:57:52 +00:00
|
|
|
event->xclient.window,
|
2010-09-08 13:51:25 +00:00
|
|
|
False,
|
|
|
|
SubstructureNotifyMask | SubstructureRedirectMask,
|
2012-08-12 13:57:52 +00:00
|
|
|
event);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case MapNotify:
|
|
|
|
{
|
|
|
|
// The window was mapped
|
2012-08-12 13:57:52 +00:00
|
|
|
window = findWindow(event->xmap.window);
|
2010-09-09 22:06:23 +00:00
|
|
|
if (window == NULL)
|
|
|
|
{
|
2010-09-09 22:30:48 +00:00
|
|
|
fprintf(stderr, "Cannot find GLFW window structure for MapNotify event\n");
|
2010-09-09 22:06:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-10-09 15:10:40 +00:00
|
|
|
_glfwInputWindowIconify(window, GL_FALSE);
|
2010-09-07 15:34:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case UnmapNotify:
|
|
|
|
{
|
|
|
|
// The window was unmapped
|
2012-08-12 13:57:52 +00:00
|
|
|
window = findWindow(event->xmap.window);
|
2010-09-09 22:06:23 +00:00
|
|
|
if (window == NULL)
|
|
|
|
{
|
2010-09-09 22:30:48 +00:00
|
|
|
fprintf(stderr, "Cannot find GLFW window structure for UnmapNotify event\n");
|
2010-09-09 22:06:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-10-09 15:10:40 +00:00
|
|
|
_glfwInputWindowIconify(window, GL_TRUE);
|
2010-09-07 15:34:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case FocusIn:
|
|
|
|
{
|
|
|
|
// The window gained focus
|
2012-08-12 13:57:52 +00:00
|
|
|
window = findWindow(event->xfocus.window);
|
2010-09-09 22:06:23 +00:00
|
|
|
if (window == NULL)
|
|
|
|
{
|
2010-09-09 22:30:48 +00:00
|
|
|
fprintf(stderr, "Cannot find GLFW window structure for FocusIn event\n");
|
2010-09-09 22:06:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-19 00:49:42 +00:00
|
|
|
_glfwInputWindowFocus(window, GL_TRUE);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-09-06 11:55:29 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_CAPTURED)
|
2012-06-22 11:53:02 +00:00
|
|
|
captureCursor(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case FocusOut:
|
|
|
|
{
|
|
|
|
// The window lost focus
|
2012-08-12 13:57:52 +00:00
|
|
|
window = findWindow(event->xfocus.window);
|
2010-09-09 22:06:23 +00:00
|
|
|
if (window == NULL)
|
|
|
|
{
|
2010-09-09 22:30:48 +00:00
|
|
|
fprintf(stderr, "Cannot find GLFW window structure for FocusOut event\n");
|
2010-09-09 22:06:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-19 00:49:42 +00:00
|
|
|
_glfwInputWindowFocus(window, GL_FALSE);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-09-06 11:55:29 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_CAPTURED)
|
2012-06-22 11:53:02 +00:00
|
|
|
showCursor(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case Expose:
|
|
|
|
{
|
|
|
|
// The window's contents was damaged
|
2012-08-12 13:57:52 +00:00
|
|
|
window = findWindow(event->xexpose.window);
|
2010-09-09 22:06:23 +00:00
|
|
|
if (window == NULL)
|
|
|
|
{
|
2010-09-09 22:30:48 +00:00
|
|
|
fprintf(stderr, "Cannot find GLFW window structure for Expose event\n");
|
2010-09-09 22:06:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-10-09 19:12:13 +00:00
|
|
|
_glfwInputWindowDamage(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-04-11 21:32:50 +00:00
|
|
|
case SelectionClear:
|
|
|
|
{
|
|
|
|
// The ownership of the selection was lost
|
|
|
|
|
|
|
|
free(_glfwLibrary.X11.selection.string);
|
|
|
|
_glfwLibrary.X11.selection.string = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-09-21 14:43:28 +00:00
|
|
|
case SelectionNotify:
|
|
|
|
{
|
2012-04-11 21:32:50 +00:00
|
|
|
// The selection conversion status is available
|
2011-09-21 14:43:28 +00:00
|
|
|
|
2012-08-12 13:57:52 +00:00
|
|
|
XSelectionEvent* request = &event->xselection;
|
2012-04-11 21:32:50 +00:00
|
|
|
|
|
|
|
if (_glfwReadSelection(request))
|
|
|
|
_glfwLibrary.X11.selection.status = _GLFW_CONVERSION_SUCCEEDED;
|
|
|
|
else
|
|
|
|
_glfwLibrary.X11.selection.status = _GLFW_CONVERSION_FAILED;
|
2011-09-21 14:43:28 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-09-22 11:03:45 +00:00
|
|
|
case SelectionRequest:
|
|
|
|
{
|
2012-04-11 21:32:50 +00:00
|
|
|
// The contents of the selection was requested
|
|
|
|
|
2012-08-12 13:57:52 +00:00
|
|
|
XSelectionRequestEvent* request = &event->xselectionrequest;
|
2011-09-22 11:09:01 +00:00
|
|
|
|
2011-09-22 11:03:45 +00:00
|
|
|
XEvent response;
|
2012-04-11 21:32:50 +00:00
|
|
|
memset(&response, 0, sizeof(response));
|
|
|
|
|
|
|
|
response.xselection.property = _glfwWriteSelection(request);
|
2011-09-22 11:03:45 +00:00
|
|
|
response.xselection.type = SelectionNotify;
|
|
|
|
response.xselection.display = request->display;
|
|
|
|
response.xselection.requestor = request->requestor;
|
|
|
|
response.xselection.selection = request->selection;
|
|
|
|
response.xselection.target = request->target;
|
|
|
|
response.xselection.time = request->time;
|
2011-09-22 11:09:01 +00:00
|
|
|
|
2012-04-11 21:32:50 +00:00
|
|
|
XSendEvent(_glfwLibrary.X11.display,
|
|
|
|
request->requestor,
|
|
|
|
False, 0, &response);
|
2011-09-22 11:03:45 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
case DestroyNotify:
|
2010-09-09 22:06:23 +00:00
|
|
|
return;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
2010-09-08 13:51:25 +00:00
|
|
|
#if defined(_GLFW_HAS_XRANDR)
|
2012-08-12 13:57:52 +00:00
|
|
|
switch (event->type - _glfwLibrary.X11.RandR.eventBase)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
case RRScreenChangeNotify:
|
|
|
|
{
|
|
|
|
// Show XRandR that we really care
|
2012-08-12 13:57:52 +00:00
|
|
|
XRRUpdateConfiguration(event);
|
2010-09-07 15:34:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-10-14 13:13:51 +00:00
|
|
|
#endif /*_GLFW_HAS_XRANDR*/
|
2010-09-07 15:34:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-15 14:44:43 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW platform API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Here is where the window is created, and
|
|
|
|
// the OpenGL rendering context is created
|
|
|
|
//========================================================================
|
|
|
|
|
2012-08-06 15:56:41 +00:00
|
|
|
int _glfwPlatformCreateWindow(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
|
|
|
const _GLFWfbconfig* fbconfig)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-11-02 15:56:34 +00:00
|
|
|
window->refreshRate = wndconfig->refreshRate;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-04-23 10:48:57 +00:00
|
|
|
if (!_glfwCreateContext(window, wndconfig, fbconfig))
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
|
2010-09-13 21:42:51 +00:00
|
|
|
if (!createWindow(window, wndconfig))
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
|
2010-09-08 13:51:25 +00:00
|
|
|
if (wndconfig->mode == GLFW_FULLSCREEN)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-08 13:51:25 +00:00
|
|
|
#if defined(_GLFW_HAS_XRANDR)
|
2010-09-07 15:34:51 +00:00
|
|
|
// Request screen change notifications
|
2010-10-13 21:05:17 +00:00
|
|
|
if (_glfwLibrary.X11.RandR.available)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-09 16:15:32 +00:00
|
|
|
XRRSelectInput(_glfwLibrary.X11.display,
|
2010-09-11 13:34:03 +00:00
|
|
|
window->X11.handle,
|
2010-09-08 13:51:25 +00:00
|
|
|
RRScreenChangeNotifyMask);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2010-10-14 13:13:51 +00:00
|
|
|
#endif /*_GLFW_HAS_XRANDR*/
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
enterFullscreenMode(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Retrieve and set initial cursor position
|
|
|
|
{
|
2010-09-09 16:15:32 +00:00
|
|
|
Window cursorWindow, cursorRoot;
|
2010-09-07 15:34:51 +00:00
|
|
|
int windowX, windowY, rootX, rootY;
|
|
|
|
unsigned int mask;
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
XQueryPointer(_glfwLibrary.X11.display,
|
2010-09-11 13:34:03 +00:00
|
|
|
window->X11.handle,
|
2010-09-09 16:15:32 +00:00
|
|
|
&cursorRoot,
|
|
|
|
&cursorWindow,
|
2010-09-08 13:51:25 +00:00
|
|
|
&rootX, &rootY,
|
|
|
|
&windowX, &windowY,
|
|
|
|
&mask);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// TODO: Probably check for some corner cases here.
|
|
|
|
|
2011-10-13 13:20:59 +00:00
|
|
|
window->cursorPosX = windowX;
|
|
|
|
window->cursorPosY = windowY;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Properly kill the window/video display
|
|
|
|
//========================================================================
|
|
|
|
|
2012-08-06 15:56:41 +00:00
|
|
|
void _glfwPlatformDestroyWindow(_GLFWwindow* window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-09 16:15:32 +00:00
|
|
|
if (window->mode == GLFW_FULLSCREEN)
|
|
|
|
leaveFullscreenMode(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-04-23 10:48:57 +00:00
|
|
|
_glfwDestroyContext(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-11 13:34:03 +00:00
|
|
|
if (window->X11.handle)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-11 13:34:03 +00:00
|
|
|
XUnmapWindow(_glfwLibrary.X11.display, window->X11.handle);
|
|
|
|
XDestroyWindow(_glfwLibrary.X11.display, window->X11.handle);
|
|
|
|
window->X11.handle = (Window) 0;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
if (window->X11.colormap)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-09 16:15:32 +00:00
|
|
|
XFreeColormap(_glfwLibrary.X11.display, window->X11.colormap);
|
|
|
|
window->X11.colormap = (Colormap) 0;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Set the window title
|
|
|
|
//========================================================================
|
|
|
|
|
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:20:14 +00:00
|
|
|
Atom type = XInternAtom(_glfwLibrary.X11.display, "UTF8_STRING", False);
|
|
|
|
|
2012-02-02 16:01:11 +00:00
|
|
|
#if defined(X_HAVE_UTF8_STRING)
|
|
|
|
Xutf8SetWMProperties(_glfwLibrary.X11.display,
|
|
|
|
window->X11.handle,
|
|
|
|
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
|
|
|
|
XmbSetWMProperties(_glfwLibrary.X11.display,
|
|
|
|
window->X11.handle,
|
|
|
|
title, title,
|
|
|
|
NULL, 0,
|
|
|
|
NULL, NULL, NULL);
|
|
|
|
#endif
|
2012-02-01 13:43:42 +00:00
|
|
|
|
2012-04-05 15:29:08 +00:00
|
|
|
if (_glfwLibrary.X11.wmName != None)
|
2012-01-31 23:10:17 +00:00
|
|
|
{
|
|
|
|
XChangeProperty(_glfwLibrary.X11.display, window->X11.handle,
|
2012-04-05 15:29:08 +00:00
|
|
|
_glfwLibrary.X11.wmName, type, 8,
|
2012-02-01 13:43:42 +00:00
|
|
|
PropModeReplace,
|
|
|
|
(unsigned char*) title, strlen(title));
|
2012-01-31 23:10:17 +00:00
|
|
|
}
|
2012-02-02 16:20:14 +00:00
|
|
|
|
2012-04-05 15:29:08 +00:00
|
|
|
if (_glfwLibrary.X11.wmIconName != None)
|
2012-02-02 16:20:14 +00:00
|
|
|
{
|
|
|
|
XChangeProperty(_glfwLibrary.X11.display, window->X11.handle,
|
2012-04-05 15:29:08 +00:00
|
|
|
_glfwLibrary.X11.wmIconName, type, 8,
|
2012-02-02 16:20:14 +00:00
|
|
|
PropModeReplace,
|
|
|
|
(unsigned char*) title, strlen(title));
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Set the window size
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-08 02:15:49 +00:00
|
|
|
int mode = 0, rate, sizeChanged = GL_FALSE;
|
2010-09-08 13:58:43 +00:00
|
|
|
XSizeHints* sizehints;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
rate = window->refreshRate;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
if (window->mode == GLFW_FULLSCREEN)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Get the closest matching video mode for the specified window size
|
2012-04-05 14:14:01 +00:00
|
|
|
mode = _glfwGetClosestVideoMode(&width, &height, &rate);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2011-11-02 15:56:34 +00:00
|
|
|
if (!window->resizable)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Update window size restrictions to match new window size
|
|
|
|
|
|
|
|
sizehints = XAllocSizeHints();
|
|
|
|
sizehints->flags = 0;
|
|
|
|
|
|
|
|
sizehints->min_width = sizehints->max_width = width;
|
|
|
|
sizehints->min_height = sizehints->max_height = height;
|
|
|
|
|
2010-09-11 13:34:03 +00:00
|
|
|
XSetWMNormalHints(_glfwLibrary.X11.display, window->X11.handle, sizehints);
|
2010-09-08 13:51:25 +00:00
|
|
|
XFree(sizehints);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Change window size before changing fullscreen mode?
|
2010-09-09 16:15:32 +00:00
|
|
|
if (window->mode == GLFW_FULLSCREEN && (width > window->width))
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-11 13:34:03 +00:00
|
|
|
XResizeWindow(_glfwLibrary.X11.display, window->X11.handle, width, height);
|
2010-09-07 15:34:51 +00:00
|
|
|
sizeChanged = GL_TRUE;
|
|
|
|
}
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
if (window->mode == GLFW_FULLSCREEN)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Change video mode, keeping current refresh rate
|
2012-04-05 14:14:01 +00:00
|
|
|
_glfwSetVideoModeMODE(mode, window->refreshRate);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set window size (if not already changed)
|
2010-09-08 13:51:25 +00:00
|
|
|
if (!sizeChanged)
|
2010-09-11 13:34:03 +00:00
|
|
|
XResizeWindow(_glfwLibrary.X11.display, window->X11.handle, width, height);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Set the window position.
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwPlatformSetWindowPos(_GLFWwindow* window, int x, int y)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-11 13:34:03 +00:00
|
|
|
XMoveWindow(_glfwLibrary.X11.display, window->X11.handle, x, y);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Window iconification
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwPlatformIconifyWindow(_GLFWwindow* window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-09 16:15:32 +00:00
|
|
|
if (window->X11.overrideRedirect)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// We can't iconify/restore override-redirect windows, as that's
|
|
|
|
// performed by the window manager
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-10-27 15:53:24 +00:00
|
|
|
XIconifyWindow(_glfwLibrary.X11.display,
|
|
|
|
window->X11.handle,
|
|
|
|
_glfwLibrary.X11.screen);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Window un-iconification
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwPlatformRestoreWindow(_GLFWwindow* window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-09 16:15:32 +00:00
|
|
|
if (window->X11.overrideRedirect)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// We can't iconify/restore override-redirect windows, as that's
|
|
|
|
// performed by the window manager
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-09-11 13:34:03 +00:00
|
|
|
XMapWindow(_glfwLibrary.X11.display, window->X11.handle);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Read back framebuffer parameters from the context
|
|
|
|
//========================================================================
|
|
|
|
|
2012-08-03 13:21:49 +00:00
|
|
|
void _glfwPlatformRefreshWindowParams(_GLFWwindow* window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Retrieve refresh rate if possible
|
2010-10-13 21:05:17 +00:00
|
|
|
if (_glfwLibrary.X11.RandR.available)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-10-14 13:13:51 +00:00
|
|
|
#if defined(_GLFW_HAS_XRANDR)
|
2012-07-30 18:15:34 +00:00
|
|
|
XRRScreenConfiguration* sc;
|
|
|
|
|
2010-09-09 21:37:50 +00:00
|
|
|
sc = XRRGetScreenInfo(_glfwLibrary.X11.display, _glfwLibrary.X11.root);
|
2010-09-09 16:15:32 +00:00
|
|
|
window->refreshRate = XRRConfigCurrentRate(sc);
|
2010-09-08 13:51:25 +00:00
|
|
|
XRRFreeScreenConfigInfo(sc);
|
2010-10-14 13:13:51 +00:00
|
|
|
#endif /*_GLFW_HAS_XRANDR*/
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2010-10-14 13:13:51 +00:00
|
|
|
else if (_glfwLibrary.X11.VidMode.available)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-10-14 13:13:51 +00:00
|
|
|
#if defined(_GLFW_HAS_XF86VIDMODE)
|
2012-07-30 18:15:34 +00:00
|
|
|
XF86VidModeModeLine modeline;
|
|
|
|
int dotclock;
|
|
|
|
float pixels_per_second, pixels_per_frame;
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
// Use the XF86VidMode extension to get current video mode
|
2011-05-21 15:34:17 +00:00
|
|
|
XF86VidModeGetModeLine(_glfwLibrary.X11.display,
|
|
|
|
_glfwLibrary.X11.screen,
|
2010-09-08 13:51:25 +00:00
|
|
|
&dotclock, &modeline);
|
2010-09-07 15:34:51 +00:00
|
|
|
pixels_per_second = 1000.0f * (float) dotclock;
|
|
|
|
pixels_per_frame = (float) modeline.htotal * modeline.vtotal;
|
2011-11-02 16:34:27 +00:00
|
|
|
window->refreshRate = (int) (pixels_per_second / pixels_per_frame + 0.5);
|
2010-10-14 13:13:51 +00:00
|
|
|
#endif /*_GLFW_HAS_XF86VIDMODE*/
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2011-03-07 13:58:10 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// Zero means unknown according to the GLFW spec
|
|
|
|
window->refreshRate = 0;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Poll for new window and input events
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-08 13:51:25 +00:00
|
|
|
void _glfwPlatformPollEvents(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-08-12 13:57:52 +00:00
|
|
|
XEvent event;
|
|
|
|
while(XCheckMaskEvent(_glfwLibrary.X11.display, ~0, &event) ||
|
|
|
|
XCheckTypedEvent(_glfwLibrary.X11.display, ClientMessage, &event))
|
|
|
|
processSingleEvent(&event);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-08-12 13:57:52 +00:00
|
|
|
#if 0
|
2011-09-06 11:55:29 +00:00
|
|
|
// Did the cursor move in an active window that has captured the cursor
|
2012-08-12 13:57:52 +00:00
|
|
|
_GLFWwindow* window;
|
2011-09-06 11:55:29 +00:00
|
|
|
window = _glfwLibrary.activeWindow;
|
2010-09-27 00:09:54 +00:00
|
|
|
if (window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-09-06 11:55:29 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_CAPTURED &&
|
|
|
|
!window->X11.cursorCentered)
|
2010-09-09 22:06:23 +00:00
|
|
|
{
|
2012-06-22 11:53:02 +00:00
|
|
|
_glfwPlatformSetCursorPos(window,
|
|
|
|
window->width / 2,
|
|
|
|
window->height / 2);
|
2011-09-06 11:55:29 +00:00
|
|
|
window->X11.cursorCentered = GL_TRUE;
|
2012-01-20 01:23:27 +00:00
|
|
|
|
|
|
|
// NOTE: This is a temporary fix. It works as long as you use
|
|
|
|
// offsets accumulated over the course of a frame, instead of
|
|
|
|
// performing the necessary actions per callback call.
|
|
|
|
XFlush( _glfwLibrary.X11.display );
|
2010-09-09 22:06:23 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2012-08-12 13:57:52 +00:00
|
|
|
#endif
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2012-08-12 13:57:52 +00:00
|
|
|
#include <sys/select.h>
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Wait for new window and input events
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-08 13:51:25 +00:00
|
|
|
void _glfwPlatformWaitEvents(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-08-12 13:57:52 +00:00
|
|
|
fd_set set;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
fd = ConnectionNumber(_glfwLibrary.X11.display);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-08-12 13:57:52 +00:00
|
|
|
FD_ZERO(&set);
|
|
|
|
FD_SET(fd, &set);
|
|
|
|
|
|
|
|
XFlush(_glfwLibrary.X11.display);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-08-12 13:57:52 +00:00
|
|
|
if(select(fd+1, &set, NULL, NULL, NULL) > 0)
|
|
|
|
_glfwPlatformPollEvents();
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
2012-06-22 11:53:02 +00:00
|
|
|
// Set physical cursor position
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2012-06-22 11:53:02 +00:00
|
|
|
void _glfwPlatformSetCursorPos(_GLFWwindow* window, int x, int y)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-09-06 11:55:29 +00:00
|
|
|
// Store the new position so we can recognise it later
|
|
|
|
window->X11.cursorPosX = x;
|
|
|
|
window->X11.cursorPosY = y;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-09-06 11:55:29 +00:00
|
|
|
XWarpPointer(_glfwLibrary.X11.display, None, window->X11.handle, 0,0,0,0, x, y);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
2012-06-22 11:53:02 +00:00
|
|
|
// Set physical cursor mode
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2011-09-06 11:55:29 +00:00
|
|
|
void _glfwPlatformSetCursorMode(_GLFWwindow* window, int mode)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-09-06 11:55:29 +00:00
|
|
|
switch (mode)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-09-06 11:55:29 +00:00
|
|
|
case GLFW_CURSOR_NORMAL:
|
2012-06-22 11:53:02 +00:00
|
|
|
showCursor(window);
|
2011-09-06 11:55:29 +00:00
|
|
|
break;
|
|
|
|
case GLFW_CURSOR_HIDDEN:
|
2012-06-22 11:53:02 +00:00
|
|
|
hideCursor(window);
|
2011-09-06 11:55:29 +00:00
|
|
|
break;
|
|
|
|
case GLFW_CURSOR_CAPTURED:
|
2012-06-22 11:53:02 +00:00
|
|
|
captureCursor(window);
|
2011-09-06 11:55:29 +00:00
|
|
|
break;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|