glfw/src/window.c

753 lines
22 KiB
C
Raw Normal View History

2010-09-07 15:34:51 +00:00
//========================================================================
2015-06-01 20:55:06 +00:00
// GLFW 3.2 - www.glfw.org
2010-09-07 15:34:51 +00:00
//------------------------------------------------------------------------
// Copyright (c) 2002-2006 Marcus Geelnard
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
// Copyright (c) 2012 Torsten Walluhn <tw@mad-cad.net>
2010-09-07 15:34:51 +00:00
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it
// freely, subject to the following restrictions:
//
// 1. The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software. If you use this software
// in a product, an acknowledgment in the product documentation would
// be appreciated but is not required.
//
// 2. Altered source versions must be plainly marked as such, and must not
// be misrepresented as being the original software.
//
// 3. This notice may not be removed or altered from any source
// distribution.
//
//========================================================================
#include "internal.h"
#include <string.h>
2010-09-09 16:15:32 +00:00
#include <stdlib.h>
2010-09-07 15:34:51 +00:00
2010-09-09 18:59:50 +00:00
//////////////////////////////////////////////////////////////////////////
////// GLFW event API //////
2010-09-09 18:59:50 +00:00
//////////////////////////////////////////////////////////////////////////
2015-08-23 17:30:04 +00:00
void _glfwInputWindowFocus(_GLFWwindow* window, GLFWbool focused)
{
if (focused)
{
_glfw.cursorWindow = window;
2012-09-16 10:42:51 +00:00
2014-04-08 13:50:27 +00:00
if (window->callbacks.focus)
window->callbacks.focus((GLFWwindow*) window, focused);
}
else
{
2014-04-08 13:50:27 +00:00
int i;
_glfw.cursorWindow = NULL;
2014-04-08 13:50:27 +00:00
if (window->callbacks.focus)
window->callbacks.focus((GLFWwindow*) window, focused);
// Release all pressed keyboard keys
for (i = 0; i <= GLFW_KEY_LAST; i++)
{
if (window->keys[i] == GLFW_PRESS)
2014-04-08 13:50:27 +00:00
_glfwInputKey(window, i, 0, GLFW_RELEASE, 0);
}
// Release all pressed mouse buttons
for (i = 0; i <= GLFW_MOUSE_BUTTON_LAST; i++)
2012-09-16 10:42:51 +00:00
{
if (window->mouseButtons[i] == GLFW_PRESS)
2014-04-08 13:50:27 +00:00
_glfwInputMouseClick(window, i, GLFW_RELEASE, 0);
2012-09-16 10:42:51 +00:00
}
}
}
void _glfwInputWindowPos(_GLFWwindow* window, int x, int y)
{
2013-01-15 20:34:26 +00:00
if (window->callbacks.pos)
window->callbacks.pos((GLFWwindow*) window, x, y);
}
void _glfwInputWindowSize(_GLFWwindow* window, int width, int height)
{
2013-01-15 20:34:26 +00:00
if (window->callbacks.size)
window->callbacks.size((GLFWwindow*) window, width, height);
}
2015-11-05 07:58:40 +00:00
void _glfwInputWindowIconify(_GLFWwindow* window, GLFWbool iconified)
{
2013-01-15 20:34:26 +00:00
if (window->callbacks.iconify)
window->callbacks.iconify((GLFWwindow*) window, iconified);
}
void _glfwInputFramebufferSize(_GLFWwindow* window, int width, int height)
{
if (window->callbacks.fbsize)
window->callbacks.fbsize((GLFWwindow*) window, width, height);
}
void _glfwInputWindowDamage(_GLFWwindow* window)
{
2013-01-15 20:34:26 +00:00
if (window->callbacks.refresh)
window->callbacks.refresh((GLFWwindow*) window);
}
void _glfwInputWindowCloseRequest(_GLFWwindow* window)
{
2015-08-23 17:30:04 +00:00
window->closed = GLFW_TRUE;
2013-01-15 20:34:26 +00:00
if (window->callbacks.close)
window->callbacks.close((GLFWwindow*) window);
}
2010-09-09 18:59:50 +00:00
//////////////////////////////////////////////////////////////////////////
////// GLFW public API //////
//////////////////////////////////////////////////////////////////////////
2010-09-07 15:34:51 +00:00
GLFWAPI GLFWwindow* glfwCreateWindow(int width, int height,
const char* title,
GLFWmonitor* monitor,
GLFWwindow* share)
2010-09-07 15:34:51 +00:00
{
_GLFWfbconfig fbconfig;
_GLFWctxconfig ctxconfig;
2010-09-07 15:34:51 +00:00
_GLFWwndconfig wndconfig;
2010-09-09 16:15:32 +00:00
_GLFWwindow* window;
_GLFWwindow* previous;
2010-09-07 15:34:51 +00:00
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
2013-01-04 06:28:12 +00:00
if (width <= 0 || height <= 0)
{
_glfwInputError(GLFW_INVALID_VALUE, "Invalid window size");
return NULL;
2013-01-04 06:28:12 +00:00
}
2010-09-09 16:15:32 +00:00
2015-06-07 16:14:07 +00:00
fbconfig = _glfw.hints.framebuffer;
ctxconfig = _glfw.hints.context;
wndconfig = _glfw.hints.window;
wndconfig.width = width;
wndconfig.height = height;
wndconfig.title = title;
wndconfig.monitor = (_GLFWmonitor*) monitor;
ctxconfig.share = (_GLFWwindow*) share;
2010-09-07 15:34:51 +00:00
if (ctxconfig.share)
{
if (ctxconfig.share->context.api == GLFW_NO_API)
{
_glfwInputError(GLFW_NO_WINDOW_CONTEXT, NULL);
return NULL;
}
}
2015-06-07 16:22:38 +00:00
if (wndconfig.monitor)
{
2015-08-23 17:30:04 +00:00
wndconfig.resizable = GLFW_TRUE;
wndconfig.visible = GLFW_TRUE;
wndconfig.focused = GLFW_TRUE;
2015-06-07 16:22:38 +00:00
}
if (!_glfwIsValidContextConfig(&ctxconfig))
return NULL;
2010-09-07 15:34:51 +00:00
window = calloc(1, sizeof(_GLFWwindow));
window->next = _glfw.windowListHead;
_glfw.windowListHead = window;
2011-03-07 13:30:23 +00:00
2015-06-07 16:14:07 +00:00
window->videoMode.width = width;
window->videoMode.height = height;
window->videoMode.redBits = fbconfig.redBits;
window->videoMode.greenBits = fbconfig.greenBits;
window->videoMode.blueBits = fbconfig.blueBits;
window->videoMode.refreshRate = _glfw.hints.refreshRate;
window->monitor = wndconfig.monitor;
window->resizable = wndconfig.resizable;
window->decorated = wndconfig.decorated;
window->autoIconify = wndconfig.autoIconify;
2014-05-23 12:01:02 +00:00
window->floating = wndconfig.floating;
window->cursorMode = GLFW_CURSOR_NORMAL;
2010-09-07 15:34:51 +00:00
2013-01-04 06:28:12 +00:00
// Save the currently current context so it can be restored later
previous = _glfwPlatformGetCurrentContext();
2013-01-04 06:28:12 +00:00
2011-03-04 16:49:36 +00:00
// Open the actual window and create its context
if (!_glfwPlatformCreateWindow(window, &wndconfig, &ctxconfig, &fbconfig))
2010-09-09 16:15:32 +00:00
{
glfwDestroyWindow((GLFWwindow*) window);
_glfwPlatformMakeContextCurrent(previous);
return NULL;
2010-09-09 16:15:32 +00:00
}
2010-09-07 15:34:51 +00:00
if (ctxconfig.api != GLFW_NO_API)
2012-08-02 12:42:24 +00:00
{
_glfwPlatformMakeContextCurrent(window);
2012-08-02 12:42:24 +00:00
// Retrieve the actual (as opposed to requested) context attributes
if (!_glfwRefreshContextAttribs(&ctxconfig))
{
glfwDestroyWindow((GLFWwindow*) window);
_glfwPlatformMakeContextCurrent(previous);
return NULL;
}
// Verify the context against the requested parameters
if (!_glfwIsValidContext(&ctxconfig))
{
glfwDestroyWindow((GLFWwindow*) window);
_glfwPlatformMakeContextCurrent(previous);
return NULL;
}
// Restore the previously current context (or NULL)
_glfwPlatformMakeContextCurrent(previous);
2010-09-07 15:34:51 +00:00
}
if (wndconfig.monitor)
{
int width, height;
_glfwPlatformGetWindowSize(window, &width, &height);
window->cursorPosX = width / 2;
window->cursorPosY = height / 2;
_glfwPlatformSetCursorPos(window, window->cursorPosX, window->cursorPosY);
}
else
{
if (wndconfig.visible)
{
if (wndconfig.focused)
_glfwPlatformShowWindow(window);
else
_glfwPlatformUnhideWindow(window);
}
}
return (GLFWwindow*) window;
2010-09-09 16:15:32 +00:00
}
2012-10-22 00:59:05 +00:00
void glfwDefaultWindowHints(void)
{
_GLFW_REQUIRE_INIT();
2012-10-22 00:59:05 +00:00
memset(&_glfw.hints, 0, sizeof(_glfw.hints));
2012-10-22 00:59:05 +00:00
// The default is OpenGL with minimum version 1.0
2015-06-07 16:14:07 +00:00
_glfw.hints.context.api = GLFW_OPENGL_API;
_glfw.hints.context.major = 1;
_glfw.hints.context.minor = 0;
2012-10-22 00:59:05 +00:00
// The default is a focused, visible, resizable window with decorations
2015-08-23 17:30:04 +00:00
_glfw.hints.window.resizable = GLFW_TRUE;
_glfw.hints.window.visible = GLFW_TRUE;
_glfw.hints.window.decorated = GLFW_TRUE;
_glfw.hints.window.focused = GLFW_TRUE;
_glfw.hints.window.autoIconify = GLFW_TRUE;
2012-10-22 00:59:05 +00:00
2014-04-24 17:21:10 +00:00
// The default is 24 bits of color, 24 bits of depth and 8 bits of stencil,
// double buffered
2015-06-07 16:14:07 +00:00
_glfw.hints.framebuffer.redBits = 8;
_glfw.hints.framebuffer.greenBits = 8;
_glfw.hints.framebuffer.blueBits = 8;
_glfw.hints.framebuffer.alphaBits = 8;
_glfw.hints.framebuffer.depthBits = 24;
_glfw.hints.framebuffer.stencilBits = 8;
2015-08-23 17:30:04 +00:00
_glfw.hints.framebuffer.doublebuffer = GLFW_TRUE;
2015-06-07 16:22:38 +00:00
// The default is to select the highest available refresh rate
_glfw.hints.refreshRate = GLFW_DONT_CARE;
2012-10-22 00:59:05 +00:00
}
2016-01-27 02:25:21 +00:00
GLFWAPI void glfwWindowHint(int hint, int value)
2010-09-07 15:34:51 +00:00
{
_GLFW_REQUIRE_INIT();
2010-09-07 15:34:51 +00:00
2016-01-27 02:25:21 +00:00
switch (hint)
2010-09-07 15:34:51 +00:00
{
case GLFW_RED_BITS:
2016-01-27 02:25:21 +00:00
_glfw.hints.framebuffer.redBits = value;
break;
case GLFW_GREEN_BITS:
2016-01-27 02:25:21 +00:00
_glfw.hints.framebuffer.greenBits = value;
break;
case GLFW_BLUE_BITS:
2016-01-27 02:25:21 +00:00
_glfw.hints.framebuffer.blueBits = value;
break;
case GLFW_ALPHA_BITS:
2016-01-27 02:25:21 +00:00
_glfw.hints.framebuffer.alphaBits = value;
break;
case GLFW_DEPTH_BITS:
2016-01-27 02:25:21 +00:00
_glfw.hints.framebuffer.depthBits = value;
break;
case GLFW_STENCIL_BITS:
2016-01-27 02:25:21 +00:00
_glfw.hints.framebuffer.stencilBits = value;
break;
2010-09-07 15:34:51 +00:00
case GLFW_ACCUM_RED_BITS:
2016-01-27 02:25:21 +00:00
_glfw.hints.framebuffer.accumRedBits = value;
2010-09-07 15:34:51 +00:00
break;
case GLFW_ACCUM_GREEN_BITS:
2016-01-27 02:25:21 +00:00
_glfw.hints.framebuffer.accumGreenBits = value;
2010-09-07 15:34:51 +00:00
break;
case GLFW_ACCUM_BLUE_BITS:
2016-01-27 02:25:21 +00:00
_glfw.hints.framebuffer.accumBlueBits = value;
2010-09-07 15:34:51 +00:00
break;
case GLFW_ACCUM_ALPHA_BITS:
2016-01-27 02:25:21 +00:00
_glfw.hints.framebuffer.accumAlphaBits = value;
2010-09-07 15:34:51 +00:00
break;
case GLFW_AUX_BUFFERS:
2016-01-27 02:25:21 +00:00
_glfw.hints.framebuffer.auxBuffers = value;
2010-09-07 15:34:51 +00:00
break;
case GLFW_STEREO:
2016-01-27 02:25:21 +00:00
_glfw.hints.framebuffer.stereo = value ? GLFW_TRUE : GLFW_FALSE;
2010-09-07 15:34:51 +00:00
break;
2014-04-24 17:21:10 +00:00
case GLFW_DOUBLEBUFFER:
2016-01-27 02:25:21 +00:00
_glfw.hints.framebuffer.doublebuffer = value ? GLFW_TRUE : GLFW_FALSE;
2014-04-24 17:21:10 +00:00
break;
2015-06-07 16:22:38 +00:00
case GLFW_SAMPLES:
2016-01-27 02:25:21 +00:00
_glfw.hints.framebuffer.samples = value;
2015-06-07 16:22:38 +00:00
break;
case GLFW_SRGB_CAPABLE:
2016-01-27 02:25:21 +00:00
_glfw.hints.framebuffer.sRGB = value ? GLFW_TRUE : GLFW_FALSE;
2015-06-07 16:22:38 +00:00
break;
case GLFW_RESIZABLE:
2016-01-27 02:25:21 +00:00
_glfw.hints.window.resizable = value ? GLFW_TRUE : GLFW_FALSE;
2010-09-07 15:34:51 +00:00
break;
2013-04-08 13:16:32 +00:00
case GLFW_DECORATED:
2016-01-27 02:25:21 +00:00
_glfw.hints.window.decorated = value ? GLFW_TRUE : GLFW_FALSE;
break;
case GLFW_FOCUSED:
2016-01-27 02:25:21 +00:00
_glfw.hints.window.focused = value ? GLFW_TRUE : GLFW_FALSE;
break;
case GLFW_AUTO_ICONIFY:
2016-01-27 02:25:21 +00:00
_glfw.hints.window.autoIconify = value ? GLFW_TRUE : GLFW_FALSE;
break;
2014-05-23 12:01:02 +00:00
case GLFW_FLOATING:
2016-01-27 02:25:21 +00:00
_glfw.hints.window.floating = value ? GLFW_TRUE : GLFW_FALSE;
2014-05-23 12:01:02 +00:00
break;
case GLFW_VISIBLE:
2016-01-27 02:25:21 +00:00
_glfw.hints.window.visible = value ? GLFW_TRUE : GLFW_FALSE;
break;
case GLFW_CLIENT_API:
2016-01-27 02:25:21 +00:00
_glfw.hints.context.api = value;
break;
case GLFW_CONTEXT_VERSION_MAJOR:
2016-01-27 02:25:21 +00:00
_glfw.hints.context.major = value;
2010-09-07 15:34:51 +00:00
break;
case GLFW_CONTEXT_VERSION_MINOR:
2016-01-27 02:25:21 +00:00
_glfw.hints.context.minor = value;
2010-09-07 15:34:51 +00:00
break;
case GLFW_CONTEXT_ROBUSTNESS:
2016-01-27 02:25:21 +00:00
_glfw.hints.context.robustness = value;
break;
2010-09-07 15:34:51 +00:00
case GLFW_OPENGL_FORWARD_COMPAT:
2016-01-27 02:25:21 +00:00
_glfw.hints.context.forward = value ? GLFW_TRUE : GLFW_FALSE;
2010-09-07 15:34:51 +00:00
break;
case GLFW_OPENGL_DEBUG_CONTEXT:
2016-01-27 02:25:21 +00:00
_glfw.hints.context.debug = value ? GLFW_TRUE : GLFW_FALSE;
2010-09-07 15:34:51 +00:00
break;
case GLFW_CONTEXT_NO_ERROR:
2016-01-27 02:25:21 +00:00
_glfw.hints.context.noerror = value ? GLFW_TRUE : GLFW_FALSE;
break;
2010-09-07 15:34:51 +00:00
case GLFW_OPENGL_PROFILE:
2016-01-27 02:25:21 +00:00
_glfw.hints.context.profile = value;
2010-09-07 15:34:51 +00:00
break;
case GLFW_CONTEXT_RELEASE_BEHAVIOR:
2016-01-27 02:25:21 +00:00
_glfw.hints.context.release = value;
break;
2015-06-07 16:22:38 +00:00
case GLFW_REFRESH_RATE:
2016-01-27 02:25:21 +00:00
_glfw.hints.refreshRate = value;
2015-06-07 16:22:38 +00:00
break;
2010-09-07 15:34:51 +00:00
default:
_glfwInputError(GLFW_INVALID_ENUM, "Invalid window hint");
2010-09-07 15:34:51 +00:00
break;
}
}
GLFWAPI void glfwDestroyWindow(GLFWwindow* handle)
2010-09-07 15:34:51 +00:00
{
2011-04-06 18:38:55 +00:00
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT();
2010-09-07 15:34:51 +00:00
2011-03-08 22:14:42 +00:00
// Allow closing of NULL (to match the behavior of free)
if (window == NULL)
return;
// Clear all callbacks to avoid exposing a half torn-down window object
2013-01-15 20:34:26 +00:00
memset(&window->callbacks, 0, sizeof(window->callbacks));
// The window's context must not be current on another thread when the
// window is destroyed
if (window == _glfwPlatformGetCurrentContext())
_glfwPlatformMakeContextCurrent(NULL);
2010-09-07 15:34:51 +00:00
// Clear the focused window pointer if this is the focused window
if (_glfw.cursorWindow == window)
_glfw.cursorWindow = NULL;
2010-09-11 13:14:57 +00:00
_glfwPlatformDestroyWindow(window);
2010-09-09 16:15:32 +00:00
2010-09-16 00:05:01 +00:00
// Unlink window from global linked list
{
_GLFWwindow** prev = &_glfw.windowListHead;
2010-09-16 00:05:01 +00:00
while (*prev != window)
prev = &((*prev)->next);
2010-09-09 22:06:23 +00:00
2010-09-16 00:05:01 +00:00
*prev = window->next;
}
2010-09-09 22:30:10 +00:00
2012-02-07 13:58:58 +00:00
free(window);
2010-09-07 15:34:51 +00:00
}
GLFWAPI int glfwWindowShouldClose(GLFWwindow* handle)
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT_OR_RETURN(0);
return window->closed;
}
GLFWAPI void glfwSetWindowShouldClose(GLFWwindow* handle, int value)
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT();
window->closed = value;
}
GLFWAPI void glfwSetWindowTitle(GLFWwindow* handle, const char* title)
2010-09-07 15:34:51 +00:00
{
2011-04-06 18:38:55 +00:00
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT();
2010-09-09 16:15:32 +00:00
_glfwPlatformSetWindowTitle(window, title);
2010-09-07 15:34:51 +00:00
}
GLFWAPI void glfwGetWindowPos(GLFWwindow* handle, int* xpos, int* ypos)
{
_GLFWwindow* window = (_GLFWwindow*) handle;
2014-04-07 13:28:32 +00:00
if (xpos)
*xpos = 0;
if (ypos)
*ypos = 0;
_GLFW_REQUIRE_INIT();
_glfwPlatformGetWindowPos(window, xpos, ypos);
}
GLFWAPI void glfwSetWindowPos(GLFWwindow* handle, int xpos, int ypos)
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT();
if (window->monitor)
{
_glfwInputError(GLFW_INVALID_VALUE,
"Full screen windows cannot be moved");
return;
}
_glfwPlatformSetWindowPos(window, xpos, ypos);
}
GLFWAPI void glfwGetWindowSize(GLFWwindow* handle, int* width, int* height)
2010-09-07 15:34:51 +00:00
{
2011-04-06 18:38:55 +00:00
_GLFWwindow* window = (_GLFWwindow*) handle;
2014-04-07 13:28:32 +00:00
if (width)
*width = 0;
if (height)
*height = 0;
_GLFW_REQUIRE_INIT();
_glfwPlatformGetWindowSize(window, width, height);
2010-09-07 15:34:51 +00:00
}
GLFWAPI void glfwSetWindowSize(GLFWwindow* handle, int width, int height)
2010-09-07 15:34:51 +00:00
{
2011-04-06 18:38:55 +00:00
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT();
if (window->monitor)
{
window->videoMode.width = width;
window->videoMode.height = height;
}
2010-09-09 16:15:32 +00:00
_glfwPlatformSetWindowSize(window, width, height);
2010-09-07 15:34:51 +00:00
}
GLFWAPI void glfwSetWindowSizeLimits(GLFWwindow* handle,
int minwidth, int minheight,
int maxwidth, int maxheight)
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT();
if (window->monitor || !window->resizable)
return;
_glfwPlatformSetWindowSizeLimits(window,
minwidth, minheight,
maxwidth, maxheight);
}
GLFWAPI void glfwSetWindowAspectRatio(GLFWwindow* handle, int numer, int denom)
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT();
if (window->monitor || !window->resizable)
return;
if (!denom)
{
_glfwInputError(GLFW_INVALID_VALUE, "Denominator cannot be zero");
return;
}
_glfwPlatformSetWindowAspectRatio(window, numer, denom);
}
GLFWAPI void glfwGetFramebufferSize(GLFWwindow* handle, int* width, int* height)
{
_GLFWwindow* window = (_GLFWwindow*) handle;
2014-04-07 13:28:32 +00:00
if (width)
*width = 0;
if (height)
*height = 0;
2014-04-07 13:28:32 +00:00
_GLFW_REQUIRE_INIT();
_glfwPlatformGetFramebufferSize(window, width, height);
}
2014-03-25 20:30:13 +00:00
GLFWAPI void glfwGetWindowFrameSize(GLFWwindow* handle,
int* left, int* top,
int* right, int* bottom)
{
_GLFWwindow* window = (_GLFWwindow*) handle;
2014-04-07 13:28:32 +00:00
if (left)
*left = 0;
if (top)
*top = 0;
if (right)
*right = 0;
if (bottom)
*bottom = 0;
2014-03-25 20:30:13 +00:00
_GLFW_REQUIRE_INIT();
_glfwPlatformGetWindowFrameSize(window, left, top, right, bottom);
}
GLFWAPI void glfwIconifyWindow(GLFWwindow* handle)
2010-09-07 15:34:51 +00:00
{
2011-04-06 18:38:55 +00:00
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT();
2010-09-09 16:15:32 +00:00
_glfwPlatformIconifyWindow(window);
2010-09-07 15:34:51 +00:00
}
GLFWAPI void glfwRestoreWindow(GLFWwindow* handle)
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT();
2012-09-11 21:56:44 +00:00
_glfwPlatformRestoreWindow(window);
}
GLFWAPI void glfwShowWindow(GLFWwindow* handle)
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT();
2012-09-27 19:37:36 +00:00
if (window->monitor)
return;
2012-09-11 21:56:44 +00:00
_glfwPlatformShowWindow(window);
}
GLFWAPI void glfwHideWindow(GLFWwindow* handle)
2010-09-07 15:34:51 +00:00
{
2011-04-06 18:38:55 +00:00
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT();
2012-09-27 19:37:36 +00:00
if (window->monitor)
2010-09-07 15:34:51 +00:00
return;
2012-09-11 21:56:44 +00:00
_glfwPlatformHideWindow(window);
2010-09-07 15:34:51 +00:00
}
GLFWAPI int glfwGetWindowAttrib(GLFWwindow* handle, int attrib)
2010-09-07 15:34:51 +00:00
{
2011-04-06 18:38:55 +00:00
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT_OR_RETURN(0);
2010-09-07 15:34:51 +00:00
switch (attrib)
2010-09-07 15:34:51 +00:00
{
case GLFW_FOCUSED:
return _glfwPlatformWindowFocused(window);
2010-09-07 15:34:51 +00:00
case GLFW_ICONIFIED:
return _glfwPlatformWindowIconified(window);
case GLFW_VISIBLE:
return _glfwPlatformWindowVisible(window);
case GLFW_RESIZABLE:
return window->resizable;
2013-04-08 13:16:32 +00:00
case GLFW_DECORATED:
return window->decorated;
2014-05-23 12:01:02 +00:00
case GLFW_FLOATING:
return window->floating;
2012-09-30 13:43:26 +00:00
case GLFW_CLIENT_API:
return window->context.api;
case GLFW_CONTEXT_VERSION_MAJOR:
return window->context.major;
case GLFW_CONTEXT_VERSION_MINOR:
return window->context.minor;
case GLFW_CONTEXT_REVISION:
return window->context.revision;
case GLFW_CONTEXT_ROBUSTNESS:
return window->context.robustness;
2010-09-07 15:34:51 +00:00
case GLFW_OPENGL_FORWARD_COMPAT:
return window->context.forward;
2010-09-07 15:34:51 +00:00
case GLFW_OPENGL_DEBUG_CONTEXT:
return window->context.debug;
2010-09-07 15:34:51 +00:00
case GLFW_OPENGL_PROFILE:
return window->context.profile;
case GLFW_CONTEXT_RELEASE_BEHAVIOR:
return window->context.release;
case GLFW_CONTEXT_NO_ERROR:
return window->context.noerror;
2010-09-07 15:34:51 +00:00
}
_glfwInputError(GLFW_INVALID_ENUM, "Invalid window attribute");
return 0;
2010-09-07 15:34:51 +00:00
}
GLFWAPI GLFWmonitor* glfwGetWindowMonitor(GLFWwindow* handle)
2012-10-02 15:24:18 +00:00
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
return (GLFWmonitor*) window->monitor;
2012-10-02 15:24:18 +00:00
}
GLFWAPI void glfwSetWindowUserPointer(GLFWwindow* handle, void* pointer)
2010-09-09 20:44:38 +00:00
{
2011-04-06 18:38:55 +00:00
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT();
2010-09-09 20:44:38 +00:00
window->userPointer = pointer;
}
GLFWAPI void* glfwGetWindowUserPointer(GLFWwindow* handle)
2010-09-09 20:44:38 +00:00
{
2011-04-06 18:38:55 +00:00
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
2010-09-09 20:44:38 +00:00
return window->userPointer;
}
GLFWAPI GLFWwindowposfun glfwSetWindowPosCallback(GLFWwindow* handle,
GLFWwindowposfun cbfun)
2012-11-30 12:56:42 +00:00
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
_GLFW_SWAP_POINTERS(window->callbacks.pos, cbfun);
return cbfun;
2012-11-30 12:56:42 +00:00
}
GLFWAPI GLFWwindowsizefun glfwSetWindowSizeCallback(GLFWwindow* handle,
GLFWwindowsizefun cbfun)
2010-09-07 15:34:51 +00:00
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
_GLFW_SWAP_POINTERS(window->callbacks.size, cbfun);
return cbfun;
2010-09-07 15:34:51 +00:00
}
GLFWAPI GLFWwindowclosefun glfwSetWindowCloseCallback(GLFWwindow* handle,
GLFWwindowclosefun cbfun)
2010-09-07 15:34:51 +00:00
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
_GLFW_SWAP_POINTERS(window->callbacks.close, cbfun);
return cbfun;
2010-09-07 15:34:51 +00:00
}
GLFWAPI GLFWwindowrefreshfun glfwSetWindowRefreshCallback(GLFWwindow* handle,
GLFWwindowrefreshfun cbfun)
2010-09-07 15:34:51 +00:00
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
_GLFW_SWAP_POINTERS(window->callbacks.refresh, cbfun);
return cbfun;
2010-09-07 15:34:51 +00:00
}
GLFWAPI GLFWwindowfocusfun glfwSetWindowFocusCallback(GLFWwindow* handle,
GLFWwindowfocusfun cbfun)
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
_GLFW_SWAP_POINTERS(window->callbacks.focus, cbfun);
return cbfun;
}
GLFWAPI GLFWwindowiconifyfun glfwSetWindowIconifyCallback(GLFWwindow* handle,
GLFWwindowiconifyfun cbfun)
2010-09-20 00:22:35 +00:00
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
_GLFW_SWAP_POINTERS(window->callbacks.iconify, cbfun);
return cbfun;
2010-09-20 00:22:35 +00:00
}
GLFWAPI GLFWframebuffersizefun glfwSetFramebufferSizeCallback(GLFWwindow* handle,
GLFWframebuffersizefun cbfun)
{
_GLFWwindow* window = (_GLFWwindow*) handle;
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
_GLFW_SWAP_POINTERS(window->callbacks.fbsize, cbfun);
return cbfun;
}
2010-09-08 12:45:52 +00:00
GLFWAPI void glfwPollEvents(void)
2010-09-07 15:34:51 +00:00
{
_GLFW_REQUIRE_INIT();
2010-09-07 15:34:51 +00:00
_glfwPlatformPollEvents();
}
2010-09-08 12:45:52 +00:00
GLFWAPI void glfwWaitEvents(void)
2010-09-07 15:34:51 +00:00
{
_GLFW_REQUIRE_INIT();
2014-02-10 17:16:58 +00:00
if (!_glfw.windowListHead)
return;
2010-09-07 15:34:51 +00:00
_glfwPlatformWaitEvents();
}
2014-02-10 17:16:58 +00:00
GLFWAPI void glfwPostEmptyEvent(void)
{
_GLFW_REQUIRE_INIT();
if (!_glfw.windowListHead)
return;
_glfwPlatformPostEmptyEvent();
}