glfw/lib/x11/x11_window.c

1812 lines
60 KiB
C
Raw Normal View History

2010-09-07 15:34:51 +00:00
//========================================================================
// GLFW - An OpenGL framework
// 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"
#include <limits.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
2010-09-07 15:34:51 +00:00
/* Define GLX 1.4 FSAA tokens if not already defined */
#ifndef GLX_VERSION_1_4
#define GLX_SAMPLE_BUFFERS 100000
#define GLX_SAMPLES 100001
#endif /*GLX_VERSION_1_4*/
// Action for EWMH client messages
#define _NET_WM_STATE_REMOVE 0
#define _NET_WM_STATE_ADD 1
#define _NET_WM_STATE_TOGGLE 2
//************************************************************************
//**** GLFW internal functions ****
//************************************************************************
//========================================================================
// Checks whether the event is a MapNotify for the specified window
//========================================================================
2010-09-08 13:58:43 +00:00
static Bool isMapNotify(Display* d, XEvent* e, char* arg)
2010-09-07 15:34:51 +00:00
{
return (e->type == MapNotify) && (e->xmap.window == (Window)arg);
}
//========================================================================
// Retrieve a single window property of the specified type
// Inspired by fghGetWindowProperty from freeglut
//========================================================================
2010-09-08 13:51:25 +00:00
static unsigned long getWindowProperty(Window window,
Atom property,
Atom type,
unsigned char** value)
2010-09-07 15:34:51 +00:00
{
Atom actualType;
int actualFormat;
unsigned long itemCount, bytesAfter;
2010-09-08 13:51:25 +00:00
XGetWindowProperty(_glfwLibrary.display,
window,
property,
0,
LONG_MAX,
False,
type,
&actualType,
&actualFormat,
&itemCount,
&bytesAfter,
value);
if (actualType != type)
2010-09-07 15:34:51 +00:00
return 0;
return itemCount;
}
//========================================================================
// Check whether the specified atom is supported
//========================================================================
2010-09-08 13:51:25 +00:00
static Atom getSupportedAtom(Atom* supportedAtoms,
unsigned long atomCount,
const char* atomName)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
Atom atom = XInternAtom(_glfwLibrary.display, atomName, True);
if (atom != None)
2010-09-07 15:34:51 +00:00
{
unsigned long i;
2010-09-08 13:51:25 +00:00
for (i = 0; i < atomCount; i++)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
if (supportedAtoms[i] == atom)
2010-09-07 15:34:51 +00:00
return atom;
}
}
return None;
}
//========================================================================
// Check whether the running window manager is EWMH-compliant
//========================================================================
2010-09-08 13:51:25 +00:00
static GLboolean checkForEWMH(void)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:58:43 +00:00
Window* windowFromRoot = NULL;
Window* windowFromChild = NULL;
2010-09-07 15:34:51 +00:00
// Hey kids; let's see if the window manager supports EWMH!
// First we need a couple of atoms, which should already be there
2010-09-08 13:51:25 +00:00
Atom supportingWmCheck = XInternAtom(_glfwLibrary.display,
"_NET_SUPPORTING_WM_CHECK",
True);
Atom wmSupported = XInternAtom(_glfwLibrary.display,
"_NET_SUPPORTED",
True);
if (supportingWmCheck == None || wmSupported == None)
2010-09-07 15:34:51 +00:00
return GL_FALSE;
// Then we look for the _NET_SUPPORTING_WM_CHECK property of the root window
2010-09-08 13:51:25 +00:00
if (getWindowProperty(_glfwWin.root,
supportingWmCheck,
XA_WINDOW,
(unsigned char**) &windowFromRoot) != 1)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
XFree(windowFromRoot);
2010-09-07 15:34:51 +00:00
return GL_FALSE;
}
// It should be the ID of a child window (of the root)
// Then we look for the same property on the child window
2010-09-08 13:51:25 +00:00
if (getWindowProperty(*windowFromRoot,
supportingWmCheck,
XA_WINDOW,
(unsigned char**) &windowFromChild) != 1)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
XFree(windowFromRoot);
XFree(windowFromChild);
2010-09-07 15:34:51 +00:00
return GL_FALSE;
}
// It should be the ID of that same child window
2010-09-08 13:51:25 +00:00
if (*windowFromRoot != *windowFromChild)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
XFree(windowFromRoot);
XFree(windowFromChild);
2010-09-07 15:34:51 +00:00
return GL_FALSE;
}
2010-09-08 13:51:25 +00:00
XFree(windowFromRoot);
XFree(windowFromChild);
2010-09-07 15:34:51 +00:00
// We are now fairly sure that an EWMH-compliant window manager is running
2010-09-08 13:58:43 +00:00
Atom* supportedAtoms;
2010-09-07 15:34:51 +00:00
unsigned long atomCount;
// Now we need to check the _NET_SUPPORTED property of the root window
2010-09-08 13:51:25 +00:00
atomCount = getWindowProperty(_glfwWin.root,
wmSupported,
XA_ATOM,
(unsigned char**) &supportedAtoms);
2010-09-07 15:34:51 +00:00
// See which of the atoms we support that are supported by the WM
2010-09-08 13:51:25 +00:00
_glfwWin.wmState = getSupportedAtom(supportedAtoms,
atomCount,
"_NET_WM_STATE");
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
_glfwWin.wmStateFullscreen = getSupportedAtom(supportedAtoms,
atomCount,
"_NET_WM_STATE_FULLSCREEN");
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
_glfwWin.wmPing = getSupportedAtom(supportedAtoms,
atomCount,
"_NET_WM_PING");
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
_glfwWin.wmActiveWindow = getSupportedAtom(supportedAtoms,
atomCount,
"_NET_ACTIVE_WINDOW");
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
XFree(supportedAtoms);
2010-09-07 15:34:51 +00:00
return GL_TRUE;
}
//========================================================================
// 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
{
KeySym key, key_lc, key_uc;
// Try secondary keysym, for numeric keypad keys
// Note: This way we always force "NumLock = ON", which at least
// enables GLFW users to detect numeric keypad keys
2010-09-08 13:51:25 +00:00
key = XKeycodeToKeysym(_glfwLibrary.display, keycode, 1);
switch (key)
2010-09-07 15:34:51 +00:00
{
// Numeric keypad
case XK_KP_0: return GLFW_KEY_KP_0;
case XK_KP_1: return GLFW_KEY_KP_1;
case XK_KP_2: return GLFW_KEY_KP_2;
case XK_KP_3: return GLFW_KEY_KP_3;
case XK_KP_4: return GLFW_KEY_KP_4;
case XK_KP_5: return GLFW_KEY_KP_5;
case XK_KP_6: return GLFW_KEY_KP_6;
case XK_KP_7: return GLFW_KEY_KP_7;
case XK_KP_8: return GLFW_KEY_KP_8;
case XK_KP_9: return GLFW_KEY_KP_9;
case XK_KP_Separator:
case XK_KP_Decimal: return GLFW_KEY_KP_DECIMAL;
case XK_KP_Equal: return GLFW_KEY_KP_EQUAL;
case XK_KP_Enter: return GLFW_KEY_KP_ENTER;
default: break;
}
// Now try pimary keysym
2010-09-08 13:51:25 +00:00
key = XKeycodeToKeysym(_glfwLibrary.display, keycode, 0);
switch (key)
2010-09-07 15:34:51 +00:00
{
// Special keys (non character keys)
case XK_Escape: return GLFW_KEY_ESC;
case XK_Tab: return GLFW_KEY_TAB;
case XK_Shift_L: return GLFW_KEY_LSHIFT;
case XK_Shift_R: return GLFW_KEY_RSHIFT;
case XK_Control_L: return GLFW_KEY_LCTRL;
case XK_Control_R: return GLFW_KEY_RCTRL;
case XK_Meta_L:
case XK_Alt_L: return GLFW_KEY_LALT;
case XK_Mode_switch: // Mapped to Alt_R on many keyboards
case XK_Meta_R:
case XK_ISO_Level3_Shift: // AltGr on at least some machines
case XK_Alt_R: return GLFW_KEY_RALT;
case XK_Super_L: return GLFW_KEY_LSUPER;
case XK_Super_R: return GLFW_KEY_RSUPER;
case XK_Menu: return GLFW_KEY_MENU;
case XK_Num_Lock: return GLFW_KEY_KP_NUM_LOCK;
case XK_Caps_Lock: return GLFW_KEY_CAPS_LOCK;
case XK_Scroll_Lock: return GLFW_KEY_SCROLL_LOCK;
case XK_Pause: return GLFW_KEY_PAUSE;
case XK_KP_Delete:
case XK_Delete: return GLFW_KEY_DEL;
case XK_BackSpace: return GLFW_KEY_BACKSPACE;
case XK_Return: return GLFW_KEY_ENTER;
case XK_KP_Home:
case XK_Home: return GLFW_KEY_HOME;
case XK_KP_End:
case XK_End: return GLFW_KEY_END;
case XK_KP_Page_Up:
case XK_Page_Up: return GLFW_KEY_PAGEUP;
case XK_KP_Page_Down:
case XK_Page_Down: return GLFW_KEY_PAGEDOWN;
case XK_KP_Insert:
case XK_Insert: return GLFW_KEY_INSERT;
case XK_KP_Left:
case XK_Left: return GLFW_KEY_LEFT;
case XK_KP_Right:
case XK_Right: return GLFW_KEY_RIGHT;
case XK_KP_Down:
case XK_Down: return GLFW_KEY_DOWN;
case XK_KP_Up:
case XK_Up: return GLFW_KEY_UP;
case XK_F1: return GLFW_KEY_F1;
case XK_F2: return GLFW_KEY_F2;
case XK_F3: return GLFW_KEY_F3;
case XK_F4: return GLFW_KEY_F4;
case XK_F5: return GLFW_KEY_F5;
case XK_F6: return GLFW_KEY_F6;
case XK_F7: return GLFW_KEY_F7;
case XK_F8: return GLFW_KEY_F8;
case XK_F9: return GLFW_KEY_F9;
case XK_F10: return GLFW_KEY_F10;
case XK_F11: return GLFW_KEY_F11;
case XK_F12: return GLFW_KEY_F12;
case XK_F13: return GLFW_KEY_F13;
case XK_F14: return GLFW_KEY_F14;
case XK_F15: return GLFW_KEY_F15;
case XK_F16: return GLFW_KEY_F16;
case XK_F17: return GLFW_KEY_F17;
case XK_F18: return GLFW_KEY_F18;
case XK_F19: return GLFW_KEY_F19;
case XK_F20: return GLFW_KEY_F20;
case XK_F21: return GLFW_KEY_F21;
case XK_F22: return GLFW_KEY_F22;
case XK_F23: return GLFW_KEY_F23;
case XK_F24: return GLFW_KEY_F24;
case XK_F25: return GLFW_KEY_F25;
// Numeric keypad (should have been detected in secondary keysym!)
case XK_KP_Divide: return GLFW_KEY_KP_DIVIDE;
case XK_KP_Multiply: return GLFW_KEY_KP_MULTIPLY;
case XK_KP_Subtract: return GLFW_KEY_KP_SUBTRACT;
case XK_KP_Add: return GLFW_KEY_KP_ADD;
case XK_KP_Equal: return GLFW_KEY_KP_EQUAL;
case XK_KP_Enter: return GLFW_KEY_KP_ENTER;
// The rest (should be printable keys)
default:
// Make uppercase
2010-09-08 13:51:25 +00:00
XConvertCase(key, &key_lc, &key_uc);
2010-09-07 15:34:51 +00:00
key = key_uc;
// Valid ISO 8859-1 character?
2010-09-08 13:51:25 +00:00
if ((key >= 32 && key <= 126) || (key >= 160 && key <= 255))
2010-09-07 15:34:51 +00:00
return (int) key;
2010-09-07 15:34:51 +00:00
return GLFW_KEY_UNKNOWN;
}
}
//========================================================================
// 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 a blank cursor (for locked mouse mode)
//========================================================================
2010-09-08 13:58:43 +00:00
static Cursor createNULLCursor(Display* display, Window root)
2010-09-07 15:34:51 +00:00
{
Pixmap cursormask;
XGCValues xgc;
GC gc;
XColor col;
Cursor cursor;
2010-09-08 13:51:25 +00:00
cursormask = XCreatePixmap(display, root, 1, 1, 1);
2010-09-07 15:34:51 +00:00
xgc.function = GXclear;
2010-09-08 13:51:25 +00:00
gc = XCreateGC(display, cursormask, GCFunction, &xgc);
XFillRectangle(display, cursormask, gc, 0, 0, 1, 1);
2010-09-07 15:34:51 +00:00
col.pixel = 0;
col.red = 0;
col.flags = 4;
2010-09-08 13:51:25 +00:00
cursor = XCreatePixmapCursor(display, cursormask, cursormask,
&col,&col, 0,0);
XFreePixmap(display, cursormask);
XFreeGC(display, gc);
2010-09-07 15:34:51 +00:00
return cursor;
}
//========================================================================
// Returns the specified attribute of the specified GLXFBConfig
// NOTE: Do not call this unless we have found GLX 1.3+ or GLX_SGIX_fbconfig
//========================================================================
2010-09-08 13:51:25 +00:00
static int getFBConfigAttrib(GLXFBConfig fbconfig, int attrib)
2010-09-07 15:34:51 +00:00
{
int value;
2010-09-08 13:51:25 +00:00
if (_glfwWin.has_GLX_SGIX_fbconfig)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
_glfwWin.GetFBConfigAttribSGIX(_glfwLibrary.display,
fbconfig, attrib, &value);
2010-09-07 15:34:51 +00:00
}
else
2010-09-08 13:51:25 +00:00
glXGetFBConfigAttrib(_glfwLibrary.display, fbconfig, attrib, &value);
2010-09-07 15:34:51 +00:00
return value;
}
//========================================================================
// Return a list of available and usable framebuffer configs
//========================================================================
2010-09-08 13:58:43 +00:00
static _GLFWfbconfig* getFBConfigs(unsigned int* found)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:58:43 +00:00
GLXFBConfig* fbconfigs;
_GLFWfbconfig* result;
2010-09-07 15:34:51 +00:00
int i, count = 0;
*found = 0;
2010-09-08 13:51:25 +00:00
if (_glfwLibrary.glxMajor == 1 && _glfwLibrary.glxMinor < 3)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
if (!_glfwWin.has_GLX_SGIX_fbconfig)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
fprintf(stderr, "GLXFBConfigs are not supported by the X server\n");
2010-09-07 15:34:51 +00:00
return NULL;
}
}
2010-09-08 13:51:25 +00:00
if (_glfwWin.has_GLX_SGIX_fbconfig)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
fbconfigs = _glfwWin.ChooseFBConfigSGIX(_glfwLibrary.display,
_glfwWin.screen,
NULL,
&count);
if (!count)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
fprintf(stderr, "No GLXFBConfigs returned\n");
2010-09-07 15:34:51 +00:00
return NULL;
}
}
else
{
2010-09-08 13:51:25 +00:00
fbconfigs = glXGetFBConfigs(_glfwLibrary.display, _glfwWin.screen, &count);
if (!count)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
fprintf(stderr, "No GLXFBConfigs returned\n");
2010-09-07 15:34:51 +00:00
return NULL;
}
}
2010-09-08 13:51:25 +00:00
result = (_GLFWfbconfig*) malloc(sizeof(_GLFWfbconfig) * count);
if (!result)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
fprintf(stderr, "Out of memory\n");
2010-09-07 15:34:51 +00:00
return NULL;
}
2010-09-08 13:51:25 +00:00
for (i = 0; i < count; i++)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
if (!getFBConfigAttrib(fbconfigs[i], GLX_DOUBLEBUFFER) ||
!getFBConfigAttrib(fbconfigs[i], GLX_VISUAL_ID))
2010-09-07 15:34:51 +00:00
{
// Only consider double-buffered GLXFBConfigs with associated visuals
continue;
}
2010-09-08 13:51:25 +00:00
if (!(getFBConfigAttrib(fbconfigs[i], GLX_RENDER_TYPE) & GLX_RGBA_BIT))
2010-09-07 15:34:51 +00:00
{
// Only consider RGBA GLXFBConfigs
continue;
}
2010-09-08 13:51:25 +00:00
if (!(getFBConfigAttrib(fbconfigs[i], GLX_DRAWABLE_TYPE) & GLX_WINDOW_BIT))
2010-09-07 15:34:51 +00:00
{
// Only consider window GLXFBConfigs
continue;
}
2010-09-08 13:51:25 +00:00
result[*found].redBits = getFBConfigAttrib(fbconfigs[i], GLX_RED_SIZE);
result[*found].greenBits = getFBConfigAttrib(fbconfigs[i], GLX_GREEN_SIZE);
result[*found].blueBits = getFBConfigAttrib(fbconfigs[i], GLX_BLUE_SIZE);
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
result[*found].alphaBits = getFBConfigAttrib(fbconfigs[i], GLX_ALPHA_SIZE);
result[*found].depthBits = getFBConfigAttrib(fbconfigs[i], GLX_DEPTH_SIZE);
result[*found].stencilBits = getFBConfigAttrib(fbconfigs[i], GLX_STENCIL_SIZE);
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
result[*found].accumRedBits = getFBConfigAttrib(fbconfigs[i], GLX_ACCUM_RED_SIZE);
result[*found].accumGreenBits = getFBConfigAttrib(fbconfigs[i], GLX_ACCUM_GREEN_SIZE);
result[*found].accumBlueBits = getFBConfigAttrib(fbconfigs[i], GLX_ACCUM_BLUE_SIZE);
result[*found].accumAlphaBits = getFBConfigAttrib(fbconfigs[i], GLX_ACCUM_ALPHA_SIZE);
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
result[*found].auxBuffers = getFBConfigAttrib(fbconfigs[i], GLX_AUX_BUFFERS);
result[*found].stereo = getFBConfigAttrib(fbconfigs[i], GLX_STEREO);
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
if (_glfwWin.has_GLX_ARB_multisample)
result[*found].samples = getFBConfigAttrib(fbconfigs[i], GLX_SAMPLES);
2010-09-07 15:34:51 +00:00
else
result[*found].samples = 0;
2010-09-08 13:51:25 +00:00
result[*found].platformID = (GLFWintptr) getFBConfigAttrib(fbconfigs[i], GLX_FBCONFIG_ID);
2010-09-07 15:34:51 +00:00
(*found)++;
}
2010-09-08 13:51:25 +00:00
XFree(fbconfigs);
2010-09-07 15:34:51 +00:00
return result;
}
//========================================================================
// Create the OpenGL context
//========================================================================
2010-09-08 13:51:25 +00:00
#define setGLXattrib(attribs, index, attribName, attribValue) \
2010-09-07 15:34:51 +00:00
attribs[index++] = attribName; \
attribs[index++] = attribValue;
2010-09-08 13:58:43 +00:00
static int createContext(const _GLFWwndconfig* wndconfig, GLXFBConfigID fbconfigID)
2010-09-07 15:34:51 +00:00
{
int attribs[40];
int flags, dummy, index;
2010-09-08 13:58:43 +00:00
GLXFBConfig* fbconfig;
2010-09-07 15:34:51 +00:00
// Retrieve the previously selected GLXFBConfig
{
index = 0;
2010-09-08 13:51:25 +00:00
setGLXattrib(attribs, index, GLX_FBCONFIG_ID, (int) fbconfigID);
setGLXattrib(attribs, index, None, None);
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
if (_glfwWin.has_GLX_SGIX_fbconfig)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
fbconfig = _glfwWin.ChooseFBConfigSGIX(_glfwLibrary.display,
_glfwWin.screen,
attribs,
&dummy);
2010-09-07 15:34:51 +00:00
}
else
{
2010-09-08 13:51:25 +00:00
fbconfig = glXChooseFBConfig(_glfwLibrary.display,
_glfwWin.screen,
attribs,
&dummy);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
if (fbconfig == NULL)
2010-09-07 15:34:51 +00:00
{
fprintf(stderr, "Unable to retrieve the selected GLXFBConfig\n");
return GL_FALSE;
}
}
// Retrieve the corresponding visual
2010-09-08 13:51:25 +00:00
if (_glfwWin.has_GLX_SGIX_fbconfig)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
_glfwWin.visual = _glfwWin.GetVisualFromFBConfigSGIX(_glfwLibrary.display,
*fbconfig);
2010-09-07 15:34:51 +00:00
}
else
{
2010-09-08 13:51:25 +00:00
_glfwWin.visual = glXGetVisualFromFBConfig(_glfwLibrary.display,
*fbconfig);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
if (_glfwWin.visual == NULL)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
XFree(fbconfig);
2010-09-07 15:34:51 +00:00
fprintf(stderr, "Unable to retrieve visual for GLXFBconfig\n");
return GL_FALSE;
}
2010-09-08 13:51:25 +00:00
if (_glfwWin.has_GLX_ARB_create_context)
2010-09-07 15:34:51 +00:00
{
index = 0;
2010-09-08 13:51:25 +00:00
if (wndconfig->glMajor != 1 || wndconfig->glMinor != 0)
2010-09-07 15:34:51 +00:00
{
// Request an explicitly versioned context
2010-09-08 13:51:25 +00:00
setGLXattrib(attribs, index, GLX_CONTEXT_MAJOR_VERSION_ARB, wndconfig->glMajor);
setGLXattrib(attribs, index, GLX_CONTEXT_MINOR_VERSION_ARB, wndconfig->glMinor);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
if (wndconfig->glForward || wndconfig->glDebug)
2010-09-07 15:34:51 +00:00
{
flags = 0;
2010-09-08 13:51:25 +00:00
if (wndconfig->glForward)
2010-09-07 15:34:51 +00:00
flags |= GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB;
2010-09-08 13:51:25 +00:00
if (wndconfig->glDebug)
2010-09-07 15:34:51 +00:00
flags |= GLX_CONTEXT_DEBUG_BIT_ARB;
2010-09-08 13:51:25 +00:00
setGLXattrib(attribs, index, GLX_CONTEXT_FLAGS_ARB, flags);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
if (wndconfig->glProfile)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
if (!_glfwWin.has_GLX_ARB_create_context_profile)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
fprintf(stderr, "OpenGL profile requested but GLX_ARB_create_context_profile "
"is unavailable\n");
2010-09-07 15:34:51 +00:00
return GL_FALSE;
}
2010-09-08 13:51:25 +00:00
if (wndconfig->glProfile == GLFW_OPENGL_CORE_PROFILE)
2010-09-07 15:34:51 +00:00
flags = GLX_CONTEXT_CORE_PROFILE_BIT_ARB;
else
flags = GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB;
2010-09-08 13:51:25 +00:00
setGLXattrib(attribs, index, GLX_CONTEXT_PROFILE_MASK_ARB, flags);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
setGLXattrib(attribs, index, None, None);
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
_glfwWin.context = _glfwWin.CreateContextAttribsARB(_glfwLibrary.display,
*fbconfig,
NULL,
True,
attribs);
2010-09-07 15:34:51 +00:00
}
else
{
2010-09-08 13:51:25 +00:00
if (_glfwWin.has_GLX_SGIX_fbconfig)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
_glfwWin.context = _glfwWin.CreateContextWithConfigSGIX(_glfwLibrary.display,
*fbconfig,
GLX_RGBA_TYPE,
NULL,
True);
2010-09-07 15:34:51 +00:00
}
else
{
2010-09-08 13:51:25 +00:00
_glfwWin.context = glXCreateNewContext(_glfwLibrary.display,
*fbconfig,
GLX_RGBA_TYPE,
NULL,
True);
2010-09-07 15:34:51 +00:00
}
}
2010-09-08 13:51:25 +00:00
XFree(fbconfig);
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
if (_glfwWin.context == NULL)
2010-09-07 15:34:51 +00:00
{
fprintf(stderr, "Unable to create OpenGL context\n");
return GL_FALSE;
}
_glfwWin.fbconfigID = fbconfigID;
return GL_TRUE;
}
#undef setGLXattrib
//========================================================================
// Initialize GLX-specific extensions
//========================================================================
2010-09-08 13:51:25 +00:00
static void initGLXExtensions(void)
2010-09-07 15:34:51 +00:00
{
// This needs to include every function pointer loaded below
_glfwWin.SwapIntervalSGI = NULL;
_glfwWin.GetFBConfigAttribSGIX = NULL;
_glfwWin.ChooseFBConfigSGIX = NULL;
_glfwWin.CreateContextWithConfigSGIX = NULL;
_glfwWin.GetVisualFromFBConfigSGIX = NULL;
_glfwWin.CreateContextAttribsARB = NULL;
// This needs to include every extension used below
_glfwWin.has_GLX_SGIX_fbconfig = GL_FALSE;
_glfwWin.has_GLX_SGI_swap_control = GL_FALSE;
_glfwWin.has_GLX_ARB_multisample = GL_FALSE;
_glfwWin.has_GLX_ARB_create_context = GL_FALSE;
_glfwWin.has_GLX_ARB_create_context_profile = GL_FALSE;
2010-09-08 13:51:25 +00:00
if (_glfwPlatformExtensionSupported("GLX_SGI_swap_control"))
2010-09-07 15:34:51 +00:00
{
_glfwWin.SwapIntervalSGI = (PFNGLXSWAPINTERVALSGIPROC)
2010-09-08 13:51:25 +00:00
_glfwPlatformGetProcAddress("glXSwapIntervalSGI");
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
if (_glfwWin.SwapIntervalSGI)
2010-09-07 15:34:51 +00:00
_glfwWin.has_GLX_SGI_swap_control = GL_TRUE;
}
2010-09-08 13:51:25 +00:00
if (_glfwPlatformExtensionSupported("GLX_SGIX_fbconfig"))
2010-09-07 15:34:51 +00:00
{
_glfwWin.GetFBConfigAttribSGIX = (PFNGLXGETFBCONFIGATTRIBSGIXPROC)
2010-09-08 13:51:25 +00:00
_glfwPlatformGetProcAddress("glXGetFBConfigAttribSGIX");
2010-09-07 15:34:51 +00:00
_glfwWin.ChooseFBConfigSGIX = (PFNGLXCHOOSEFBCONFIGSGIXPROC)
2010-09-08 13:51:25 +00:00
_glfwPlatformGetProcAddress("glXChooseFBConfigSGIX");
2010-09-07 15:34:51 +00:00
_glfwWin.CreateContextWithConfigSGIX = (PFNGLXCREATECONTEXTWITHCONFIGSGIXPROC)
2010-09-08 13:51:25 +00:00
_glfwPlatformGetProcAddress("glXCreateContextWithConfigSGIX");
2010-09-07 15:34:51 +00:00
_glfwWin.GetVisualFromFBConfigSGIX = (PFNGLXGETVISUALFROMFBCONFIGSGIXPROC)
2010-09-08 13:51:25 +00:00
_glfwPlatformGetProcAddress("glXGetVisualFromFBConfigSGIX");
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
if (_glfwWin.GetFBConfigAttribSGIX &&
2010-09-07 15:34:51 +00:00
_glfwWin.ChooseFBConfigSGIX &&
_glfwWin.CreateContextWithConfigSGIX &&
2010-09-08 13:51:25 +00:00
_glfwWin.GetVisualFromFBConfigSGIX)
2010-09-07 15:34:51 +00:00
{
_glfwWin.has_GLX_SGIX_fbconfig = GL_TRUE;
}
}
2010-09-08 13:51:25 +00:00
if (_glfwPlatformExtensionSupported("GLX_ARB_multisample"))
2010-09-07 15:34:51 +00:00
_glfwWin.has_GLX_ARB_multisample = GL_TRUE;
2010-09-08 13:51:25 +00:00
if (_glfwPlatformExtensionSupported("GLX_ARB_create_context"))
2010-09-07 15:34:51 +00:00
{
_glfwWin.CreateContextAttribsARB = (PFNGLXCREATECONTEXTATTRIBSARBPROC)
2010-09-08 13:51:25 +00:00
_glfwPlatformGetProcAddress("glXCreateContextAttribsARB");
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
if (_glfwWin.CreateContextAttribsARB)
2010-09-07 15:34:51 +00:00
_glfwWin.has_GLX_ARB_create_context = GL_TRUE;
}
2010-09-08 13:51:25 +00:00
if (_glfwPlatformExtensionSupported("GLX_ARB_create_context_profile"))
2010-09-07 15:34:51 +00:00
_glfwWin.has_GLX_ARB_create_context_profile = GL_TRUE;
}
//========================================================================
// Create the X11 window (and its colormap)
//========================================================================
2010-09-08 13:51:25 +00:00
static GLboolean createWindow(int width, int height,
2010-09-08 13:58:43 +00:00
const _GLFWwndconfig* wndconfig)
2010-09-07 15:34:51 +00:00
{
XEvent event;
unsigned long wamask;
XSetWindowAttributes wa;
// Every window needs a colormap
// Create one based on the visual used by the current context
2010-09-08 13:51:25 +00:00
_glfwWin.colormap = XCreateColormap(_glfwLibrary.display,
_glfwWin.root,
_glfwWin.visual->visual,
AllocNone);
2010-09-07 15:34:51 +00:00
// Create the actual window
{
wamask = CWBorderPixel | CWColormap | CWEventMask;
wa.colormap = _glfwWin.colormap;
wa.border_pixel = 0;
wa.event_mask = StructureNotifyMask | KeyPressMask | KeyReleaseMask |
PointerMotionMask | ButtonPressMask | ButtonReleaseMask |
ExposureMask | FocusChangeMask | VisibilityChangeMask;
2010-09-08 13:51:25 +00:00
if (wndconfig->mode == GLFW_WINDOW)
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-09-08 13:51:25 +00:00
wa.background_pixel = BlackPixel(_glfwLibrary.display, _glfwWin.screen);
2010-09-07 15:34:51 +00:00
wamask |= CWBackPixel;
}
_glfwWin.window = XCreateWindow(
_glfwLibrary.display,
_glfwWin.root,
0, 0, // Upper left corner of this window on root
_glfwWin.width, _glfwWin.height,
0, // Border width
_glfwWin.visual->depth, // Color depth
InputOutput,
_glfwWin.visual->visual,
wamask,
&wa
);
2010-09-08 13:51:25 +00:00
if (!_glfwWin.window)
2010-09-07 15:34:51 +00:00
{
_glfwPlatformCloseWindow();
return GL_FALSE;
}
}
// Check whether an EWMH-compliant window manager is running
_glfwWin.hasEWMH = checkForEWMH();
2010-09-08 13:51:25 +00:00
if (_glfwWin.fullscreen && !_glfwWin.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-08 13:51:25 +00:00
XChangeWindowAttributes(_glfwLibrary.display,
_glfwWin.window,
CWOverrideRedirect,
&attributes);
2010-09-07 15:34:51 +00:00
_glfwWin.overrideRedirect = GL_TRUE;
}
// Find or create the protocol atom for window close notifications
2010-09-08 13:51:25 +00:00
_glfwWin.wmDeleteWindow = XInternAtom(_glfwLibrary.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
2010-09-08 13:51:25 +00:00
if (_glfwWin.wmDeleteWindow != None)
2010-09-07 15:34:51 +00:00
protocols[count++] = _glfwWin.wmDeleteWindow;
// 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
2010-09-08 13:51:25 +00:00
if (_glfwWin.wmPing != None)
2010-09-07 15:34:51 +00:00
protocols[count++] = _glfwWin.wmPing;
2010-09-08 13:51:25 +00:00
if (count > 0)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
XSetWMProtocols(_glfwLibrary.display, _glfwWin.window,
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-07 15:34:51 +00:00
{
_glfwPlatformCloseWindow();
return GL_FALSE;
}
hints->flags = StateHint;
hints->initial_state = NormalState;
2010-09-08 13:51:25 +00:00
XSetWMHints(_glfwLibrary.display, _glfwWin.window, hints);
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-07 15:34:51 +00:00
{
_glfwPlatformCloseWindow();
return GL_FALSE;
}
hints->flags = 0;
2010-09-08 13:51:25 +00:00
if (wndconfig->windowNoResize)
2010-09-07 15:34:51 +00:00
{
hints->flags |= (PMinSize | PMaxSize);
hints->min_width = hints->max_width = _glfwWin.width;
hints->min_height = hints->max_height = _glfwWin.height;
}
2010-09-08 13:51:25 +00:00
XSetWMNormalHints(_glfwLibrary.display, _glfwWin.window, hints);
XFree(hints);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
_glfwPlatformSetWindowTitle("GLFW Window");
2010-09-07 15:34:51 +00:00
// Make sure the window is mapped before proceeding
2010-09-08 13:51:25 +00:00
XMapWindow(_glfwLibrary.display, _glfwWin.window);
XPeekIfEvent(_glfwLibrary.display, &event, isMapNotify,
(char*) _glfwWin.window);
2010-09-07 15:34:51 +00:00
return GL_TRUE;
}
//========================================================================
// Enter fullscreen mode
//========================================================================
2010-09-08 13:51:25 +00:00
static void enterFullscreenMode(void)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
if (!_glfwWin.Saver.changed)
2010-09-07 15:34:51 +00:00
{
// Remember old screen saver settings
2010-09-08 13:51:25 +00:00
XGetScreenSaver(_glfwLibrary.display,
&_glfwWin.Saver.timeout, &_glfwWin.Saver.interval,
&_glfwWin.Saver.blanking, &_glfwWin.Saver.exposure);
2010-09-07 15:34:51 +00:00
// Disable screen saver
2010-09-08 13:51:25 +00:00
XSetScreenSaver(_glfwLibrary.display, 0, 0, DontPreferBlanking,
DefaultExposures);
2010-09-07 15:34:51 +00:00
_glfwWin.Saver.changed = GL_TRUE;
}
2010-09-08 13:51:25 +00:00
_glfwSetVideoMode(_glfwWin.screen,
&_glfwWin.width, &_glfwWin.height,
&_glfwWin.refreshRate);
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
if (_glfwWin.hasEWMH &&
2010-09-07 15:34:51 +00:00
_glfwWin.wmState != None &&
2010-09-08 13:51:25 +00:00
_glfwWin.wmStateFullscreen != None)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
if (_glfwWin.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;
event.xclient.window = _glfwWin.window;
event.xclient.format = 32; // Data is 32-bit longs
event.xclient.message_type = _glfwWin.wmActiveWindow;
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-08 13:51:25 +00:00
XSendEvent(_glfwLibrary.display,
_glfwWin.root,
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;
event.xclient.window = _glfwWin.window;
event.xclient.format = 32; // Data is 32-bit longs
event.xclient.message_type = _glfwWin.wmState;
event.xclient.data.l[0] = _NET_WM_STATE_ADD;
event.xclient.data.l[1] = _glfwWin.wmStateFullscreen;
event.xclient.data.l[2] = 0; // No secondary property
event.xclient.data.l[3] = 1; // Sender is a normal application
2010-09-08 13:51:25 +00:00
XSendEvent(_glfwLibrary.display,
_glfwWin.root,
False,
SubstructureNotifyMask | SubstructureRedirectMask,
&event);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
else if (_glfwWin.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-08 13:51:25 +00:00
XRaiseWindow(_glfwLibrary.display, _glfwWin.window);
XSetInputFocus(_glfwLibrary.display, _glfwWin.window,
RevertToParent, CurrentTime);
XMoveWindow(_glfwLibrary.display, _glfwWin.window, 0, 0);
XResizeWindow(_glfwLibrary.display, _glfwWin.window,
_glfwWin.width, _glfwWin.height);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
if (_glfwWin.mouseLock)
2010-09-07 15:34:51 +00:00
_glfwPlatformHideMouseCursor();
// HACK: Try to get window inside viewport (for virtual displays) by moving
// the mouse cursor to the upper left corner (and then to the center)
// This hack should be harmless on saner systems as well
2010-09-08 13:51:25 +00:00
XWarpPointer(_glfwLibrary.display, None, _glfwWin.window, 0,0,0,0, 0,0);
XWarpPointer(_glfwLibrary.display, None, _glfwWin.window, 0,0,0,0,
_glfwWin.width / 2, _glfwWin.height / 2);
2010-09-07 15:34:51 +00:00
}
//========================================================================
// Leave fullscreen mode
//========================================================================
2010-09-08 13:51:25 +00:00
static void leaveFullscreenMode(void)
2010-09-07 15:34:51 +00:00
{
_glfwRestoreVideoMode();
// Did we change the screen saver setting?
2010-09-08 13:51:25 +00:00
if (_glfwWin.Saver.changed)
2010-09-07 15:34:51 +00:00
{
// Restore old screen saver settings
2010-09-08 13:51:25 +00:00
XSetScreenSaver(_glfwLibrary.display,
_glfwWin.Saver.timeout,
_glfwWin.Saver.interval,
_glfwWin.Saver.blanking,
_glfwWin.Saver.exposure);
2010-09-07 15:34:51 +00:00
_glfwWin.Saver.changed = GL_FALSE;
}
2010-09-08 13:51:25 +00:00
if (_glfwWin.hasEWMH &&
2010-09-07 15:34:51 +00:00
_glfwWin.wmState != None &&
2010-09-08 13:51:25 +00:00
_glfwWin.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;
event.xclient.window = _glfwWin.window;
event.xclient.format = 32; // Data is 32-bit longs
event.xclient.message_type = _glfwWin.wmState;
event.xclient.data.l[0] = _NET_WM_STATE_REMOVE;
event.xclient.data.l[1] = _glfwWin.wmStateFullscreen;
event.xclient.data.l[2] = 0; // No secondary property
event.xclient.data.l[3] = 1; // Sender is a normal application
2010-09-08 13:51:25 +00:00
XSendEvent(_glfwLibrary.display,
_glfwWin.root,
False,
SubstructureNotifyMask | SubstructureRedirectMask,
&event);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
if (_glfwWin.mouseLock)
2010-09-07 15:34:51 +00:00
_glfwPlatformShowMouseCursor();
}
//========================================================================
// Get and process next X event (called by _glfwPlatformPollEvents)
// Returns GL_TRUE if a window close request was received
//========================================================================
2010-09-08 13:51:25 +00:00
static GLboolean processSingleEvent(void)
2010-09-07 15:34:51 +00:00
{
XEvent event;
2010-09-08 13:51:25 +00:00
XNextEvent(_glfwLibrary.display, &event);
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
switch (event.type)
2010-09-07 15:34:51 +00:00
{
case KeyPress:
{
// A keyboard key was pressed
// Translate and report key press
2010-09-08 13:51:25 +00:00
_glfwInputKey(translateKey(event.xkey.keycode), GLFW_PRESS);
2010-09-07 15:34:51 +00:00
// Translate and report character input
2010-09-08 13:51:25 +00:00
if (_glfwWin.charCallback)
_glfwInputChar(translateChar(&event.xkey), GLFW_PRESS);
2010-09-07 15:34:51 +00:00
break;
}
case KeyRelease:
{
// A keyboard key was released
// 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
// _glfwInputKey()/_glfwInputChar().
2010-09-08 13:51:25 +00:00
if (XEventsQueued(_glfwLibrary.display, QueuedAfterReading))
2010-09-07 15:34:51 +00:00
{
XEvent nextEvent;
2010-09-08 13:51:25 +00:00
XPeekEvent(_glfwLibrary.display, &nextEvent);
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
if (nextEvent.type == KeyPress &&
2010-09-07 15:34:51 +00:00
nextEvent.xkey.window == event.xkey.window &&
2010-09-08 13:51:25 +00:00
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)
2010-09-08 13:51:25 +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
2010-09-08 13:51:25 +00:00
_glfwInputKey(translateKey(event.xkey.keycode), GLFW_RELEASE);
2010-09-07 15:34:51 +00:00
// Translate and report character input
2010-09-08 13:51:25 +00:00
if (_glfwWin.charCallback)
_glfwInputChar(translateChar(&event.xkey), GLFW_RELEASE);
2010-09-07 15:34:51 +00:00
break;
}
case ButtonPress:
{
// A mouse button was pressed or a scrolling event occurred
2010-09-08 13:51:25 +00:00
if (event.xbutton.button == Button1)
_glfwInputMouseClick(GLFW_MOUSE_BUTTON_LEFT, GLFW_PRESS);
else if (event.xbutton.button == Button2)
_glfwInputMouseClick(GLFW_MOUSE_BUTTON_MIDDLE, GLFW_PRESS);
else if (event.xbutton.button == Button3)
_glfwInputMouseClick(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
2010-09-08 13:51:25 +00:00
else if (event.xbutton.button == Button4)
2010-09-07 15:34:51 +00:00
{
_glfwInput.WheelPos++; // To verify: is this up or down?
2010-09-08 13:51:25 +00:00
if (_glfwWin.mouseWheelCallback)
_glfwWin.mouseWheelCallback(_glfwInput.WheelPos);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
else if (event.xbutton.button == Button5)
2010-09-07 15:34:51 +00:00
{
_glfwInput.WheelPos--;
2010-09-08 13:51:25 +00:00
if (_glfwWin.mouseWheelCallback)
_glfwWin.mouseWheelCallback(_glfwInput.WheelPos);
2010-09-07 15:34:51 +00:00
}
break;
}
case ButtonRelease:
{
// A mouse button was released
2010-09-08 13:51:25 +00:00
if (event.xbutton.button == Button1)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
_glfwInputMouseClick(GLFW_MOUSE_BUTTON_LEFT,
GLFW_RELEASE);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
else if (event.xbutton.button == Button2)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
_glfwInputMouseClick(GLFW_MOUSE_BUTTON_MIDDLE,
GLFW_RELEASE);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
else if (event.xbutton.button == Button3)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
_glfwInputMouseClick(GLFW_MOUSE_BUTTON_RIGHT,
GLFW_RELEASE);
2010-09-07 15:34:51 +00:00
}
break;
}
case MotionNotify:
{
// The mouse cursor was moved
2010-09-08 13:51:25 +00:00
if (event.xmotion.x != _glfwInput.CursorPosX ||
event.xmotion.y != _glfwInput.CursorPosY)
2010-09-07 15:34:51 +00:00
{
// The mouse cursor was moved and we didn't do it
2010-09-08 13:51:25 +00:00
if (_glfwWin.mouseLock)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
if (_glfwWin.pointerHidden)
2010-09-07 15:34:51 +00:00
{
_glfwInput.MousePosX += event.xmotion.x -
_glfwInput.CursorPosX;
_glfwInput.MousePosY += event.xmotion.y -
_glfwInput.CursorPosY;
}
}
else
{
_glfwInput.MousePosX = event.xmotion.x;
_glfwInput.MousePosY = event.xmotion.y;
}
_glfwInput.CursorPosX = event.xmotion.x;
_glfwInput.CursorPosY = event.xmotion.y;
_glfwInput.MouseMoved = GL_TRUE;
2010-09-08 13:51:25 +00:00
if (_glfwWin.mousePosCallback)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
_glfwWin.mousePosCallback(_glfwInput.MousePosX,
_glfwInput.MousePosY);
2010-09-07 15:34:51 +00:00
}
}
break;
}
case ConfigureNotify:
{
2010-09-08 13:51:25 +00:00
if (event.xconfigure.width != _glfwWin.width ||
event.xconfigure.height != _glfwWin.height)
2010-09-07 15:34:51 +00:00
{
// The window was resized
_glfwWin.width = event.xconfigure.width;
_glfwWin.height = event.xconfigure.height;
2010-09-08 13:51:25 +00:00
if (_glfwWin.windowSizeCallback)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
_glfwWin.windowSizeCallback(_glfwWin.width,
_glfwWin.height);
2010-09-07 15:34:51 +00:00
}
}
break;
}
case ClientMessage:
{
2010-09-08 13:51:25 +00:00
if ((Atom) event.xclient.data.l[ 0 ] == _glfwWin.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
return GL_TRUE;
}
2010-09-08 13:51:25 +00:00
else if (_glfwWin.wmPing != None &&
(Atom) event.xclient.data.l[ 0 ] == _glfwWin.wmPing)
2010-09-07 15:34:51 +00:00
{
// The window manager is pinging us to make sure we are still
// responding to events
event.xclient.window = _glfwWin.root;
2010-09-08 13:51:25 +00:00
XSendEvent(_glfwLibrary.display,
event.xclient.window,
False,
SubstructureNotifyMask | SubstructureRedirectMask,
&event);
2010-09-07 15:34:51 +00:00
}
break;
}
case MapNotify:
{
// The window was mapped
_glfwWin.iconified = GL_FALSE;
break;
}
case UnmapNotify:
{
// The window was unmapped
_glfwWin.iconified = GL_TRUE;
break;
}
case FocusIn:
{
// The window gained focus
_glfwWin.active = GL_TRUE;
2010-09-08 13:51:25 +00:00
if (_glfwWin.mouseLock)
2010-09-07 15:34:51 +00:00
_glfwPlatformHideMouseCursor();
break;
}
case FocusOut:
{
// The window lost focus
_glfwWin.active = GL_FALSE;
_glfwInputDeactivation();
2010-09-08 13:51:25 +00:00
if (_glfwWin.mouseLock)
2010-09-07 15:34:51 +00:00
_glfwPlatformShowMouseCursor();
break;
}
case Expose:
{
// The window's contents was damaged
2010-09-08 13:51:25 +00:00
if (_glfwWin.windowRefreshCallback)
2010-09-07 15:34:51 +00:00
_glfwWin.windowRefreshCallback();
2010-09-07 15:34:51 +00:00
break;
}
// Was the window destroyed?
case DestroyNotify:
return GL_FALSE;
default:
{
2010-09-08 13:51:25 +00:00
#if defined(_GLFW_HAS_XRANDR)
switch (event.type - _glfwLibrary.XRandR.eventBase)
2010-09-07 15:34:51 +00:00
{
case RRScreenChangeNotify:
{
// Show XRandR that we really care
2010-09-08 13:51:25 +00:00
XRRUpdateConfiguration(&event);
2010-09-07 15:34:51 +00:00
break;
}
}
#endif
break;
}
}
// The window was not destroyed
return GL_FALSE;
}
//************************************************************************
//**** Platform implementation functions ****
//************************************************************************
//========================================================================
// Here is where the window is created, and
// the OpenGL rendering context is created
//========================================================================
2010-09-08 13:51:25 +00:00
int _glfwPlatformOpenWindow(int width, int height,
const _GLFWwndconfig* wndconfig,
const _GLFWfbconfig* fbconfig)
2010-09-07 15:34:51 +00:00
{
_GLFWfbconfig closest;
// Clear platform specific GLFW window state
_glfwWin.visual = (XVisualInfo*)NULL;
_glfwWin.colormap = (Colormap)0;
_glfwWin.context = (GLXContext)NULL;
_glfwWin.window = (Window)0;
_glfwWin.pointerGrabbed = GL_FALSE;
_glfwWin.pointerHidden = GL_FALSE;
_glfwWin.keyboardGrabbed = GL_FALSE;
_glfwWin.overrideRedirect = GL_FALSE;
_glfwWin.FS.modeChanged = GL_FALSE;
_glfwWin.Saver.changed = GL_FALSE;
_glfwWin.refreshRate = wndconfig->refreshRate;
_glfwWin.windowNoResize = wndconfig->windowNoResize;
_glfwWin.wmDeleteWindow = None;
_glfwWin.wmPing = None;
_glfwWin.wmState = None;
_glfwWin.wmStateFullscreen = None;
_glfwWin.wmActiveWindow = None;
// As the 2.x API doesn't understand multiple display devices, we hardcode
// this choice and hope for the best
2010-09-08 13:51:25 +00:00
_glfwWin.screen = DefaultScreen(_glfwLibrary.display);
_glfwWin.root = RootWindow(_glfwLibrary.display, _glfwWin.screen);
2010-09-07 15:34:51 +00:00
// Create the invisible cursor for hidden cursor mode
2010-09-08 13:51:25 +00:00
_glfwWin.cursor = createNULLCursor(_glfwLibrary.display, _glfwWin.root);
2010-09-07 15:34:51 +00:00
initGLXExtensions();
// Choose the best available fbconfig
{
unsigned int fbcount;
2010-09-08 13:58:43 +00:00
_GLFWfbconfig* fbconfigs;
const _GLFWfbconfig* result;
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
fbconfigs = getFBConfigs(&fbcount);
if (!fbconfigs)
2010-09-07 15:34:51 +00:00
{
_glfwPlatformCloseWindow();
return GL_FALSE;
}
2010-09-08 13:51:25 +00:00
result = _glfwChooseFBConfig(fbconfig, fbconfigs, fbcount);
if (!result)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
free(fbconfigs);
2010-09-07 15:34:51 +00:00
_glfwPlatformCloseWindow();
return GL_FALSE;
}
closest = *result;
2010-09-08 13:51:25 +00:00
free(fbconfigs);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
if (!createContext(wndconfig, (GLXFBConfigID) closest.platformID))
2010-09-07 15:34:51 +00:00
{
_glfwPlatformCloseWindow();
return GL_FALSE;
}
2010-09-08 13:51:25 +00:00
if (!createWindow(width, height, wndconfig))
2010-09-07 15:34:51 +00:00
{
_glfwPlatformCloseWindow();
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-09-08 13:51:25 +00:00
if (_glfwLibrary.XRandR.available)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
XRRSelectInput(_glfwLibrary.display,
_glfwWin.window,
RRScreenChangeNotifyMask);
2010-09-07 15:34:51 +00:00
}
#endif
enterFullscreenMode();
}
// Process the window map event and any other that may have arrived
_glfwPlatformPollEvents();
// Retrieve and set initial cursor position
{
Window window, root;
int windowX, windowY, rootX, rootY;
unsigned int mask;
2010-09-08 13:51:25 +00:00
XQueryPointer(_glfwLibrary.display,
_glfwWin.window,
&root,
&window,
&rootX, &rootY,
&windowX, &windowY,
&mask);
2010-09-07 15:34:51 +00:00
// TODO: Probably check for some corner cases here.
_glfwInput.MousePosX = windowX;
_glfwInput.MousePosY = windowY;
}
// Connect the context to the window
2010-09-08 13:51:25 +00:00
glXMakeCurrent(_glfwLibrary.display, _glfwWin.window, _glfwWin.context);
2010-09-07 15:34:51 +00:00
return GL_TRUE;
}
//========================================================================
// Properly kill the window/video display
//========================================================================
2010-09-08 13:51:25 +00:00
void _glfwPlatformCloseWindow(void)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
if (_glfwWin.fullscreen)
2010-09-07 15:34:51 +00:00
leaveFullscreenMode();
2010-09-08 13:51:25 +00:00
if (_glfwWin.context)
2010-09-07 15:34:51 +00:00
{
// Release and destroy the context
2010-09-08 13:51:25 +00:00
glXMakeCurrent(_glfwLibrary.display, None, NULL);
glXDestroyContext(_glfwLibrary.display, _glfwWin.context);
2010-09-07 15:34:51 +00:00
_glfwWin.context = NULL;
}
2010-09-08 13:51:25 +00:00
if (_glfwWin.visual)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
XFree(_glfwWin.visual);
2010-09-07 15:34:51 +00:00
_glfwWin.visual = NULL;
}
2010-09-08 13:51:25 +00:00
if (_glfwWin.window)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
XUnmapWindow(_glfwLibrary.display, _glfwWin.window);
XDestroyWindow(_glfwLibrary.display, _glfwWin.window);
2010-09-07 15:34:51 +00:00
_glfwWin.window = (Window) 0;
}
2010-09-08 13:51:25 +00:00
if (_glfwWin.colormap)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
XFreeColormap(_glfwLibrary.display, _glfwWin.colormap);
2010-09-07 15:34:51 +00:00
_glfwWin.colormap = (Colormap) 0;
}
2010-09-08 13:51:25 +00:00
if (_glfwWin.cursor)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
XFreeCursor(_glfwLibrary.display, _glfwWin.cursor);
2010-09-07 15:34:51 +00:00
_glfwWin.cursor = (Cursor) 0;
}
}
//========================================================================
// Set the window title
//========================================================================
2010-09-08 13:58:43 +00:00
void _glfwPlatformSetWindowTitle(const char* title)
2010-09-07 15:34:51 +00:00
{
// Set window & icon title
2010-09-08 13:51:25 +00:00
XStoreName(_glfwLibrary.display, _glfwWin.window, title);
XSetIconName(_glfwLibrary.display, _glfwWin.window, title);
2010-09-07 15:34:51 +00:00
}
//========================================================================
// Set the window size
//========================================================================
2010-09-08 13:51:25 +00:00
void _glfwPlatformSetWindowSize(int width, int height)
2010-09-07 15:34:51 +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
rate = _glfwWin.refreshRate;
2010-09-08 13:51:25 +00:00
if (_glfwWin.fullscreen)
2010-09-07 15:34:51 +00:00
{
// Get the closest matching video mode for the specified window size
2010-09-08 13:51:25 +00:00
mode = _glfwGetClosestVideoMode(_glfwWin.screen, &width, &height, &rate);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
if (_glfwWin.windowNoResize)
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-08 13:51:25 +00:00
XSetWMNormalHints(_glfwLibrary.display, _glfwWin.window, sizehints);
XFree(sizehints);
2010-09-07 15:34:51 +00:00
}
// Change window size before changing fullscreen mode?
2010-09-08 13:51:25 +00:00
if (_glfwWin.fullscreen && (width > _glfwWin.width))
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
XResizeWindow(_glfwLibrary.display, _glfwWin.window, width, height);
2010-09-07 15:34:51 +00:00
sizeChanged = GL_TRUE;
}
2010-09-08 13:51:25 +00:00
if (_glfwWin.fullscreen)
2010-09-07 15:34:51 +00:00
{
// Change video mode, keeping current refresh rate
2010-09-08 13:51:25 +00:00
_glfwSetVideoModeMODE(_glfwWin.screen, mode, _glfwWin.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)
XResizeWindow(_glfwLibrary.display, _glfwWin.window, width, height);
2010-09-07 15:34:51 +00:00
}
//========================================================================
// Set the window position.
//========================================================================
2010-09-08 13:51:25 +00:00
void _glfwPlatformSetWindowPos(int x, int y)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
XMoveWindow(_glfwLibrary.display, _glfwWin.window, x, y);
2010-09-07 15:34:51 +00:00
}
//========================================================================
// Window iconification
//========================================================================
2010-09-08 13:51:25 +00:00
void _glfwPlatformIconifyWindow(void)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
if (_glfwWin.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-08 13:51:25 +00:00
XIconifyWindow(_glfwLibrary.display, _glfwWin.window, _glfwWin.screen);
2010-09-07 15:34:51 +00:00
}
//========================================================================
// Window un-iconification
//========================================================================
2010-09-08 13:51:25 +00:00
void _glfwPlatformRestoreWindow(void)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
if (_glfwWin.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-08 13:51:25 +00:00
XMapWindow(_glfwLibrary.display, _glfwWin.window);
2010-09-07 15:34:51 +00:00
}
//========================================================================
// Swap OpenGL buffers and poll any new events
//========================================================================
2010-09-08 13:51:25 +00:00
void _glfwPlatformSwapBuffers(void)
2010-09-07 15:34:51 +00:00
{
// Update display-buffer
2010-09-08 13:51:25 +00:00
glXSwapBuffers(_glfwLibrary.display, _glfwWin.window);
2010-09-07 15:34:51 +00:00
}
//========================================================================
// Set double buffering swap interval
//========================================================================
2010-09-08 13:51:25 +00:00
void _glfwPlatformSwapInterval(int interval)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
if (_glfwWin.has_GLX_SGI_swap_control)
_glfwWin.SwapIntervalSGI(interval);
2010-09-07 15:34:51 +00:00
}
//========================================================================
// Read back framebuffer parameters from the context
//========================================================================
2010-09-08 13:51:25 +00:00
void _glfwPlatformRefreshWindowParams(void)
2010-09-07 15:34:51 +00:00
{
int dummy;
2010-09-08 13:58:43 +00:00
GLXFBConfig* fbconfig;
2010-09-08 13:51:25 +00:00
#if defined(_GLFW_HAS_XRANDR)
2010-09-08 13:58:43 +00:00
XRRScreenConfiguration* sc;
2010-09-08 13:51:25 +00:00
#elif defined(_GLFW_HAS_XF86VIDMODE)
2010-09-07 15:34:51 +00:00
XF86VidModeModeLine modeline;
int dotclock;
float pixels_per_second, pixels_per_frame;
#endif
int attribs[] = { GLX_FBCONFIG_ID, _glfwWin.fbconfigID, None };
2010-09-08 13:51:25 +00:00
if (_glfwWin.has_GLX_SGIX_fbconfig)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
fbconfig = _glfwWin.ChooseFBConfigSGIX(_glfwLibrary.display,
_glfwWin.screen,
attribs,
&dummy);
2010-09-07 15:34:51 +00:00
}
else
{
2010-09-08 13:51:25 +00:00
fbconfig = glXChooseFBConfig(_glfwLibrary.display,
_glfwWin.screen,
attribs,
&dummy);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
if (fbconfig == NULL)
2010-09-07 15:34:51 +00:00
{
// This should never ever happen
// TODO: Figure out what to do when this happens
2010-09-08 13:51:25 +00:00
fprintf(stderr, "Cannot find known GLXFBConfig by ID. "
"This cannot happen. Have a nice day.\n");
2010-09-07 15:34:51 +00:00
abort();
}
// There is no clear definition of an "accelerated" context on X11/GLX, and
// true sounds better than false, so we hardcode true here
_glfwWin.accelerated = GL_TRUE;
2010-09-08 13:51:25 +00:00
_glfwWin.redBits = getFBConfigAttrib(*fbconfig, GLX_RED_SIZE);
_glfwWin.greenBits = getFBConfigAttrib(*fbconfig, GLX_GREEN_SIZE);
_glfwWin.blueBits = getFBConfigAttrib(*fbconfig, GLX_BLUE_SIZE);
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
_glfwWin.alphaBits = getFBConfigAttrib(*fbconfig, GLX_ALPHA_SIZE);
_glfwWin.depthBits = getFBConfigAttrib(*fbconfig, GLX_DEPTH_SIZE);
_glfwWin.stencilBits = getFBConfigAttrib(*fbconfig, GLX_STENCIL_SIZE);
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
_glfwWin.accumRedBits = getFBConfigAttrib(*fbconfig, GLX_ACCUM_RED_SIZE);
_glfwWin.accumGreenBits = getFBConfigAttrib(*fbconfig, GLX_ACCUM_GREEN_SIZE);
_glfwWin.accumBlueBits = getFBConfigAttrib(*fbconfig, GLX_ACCUM_BLUE_SIZE);
_glfwWin.accumAlphaBits = getFBConfigAttrib(*fbconfig, GLX_ACCUM_ALPHA_SIZE);
2010-09-07 15:34:51 +00:00
2010-09-08 13:51:25 +00:00
_glfwWin.auxBuffers = getFBConfigAttrib(*fbconfig, GLX_AUX_BUFFERS);
_glfwWin.stereo = getFBConfigAttrib(*fbconfig, GLX_STEREO) ? 1 : 0;
2010-09-07 15:34:51 +00:00
// Get FSAA buffer sample count
2010-09-08 13:51:25 +00:00
if (_glfwWin.has_GLX_ARB_multisample)
_glfwWin.samples = getFBConfigAttrib(*fbconfig, GLX_SAMPLES);
2010-09-07 15:34:51 +00:00
else
_glfwWin.samples = 0;
// Default to refresh rate unknown (=0 according to GLFW spec)
_glfwWin.refreshRate = 0;
// Retrieve refresh rate if possible
2010-09-08 13:51:25 +00:00
#if defined(_GLFW_HAS_XRANDR)
if (_glfwLibrary.XRandR.available)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
sc = XRRGetScreenInfo(_glfwLibrary.display, _glfwWin.root);
_glfwWin.refreshRate = XRRConfigCurrentRate(sc);
XRRFreeScreenConfigInfo(sc);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
#elif defined(_GLFW_HAS_XF86VIDMODE)
if (_glfwLibrary.XF86VidMode.available)
2010-09-07 15:34:51 +00:00
{
// Use the XF86VidMode extension to get current video mode
2010-09-08 13:51:25 +00:00
XF86VidModeGetModeLine(_glfwLibrary.display, _glfwWin.screen,
&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;
_glfwWin.refreshRate = (int)(pixels_per_second/pixels_per_frame+0.5);
}
#endif
2010-09-08 13:51:25 +00:00
XFree(fbconfig);
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
{
GLboolean closeRequested = GL_FALSE;
// Flag that the cursor has not moved
_glfwInput.MouseMoved = GL_FALSE;
// Process all pending events
2010-09-08 13:51:25 +00:00
while (XPending(_glfwLibrary.display))
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
if (processSingleEvent())
2010-09-07 15:34:51 +00:00
closeRequested = GL_TRUE;
}
// Did we get mouse movement in fully enabled hidden cursor mode?
2010-09-08 13:51:25 +00:00
if (_glfwInput.MouseMoved && _glfwWin.pointerHidden)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
_glfwPlatformSetMouseCursorPos(_glfwWin.width / 2,
_glfwWin.height / 2);
2010-09-07 15:34:51 +00:00
}
2010-09-08 13:51:25 +00:00
if (closeRequested && _glfwWin.windowCloseCallback)
2010-09-07 15:34:51 +00:00
closeRequested = _glfwWin.windowCloseCallback();
2010-09-08 13:51:25 +00:00
if (closeRequested)
2010-09-07 15:34:51 +00:00
glfwCloseWindow();
}
//========================================================================
// 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
{
XEvent event;
// Block waiting for an event to arrive
2010-09-08 13:51:25 +00:00
XNextEvent(_glfwLibrary.display, &event);
XPutBackEvent(_glfwLibrary.display, &event);
2010-09-07 15:34:51 +00:00
_glfwPlatformPollEvents();
}
//========================================================================
// Hide mouse cursor (lock it)
//========================================================================
2010-09-08 13:51:25 +00:00
void _glfwPlatformHideMouseCursor(void)
2010-09-07 15:34:51 +00:00
{
// Hide cursor
2010-09-08 13:51:25 +00:00
if (!_glfwWin.pointerHidden)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
XDefineCursor(_glfwLibrary.display, _glfwWin.window, _glfwWin.cursor);
2010-09-07 15:34:51 +00:00
_glfwWin.pointerHidden = GL_TRUE;
}
// Grab cursor to user window
2010-09-08 13:51:25 +00:00
if (!_glfwWin.pointerGrabbed)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
if (XGrabPointer(_glfwLibrary.display, _glfwWin.window, True,
ButtonPressMask | ButtonReleaseMask |
PointerMotionMask, GrabModeAsync, GrabModeAsync,
_glfwWin.window, None, CurrentTime) ==
GrabSuccess)
2010-09-07 15:34:51 +00:00
{
_glfwWin.pointerGrabbed = GL_TRUE;
}
}
}
//========================================================================
// Show mouse cursor (unlock it)
//========================================================================
2010-09-08 13:51:25 +00:00
void _glfwPlatformShowMouseCursor(void)
2010-09-07 15:34:51 +00:00
{
// Un-grab cursor (only in windowed mode: in fullscreen mode we still
// want the mouse grabbed in order to confine the cursor to the window
// area)
2010-09-08 13:51:25 +00:00
if (_glfwWin.pointerGrabbed)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
XUngrabPointer(_glfwLibrary.display, CurrentTime);
2010-09-07 15:34:51 +00:00
_glfwWin.pointerGrabbed = GL_FALSE;
}
// Show cursor
2010-09-08 13:51:25 +00:00
if (_glfwWin.pointerHidden)
2010-09-07 15:34:51 +00:00
{
2010-09-08 13:51:25 +00:00
XUndefineCursor(_glfwLibrary.display, _glfwWin.window);
2010-09-07 15:34:51 +00:00
_glfwWin.pointerHidden = GL_FALSE;
}
}
//========================================================================
// Set physical mouse cursor position
//========================================================================
2010-09-08 13:51:25 +00:00
void _glfwPlatformSetMouseCursorPos(int x, int y)
2010-09-07 15:34:51 +00:00
{
// Store the new position so we can recognise it later
_glfwInput.CursorPosX = x;
_glfwInput.CursorPosY = y;
2010-09-08 13:51:25 +00:00
XWarpPointer(_glfwLibrary.display, None, _glfwWin.window, 0,0,0,0, x, y);
2010-09-07 15:34:51 +00:00
}