2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2013-07-29 18:53:17 +00:00
|
|
|
// GLFW 3.0 - 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>
|
|
|
|
//
|
|
|
|
// 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"
|
|
|
|
|
2013-03-01 14:18:53 +00:00
|
|
|
// Internal key state used for sticky keys
|
|
|
|
#define _GLFW_STICK 3
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-02-03 23:51:35 +00:00
|
|
|
// Sets the cursor mode for the specified window
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2012-06-21 11:35:35 +00:00
|
|
|
static void setCursorMode(_GLFWwindow* window, int newMode)
|
2012-02-03 23:51:35 +00:00
|
|
|
{
|
2013-10-09 17:03:47 +00:00
|
|
|
const int oldMode = window->cursorMode;
|
2012-02-03 23:51:35 +00:00
|
|
|
|
2012-06-21 11:35:35 +00:00
|
|
|
if (newMode != GLFW_CURSOR_NORMAL &&
|
|
|
|
newMode != GLFW_CURSOR_HIDDEN &&
|
2013-04-26 15:20:31 +00:00
|
|
|
newMode != GLFW_CURSOR_DISABLED)
|
2012-02-03 23:51:35 +00:00
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, NULL);
|
2012-02-03 23:51:35 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-06-21 11:35:35 +00:00
|
|
|
if (oldMode == newMode)
|
2012-02-03 23:51:35 +00:00
|
|
|
return;
|
|
|
|
|
2013-10-09 17:03:47 +00:00
|
|
|
window->cursorMode = newMode;
|
|
|
|
|
2013-04-18 22:19:48 +00:00
|
|
|
if (window == _glfw.focusedWindow)
|
2013-04-16 18:46:58 +00:00
|
|
|
{
|
2013-04-26 15:20:31 +00:00
|
|
|
if (oldMode == GLFW_CURSOR_DISABLED)
|
2013-07-07 20:05:29 +00:00
|
|
|
{
|
|
|
|
window->cursorPosX = _glfw.cursorPosX;
|
|
|
|
window->cursorPosY = _glfw.cursorPosY;
|
|
|
|
|
2013-04-18 22:19:48 +00:00
|
|
|
_glfwPlatformSetCursorPos(window, _glfw.cursorPosX, _glfw.cursorPosY);
|
2013-07-07 20:05:29 +00:00
|
|
|
}
|
2013-04-26 15:20:31 +00:00
|
|
|
else if (newMode == GLFW_CURSOR_DISABLED)
|
2013-04-18 22:19:48 +00:00
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
|
|
|
|
_glfw.cursorPosX = window->cursorPosX;
|
|
|
|
_glfw.cursorPosY = window->cursorPosY;
|
2012-11-25 13:53:33 +00:00
|
|
|
|
2013-04-18 22:19:48 +00:00
|
|
|
_glfwPlatformGetWindowSize(window, &width, &height);
|
|
|
|
_glfwPlatformSetCursorPos(window, width / 2.0, height / 2.0);
|
|
|
|
}
|
2012-02-03 23:51:35 +00:00
|
|
|
|
2013-04-18 22:19:48 +00:00
|
|
|
_glfwPlatformSetCursorMode(window, newMode);
|
2013-04-16 18:46:58 +00:00
|
|
|
}
|
2012-02-03 23:51:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set sticky keys mode for the specified window
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2012-02-03 23:51:35 +00:00
|
|
|
static void setStickyKeys(_GLFWwindow* window, int enabled)
|
|
|
|
{
|
|
|
|
if (window->stickyKeys == enabled)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!enabled)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
// Release all sticky keys
|
|
|
|
for (i = 0; i <= GLFW_KEY_LAST; i++)
|
|
|
|
{
|
2013-01-15 21:44:50 +00:00
|
|
|
if (window->key[i] == _GLFW_STICK)
|
2012-02-03 23:51:35 +00:00
|
|
|
window->key[i] = GLFW_RELEASE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window->stickyKeys = enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set sticky mouse buttons mode for the specified window
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2012-02-03 23:51:35 +00:00
|
|
|
static void setStickyMouseButtons(_GLFWwindow* window, int enabled)
|
|
|
|
{
|
|
|
|
if (window->stickyMouseButtons == enabled)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!enabled)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
// Release all sticky mouse buttons
|
|
|
|
for (i = 0; i <= GLFW_MOUSE_BUTTON_LAST; i++)
|
|
|
|
{
|
2013-01-15 21:44:50 +00:00
|
|
|
if (window->mouseButton[i] == _GLFW_STICK)
|
2012-02-03 23:51:35 +00:00
|
|
|
window->mouseButton[i] = GLFW_RELEASE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window->stickyMouseButtons = enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-09 15:13:58 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2013-01-23 18:47:05 +00:00
|
|
|
////// GLFW event API //////
|
2011-10-09 15:13:58 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-05-30 15:19:12 +00:00
|
|
|
void _glfwInputKey(_GLFWwindow* window, int key, int scancode, int action, int mods)
|
2011-10-09 15:13:58 +00:00
|
|
|
{
|
2012-02-03 23:52:13 +00:00
|
|
|
GLboolean repeated = GL_FALSE;
|
2011-10-09 15:13:58 +00:00
|
|
|
|
2013-06-05 13:26:52 +00:00
|
|
|
if (action == GLFW_RELEASE && window->key[key] == GLFW_RELEASE)
|
|
|
|
return;
|
|
|
|
|
2013-05-30 15:19:12 +00:00
|
|
|
if (key >= 0 && key <= GLFW_KEY_LAST)
|
|
|
|
{
|
|
|
|
if (action == GLFW_PRESS && window->key[key] == GLFW_PRESS)
|
|
|
|
repeated = GL_TRUE;
|
2011-10-09 15:13:58 +00:00
|
|
|
|
2013-05-30 15:19:12 +00:00
|
|
|
if (action == GLFW_RELEASE && window->stickyKeys)
|
|
|
|
window->key[key] = _GLFW_STICK;
|
|
|
|
else
|
|
|
|
window->key[key] = (char) action;
|
|
|
|
}
|
2011-10-09 15:13:58 +00:00
|
|
|
|
2013-01-12 16:06:35 +00:00
|
|
|
if (repeated)
|
|
|
|
action = GLFW_REPEAT;
|
|
|
|
|
|
|
|
if (window->callbacks.key)
|
2013-05-30 15:19:12 +00:00
|
|
|
window->callbacks.key((GLFWwindow*) window, key, scancode, action, mods);
|
2011-10-09 15:13:58 +00:00
|
|
|
}
|
|
|
|
|
2013-02-25 16:02:28 +00:00
|
|
|
void _glfwInputChar(_GLFWwindow* window, unsigned int character)
|
2011-10-09 15:13:58 +00:00
|
|
|
{
|
2013-03-07 16:12:43 +00:00
|
|
|
if (character < 32 || (character > 126 && character < 160))
|
2011-10-09 15:13:58 +00:00
|
|
|
return;
|
|
|
|
|
2013-01-15 20:34:26 +00:00
|
|
|
if (window->callbacks.character)
|
|
|
|
window->callbacks.character((GLFWwindow*) window, character);
|
2011-10-09 15:13:58 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 19:54:09 +00:00
|
|
|
void _glfwInputScroll(_GLFWwindow* window, double xoffset, double yoffset)
|
2011-10-09 15:13:58 +00:00
|
|
|
{
|
2013-01-15 20:34:26 +00:00
|
|
|
if (window->callbacks.scroll)
|
|
|
|
window->callbacks.scroll((GLFWwindow*) window, xoffset, yoffset);
|
2011-10-09 15:13:58 +00:00
|
|
|
}
|
|
|
|
|
2012-12-09 18:19:00 +00:00
|
|
|
void _glfwInputMouseClick(_GLFWwindow* window, int button, int action, int mods)
|
2011-10-09 15:13:58 +00:00
|
|
|
{
|
|
|
|
if (button < 0 || button > GLFW_MOUSE_BUTTON_LAST)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Register mouse button action
|
|
|
|
if (action == GLFW_RELEASE && window->stickyMouseButtons)
|
2013-01-15 21:44:50 +00:00
|
|
|
window->mouseButton[button] = _GLFW_STICK;
|
2011-10-09 15:13:58 +00:00
|
|
|
else
|
|
|
|
window->mouseButton[button] = (char) action;
|
|
|
|
|
2013-01-15 20:34:26 +00:00
|
|
|
if (window->callbacks.mouseButton)
|
2012-12-09 18:19:00 +00:00
|
|
|
window->callbacks.mouseButton((GLFWwindow*) window, button, action, mods);
|
2011-10-09 15:13:58 +00:00
|
|
|
}
|
|
|
|
|
2013-04-04 14:16:21 +00:00
|
|
|
void _glfwInputCursorMotion(_GLFWwindow* window, double x, double y)
|
2011-10-09 15:13:58 +00:00
|
|
|
{
|
2013-04-26 15:20:31 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_DISABLED)
|
2011-10-09 15:13:58 +00:00
|
|
|
{
|
2013-04-04 14:16:21 +00:00
|
|
|
if (x == 0.0 && y == 0.0)
|
2011-10-13 12:07:52 +00:00
|
|
|
return;
|
|
|
|
|
2011-10-13 13:20:59 +00:00
|
|
|
window->cursorPosX += x;
|
|
|
|
window->cursorPosY += y;
|
2011-10-09 15:13:58 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-10-13 13:20:59 +00:00
|
|
|
if (window->cursorPosX == x && window->cursorPosY == y)
|
2011-10-13 12:07:52 +00:00
|
|
|
return;
|
|
|
|
|
2011-10-13 13:20:59 +00:00
|
|
|
window->cursorPosX = x;
|
|
|
|
window->cursorPosY = y;
|
2011-10-09 15:13:58 +00:00
|
|
|
}
|
|
|
|
|
2013-01-15 20:34:26 +00:00
|
|
|
if (window->callbacks.cursorPos)
|
2012-01-24 17:28:37 +00:00
|
|
|
{
|
2013-01-15 20:34:26 +00:00
|
|
|
window->callbacks.cursorPos((GLFWwindow*) window,
|
|
|
|
window->cursorPosX,
|
|
|
|
window->cursorPosY);
|
2012-01-24 17:28:37 +00:00
|
|
|
}
|
2011-10-09 15:13:58 +00:00
|
|
|
}
|
|
|
|
|
2012-01-30 21:59:38 +00:00
|
|
|
void _glfwInputCursorEnter(_GLFWwindow* window, int entered)
|
2012-01-30 21:30:40 +00:00
|
|
|
{
|
2013-01-15 20:34:26 +00:00
|
|
|
if (window->callbacks.cursorEnter)
|
|
|
|
window->callbacks.cursorEnter((GLFWwindow*) window, entered);
|
2012-01-30 21:30:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-09 18:59:50 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW public API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
GLFWAPI int glfwGetInputMode(GLFWwindow* handle, int mode)
|
2012-02-04 00:34:12 +00:00
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(0);
|
2012-02-04 00:34:12 +00:00
|
|
|
|
|
|
|
switch (mode)
|
|
|
|
{
|
2013-04-26 12:29:55 +00:00
|
|
|
case GLFW_CURSOR:
|
2012-02-04 00:34:12 +00:00
|
|
|
return window->cursorMode;
|
|
|
|
case GLFW_STICKY_KEYS:
|
|
|
|
return window->stickyKeys;
|
|
|
|
case GLFW_STICKY_MOUSE_BUTTONS:
|
|
|
|
return window->stickyMouseButtons;
|
|
|
|
default:
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, NULL);
|
2012-02-04 00:34:12 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
GLFWAPI void glfwSetInputMode(GLFWwindow* handle, int mode, int value)
|
2012-02-04 00:34:12 +00:00
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT();
|
2012-02-04 00:34:12 +00:00
|
|
|
|
|
|
|
switch (mode)
|
|
|
|
{
|
2013-04-26 12:29:55 +00:00
|
|
|
case GLFW_CURSOR:
|
2012-02-04 00:34:12 +00:00
|
|
|
setCursorMode(window, value);
|
|
|
|
break;
|
|
|
|
case GLFW_STICKY_KEYS:
|
|
|
|
setStickyKeys(window, value ? GL_TRUE : GL_FALSE);
|
|
|
|
break;
|
|
|
|
case GLFW_STICKY_MOUSE_BUTTONS:
|
|
|
|
setStickyMouseButtons(window, value ? GL_TRUE : GL_FALSE);
|
|
|
|
break;
|
|
|
|
default:
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, NULL);
|
2012-02-04 00:34:12 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
GLFWAPI int glfwGetKey(GLFWwindow* handle, int key)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-04-06 18:38:55 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(GLFW_RELEASE);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-08 12:45:52 +00:00
|
|
|
if (key < 0 || key > GLFW_KEY_LAST)
|
2010-09-09 19:34:42 +00:00
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "The specified key is invalid");
|
2010-09-07 15:34:51 +00:00
|
|
|
return GLFW_RELEASE;
|
2010-09-09 19:34:42 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-01-15 21:44:50 +00:00
|
|
|
if (window->key[key] == _GLFW_STICK)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Sticky mode: release key now
|
2010-09-09 16:15:32 +00:00
|
|
|
window->key[key] = GLFW_RELEASE;
|
2010-09-07 15:34:51 +00:00
|
|
|
return GLFW_PRESS;
|
|
|
|
}
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
return (int) window->key[key];
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
GLFWAPI int glfwGetMouseButton(GLFWwindow* handle, int button)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-04-06 18:38:55 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(GLFW_RELEASE);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-08 12:45:52 +00:00
|
|
|
if (button < 0 || button > GLFW_MOUSE_BUTTON_LAST)
|
2010-09-09 19:34:42 +00:00
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM,
|
|
|
|
"The specified mouse button is invalid");
|
2010-09-07 15:34:51 +00:00
|
|
|
return GLFW_RELEASE;
|
2010-09-09 19:34:42 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-01-15 21:44:50 +00:00
|
|
|
if (window->mouseButton[button] == _GLFW_STICK)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Sticky mode: release mouse button now
|
2010-09-09 16:15:32 +00:00
|
|
|
window->mouseButton[button] = GLFW_RELEASE;
|
2010-09-07 15:34:51 +00:00
|
|
|
return GLFW_PRESS;
|
|
|
|
}
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
return (int) window->mouseButton[button];
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-04 14:16:21 +00:00
|
|
|
GLFWAPI void glfwGetCursorPos(GLFWwindow* handle, double* xpos, double* ypos)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-04-06 18:38:55 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT();
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
if (xpos)
|
2011-10-13 13:20:59 +00:00
|
|
|
*xpos = window->cursorPosX;
|
2010-09-07 23:57:24 +00:00
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
if (ypos)
|
2011-10-13 13:20:59 +00:00
|
|
|
*ypos = window->cursorPosY;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-04 14:16:21 +00:00
|
|
|
GLFWAPI void glfwSetCursorPos(GLFWwindow* handle, double xpos, double ypos)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-04-06 18:38:55 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT();
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (_glfw.focusedWindow != window)
|
2011-09-06 11:55:29 +00:00
|
|
|
return;
|
|
|
|
|
2012-06-22 11:53:02 +00:00
|
|
|
// Don't do anything if the cursor position did not change
|
2011-10-13 13:20:59 +00:00
|
|
|
if (xpos == window->cursorPosX && ypos == window->cursorPosY)
|
2010-09-07 15:34:51 +00:00
|
|
|
return;
|
|
|
|
|
2012-06-22 11:53:02 +00:00
|
|
|
// Set GLFW cursor position
|
2011-10-13 13:20:59 +00:00
|
|
|
window->cursorPosX = xpos;
|
|
|
|
window->cursorPosY = ypos;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-04-26 15:20:31 +00:00
|
|
|
// Do not move physical cursor if it is disabled
|
|
|
|
if (window->cursorMode == GLFW_CURSOR_DISABLED)
|
2010-09-07 15:34:51 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Update physical cursor position
|
2012-06-22 11:53:02 +00:00
|
|
|
_glfwPlatformSetCursorPos(window, xpos, ypos);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
GLFWAPI GLFWkeyfun glfwSetKeyCallback(GLFWwindow* handle, GLFWkeyfun cbfun)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-10-28 12:45:11 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2013-04-08 19:21:21 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-07-30 12:43:01 +00:00
|
|
|
_GLFW_SWAP_POINTERS(window->callbacks.key, cbfun);
|
|
|
|
return cbfun;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
GLFWAPI GLFWcharfun glfwSetCharCallback(GLFWwindow* handle, GLFWcharfun cbfun)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-10-28 12:45:11 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2013-04-08 19:21:21 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-07-30 12:43:01 +00:00
|
|
|
_GLFW_SWAP_POINTERS(window->callbacks.character, cbfun);
|
|
|
|
return cbfun;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
GLFWAPI GLFWmousebuttonfun glfwSetMouseButtonCallback(GLFWwindow* handle,
|
|
|
|
GLFWmousebuttonfun cbfun)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-10-28 12:45:11 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2013-04-08 19:21:21 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-07-30 12:43:01 +00:00
|
|
|
_GLFW_SWAP_POINTERS(window->callbacks.mouseButton, cbfun);
|
|
|
|
return cbfun;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
GLFWAPI GLFWcursorposfun glfwSetCursorPosCallback(GLFWwindow* handle,
|
|
|
|
GLFWcursorposfun cbfun)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-10-28 12:45:11 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2013-04-08 19:21:21 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-07-30 12:43:01 +00:00
|
|
|
_GLFW_SWAP_POINTERS(window->callbacks.cursorPos, cbfun);
|
|
|
|
return cbfun;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
GLFWAPI GLFWcursorenterfun glfwSetCursorEnterCallback(GLFWwindow* handle,
|
|
|
|
GLFWcursorenterfun cbfun)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-10-28 12:45:11 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2013-04-08 19:21:21 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-07-30 12:43:01 +00:00
|
|
|
_GLFW_SWAP_POINTERS(window->callbacks.cursorEnter, cbfun);
|
|
|
|
return cbfun;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
GLFWAPI GLFWscrollfun glfwSetScrollCallback(GLFWwindow* handle,
|
|
|
|
GLFWscrollfun cbfun)
|
2012-01-30 21:18:05 +00:00
|
|
|
{
|
2012-10-28 12:45:11 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2013-04-08 19:21:21 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-07-30 12:43:01 +00:00
|
|
|
_GLFW_SWAP_POINTERS(window->callbacks.scroll, cbfun);
|
|
|
|
return cbfun;
|
2012-01-30 21:18:05 +00:00
|
|
|
}
|
|
|
|
|