2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2014-01-22 00:32:00 +00:00
|
|
|
// GLFW 3.1 Win32 - 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"
|
|
|
|
|
2010-09-13 23:05:03 +00:00
|
|
|
#include <stdlib.h>
|
2012-08-14 11:51:39 +00:00
|
|
|
#include <malloc.h>
|
2014-09-09 14:26:57 +00:00
|
|
|
#include <string.h>
|
2012-09-12 19:37:36 +00:00
|
|
|
#include <windowsx.h>
|
2013-12-22 15:47:03 +00:00
|
|
|
#include <shellapi.h>
|
2010-09-13 21:50:04 +00:00
|
|
|
|
2013-05-30 15:19:12 +00:00
|
|
|
#define _GLFW_KEY_INVALID -2
|
|
|
|
|
2014-08-31 12:17:31 +00:00
|
|
|
#define _GLFW_WNDCLASSNAME L"GLFW30"
|
|
|
|
|
2013-02-20 16:29:06 +00:00
|
|
|
|
|
|
|
// Updates the cursor clip rect
|
|
|
|
//
|
|
|
|
static void updateClipRect(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
RECT clipRect;
|
|
|
|
GetClientRect(window->win32.handle, &clipRect);
|
|
|
|
ClientToScreen(window->win32.handle, (POINT*) &clipRect.left);
|
|
|
|
ClientToScreen(window->win32.handle, (POINT*) &clipRect.right);
|
|
|
|
ClipCursor(&clipRect);
|
|
|
|
}
|
|
|
|
|
2014-01-15 12:21:13 +00:00
|
|
|
// Hide the mouse cursor
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2012-06-22 11:53:02 +00:00
|
|
|
static void hideCursor(_GLFWwindow* window)
|
2011-10-04 22:47:39 +00:00
|
|
|
{
|
2013-03-11 21:57:39 +00:00
|
|
|
POINT pos;
|
|
|
|
|
|
|
|
ClipCursor(NULL);
|
2013-04-14 13:36:10 +00:00
|
|
|
|
2013-03-11 21:57:39 +00:00
|
|
|
if (GetCursorPos(&pos))
|
|
|
|
{
|
|
|
|
if (WindowFromPoint(pos) == window->win32.handle)
|
|
|
|
SetCursor(NULL);
|
2013-04-14 13:36:10 +00:00
|
|
|
}
|
2011-10-04 22:47:39 +00:00
|
|
|
}
|
|
|
|
|
2014-01-15 12:21:13 +00:00
|
|
|
// Disable the mouse cursor
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2014-01-15 12:21:13 +00:00
|
|
|
static void disableCursor(_GLFWwindow* window)
|
2011-10-04 22:47:39 +00:00
|
|
|
{
|
2014-02-11 17:24:01 +00:00
|
|
|
POINT pos;
|
2013-04-14 13:36:10 +00:00
|
|
|
|
2013-02-20 16:29:06 +00:00
|
|
|
updateClipRect(window);
|
2014-02-11 17:24:01 +00:00
|
|
|
|
|
|
|
if (GetCursorPos(&pos))
|
|
|
|
{
|
|
|
|
if (WindowFromPoint(pos) == window->win32.handle)
|
|
|
|
SetCursor(NULL);
|
|
|
|
}
|
2011-10-04 22:47:39 +00:00
|
|
|
}
|
|
|
|
|
2014-01-15 12:21:13 +00:00
|
|
|
// Restores the mouse cursor
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2014-01-15 12:21:13 +00:00
|
|
|
static void restoreCursor(_GLFWwindow* window)
|
2011-10-04 22:47:39 +00:00
|
|
|
{
|
2013-03-11 21:57:39 +00:00
|
|
|
POINT pos;
|
2012-10-30 16:37:34 +00:00
|
|
|
|
2011-10-04 22:47:39 +00:00
|
|
|
ClipCursor(NULL);
|
2013-04-14 13:36:10 +00:00
|
|
|
|
2013-03-11 21:57:39 +00:00
|
|
|
if (GetCursorPos(&pos))
|
|
|
|
{
|
|
|
|
if (WindowFromPoint(pos) == window->win32.handle)
|
2013-12-04 13:19:22 +00:00
|
|
|
{
|
|
|
|
if (window->cursor)
|
|
|
|
SetCursor(window->cursor->win32.handle);
|
|
|
|
else
|
|
|
|
SetCursor(LoadCursorW(NULL, IDC_ARROW));
|
|
|
|
}
|
2013-03-11 21:57:39 +00:00
|
|
|
}
|
2011-10-04 22:47:39 +00:00
|
|
|
}
|
|
|
|
|
2014-09-02 14:52:16 +00:00
|
|
|
// Translates a GLFW standard cursor to a resource ID
|
|
|
|
//
|
|
|
|
static LPWSTR translateCursorShape(int shape)
|
|
|
|
{
|
|
|
|
switch (shape)
|
|
|
|
{
|
|
|
|
case GLFW_ARROW_CURSOR:
|
|
|
|
return IDC_ARROW;
|
|
|
|
case GLFW_IBEAM_CURSOR:
|
|
|
|
return IDC_IBEAM;
|
|
|
|
case GLFW_CROSSHAIR_CURSOR:
|
|
|
|
return IDC_CROSS;
|
|
|
|
case GLFW_HAND_CURSOR:
|
|
|
|
return IDC_HAND;
|
|
|
|
case GLFW_HRESIZE_CURSOR:
|
|
|
|
return IDC_SIZEWE;
|
|
|
|
case GLFW_VRESIZE_CURSOR:
|
|
|
|
return IDC_SIZENS;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-12-09 18:19:00 +00:00
|
|
|
// Retrieves and translates modifier keys
|
|
|
|
//
|
|
|
|
static int getKeyMods(void)
|
|
|
|
{
|
|
|
|
int mods = 0;
|
|
|
|
|
|
|
|
if (GetKeyState(VK_SHIFT) & (1 << 31))
|
|
|
|
mods |= GLFW_MOD_SHIFT;
|
|
|
|
if (GetKeyState(VK_CONTROL) & (1 << 31))
|
2013-05-23 12:11:05 +00:00
|
|
|
mods |= GLFW_MOD_CONTROL;
|
2012-12-09 18:19:00 +00:00
|
|
|
if (GetKeyState(VK_MENU) & (1 << 31))
|
|
|
|
mods |= GLFW_MOD_ALT;
|
2013-05-23 11:22:27 +00:00
|
|
|
if ((GetKeyState(VK_LWIN) | GetKeyState(VK_RWIN)) & (1 << 31))
|
|
|
|
mods |= GLFW_MOD_SUPER;
|
2012-12-09 18:19:00 +00:00
|
|
|
|
|
|
|
return mods;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retrieves and translates modifier keys
|
|
|
|
//
|
|
|
|
static int getAsyncKeyMods(void)
|
|
|
|
{
|
|
|
|
int mods = 0;
|
|
|
|
|
|
|
|
if (GetAsyncKeyState(VK_SHIFT) & (1 << 31))
|
|
|
|
mods |= GLFW_MOD_SHIFT;
|
|
|
|
if (GetAsyncKeyState(VK_CONTROL) & (1 << 31))
|
2013-05-23 12:11:05 +00:00
|
|
|
mods |= GLFW_MOD_CONTROL;
|
2012-12-09 18:19:00 +00:00
|
|
|
if (GetAsyncKeyState(VK_MENU) & (1 << 31))
|
|
|
|
mods |= GLFW_MOD_ALT;
|
2013-05-23 11:22:27 +00:00
|
|
|
if ((GetAsyncKeyState(VK_LWIN) | GetAsyncKeyState(VK_RWIN)) & (1 << 31))
|
|
|
|
mods |= GLFW_MOD_SUPER;
|
2012-12-09 18:19:00 +00:00
|
|
|
|
|
|
|
return mods;
|
|
|
|
}
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
// Translates a Windows key to the corresponding GLFW key
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2010-09-10 20:03:36 +00:00
|
|
|
static int translateKey(WPARAM wParam, LPARAM lParam)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2014-03-30 14:23:22 +00:00
|
|
|
if (wParam == VK_CONTROL)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// The CTRL keys require special handling
|
2013-04-17 13:29:17 +00:00
|
|
|
|
2014-03-30 14:23:22 +00:00
|
|
|
MSG next;
|
|
|
|
DWORD time;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-03-30 14:23:22 +00:00
|
|
|
// Is this an extended key (i.e. right key)?
|
|
|
|
if (lParam & 0x01000000)
|
|
|
|
return GLFW_KEY_RIGHT_CONTROL;
|
2013-04-17 13:29:17 +00:00
|
|
|
|
2014-03-30 14:23:22 +00:00
|
|
|
// Here is a trick: "Alt Gr" sends LCTRL, then RALT. We only
|
|
|
|
// want the RALT message, so we try to see if the next message
|
|
|
|
// is a RALT message. In that case, this is a false LCTRL!
|
|
|
|
time = GetMessageTime();
|
|
|
|
|
|
|
|
if (PeekMessageW(&next, NULL, 0, 0, PM_NOREMOVE))
|
|
|
|
{
|
|
|
|
if (next.message == WM_KEYDOWN ||
|
|
|
|
next.message == WM_SYSKEYDOWN ||
|
|
|
|
next.message == WM_KEYUP ||
|
|
|
|
next.message == WM_SYSKEYUP)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2014-03-30 14:23:22 +00:00
|
|
|
if (next.wParam == VK_MENU &&
|
|
|
|
(next.lParam & 0x01000000) &&
|
|
|
|
next.time == time)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2014-03-30 14:23:22 +00:00
|
|
|
// Next message is a RALT down message, which
|
|
|
|
// means that this is not a proper LCTRL message
|
|
|
|
return _GLFW_KEY_INVALID;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-30 14:23:22 +00:00
|
|
|
return GLFW_KEY_LEFT_CONTROL;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2011-01-10 20:19:27 +00:00
|
|
|
|
2014-03-30 14:23:22 +00:00
|
|
|
return _glfw.win32.publicKeys[HIWORD(lParam) & 0x1FF];
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2015-01-05 20:55:15 +00:00
|
|
|
// Enter full screen mode
|
2014-09-10 11:40:40 +00:00
|
|
|
//
|
|
|
|
static GLboolean enterFullscreenMode(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
GLFWvidmode mode;
|
|
|
|
GLboolean status;
|
|
|
|
int xpos, ypos;
|
|
|
|
|
|
|
|
status = _glfwSetVideoMode(window->monitor, &window->videoMode);
|
|
|
|
|
|
|
|
_glfwPlatformGetVideoMode(window->monitor, &mode);
|
|
|
|
_glfwPlatformGetMonitorPos(window->monitor, &xpos, &ypos);
|
|
|
|
|
|
|
|
SetWindowPos(window->win32.handle, HWND_TOPMOST,
|
|
|
|
xpos, ypos, mode.width, mode.height, SWP_NOCOPYBITS);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2015-01-05 20:55:15 +00:00
|
|
|
// Leave full screen mode
|
2014-09-10 11:40:40 +00:00
|
|
|
//
|
|
|
|
static void leaveFullscreenMode(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
_glfwRestoreVideoMode(window->monitor);
|
|
|
|
}
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
// Window callback function (handles window events)
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2010-09-10 20:03:36 +00:00
|
|
|
static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|
|
|
WPARAM wParam, LPARAM lParam)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2014-03-06 17:30:14 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) GetWindowLongPtrW(hWnd, 0);
|
2010-09-12 14:26:00 +00:00
|
|
|
|
2010-09-10 20:03:36 +00:00
|
|
|
switch (uMsg)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2014-04-18 13:49:45 +00:00
|
|
|
case WM_NCCREATE:
|
2010-09-13 23:05:03 +00:00
|
|
|
{
|
2014-03-06 17:30:14 +00:00
|
|
|
CREATESTRUCTW* cs = (CREATESTRUCTW*) lParam;
|
|
|
|
SetWindowLongPtrW(hWnd, 0, (LONG_PTR) cs->lpCreateParams);
|
2010-09-13 23:05:03 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-12-26 11:25:48 +00:00
|
|
|
case WM_SETFOCUS:
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2014-12-26 11:25:48 +00:00
|
|
|
if (window->cursorMode != GLFW_CURSOR_NORMAL)
|
|
|
|
_glfwPlatformApplyCursorMode(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-12-26 11:25:48 +00:00
|
|
|
if (window->monitor && window->autoIconify)
|
|
|
|
enterFullscreenMode(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-12-26 11:25:48 +00:00
|
|
|
_glfwInputWindowFocus(window, GL_TRUE);
|
2010-09-07 15:34:51 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-12-26 11:25:48 +00:00
|
|
|
case WM_KILLFOCUS:
|
2013-12-05 01:15:14 +00:00
|
|
|
{
|
2014-12-26 11:25:48 +00:00
|
|
|
if (window->cursorMode != GLFW_CURSOR_NORMAL)
|
|
|
|
restoreCursor(window);
|
|
|
|
|
|
|
|
if (window->monitor && window->autoIconify)
|
2013-12-05 01:15:14 +00:00
|
|
|
{
|
2014-12-26 11:25:48 +00:00
|
|
|
_glfwPlatformIconifyWindow(window);
|
|
|
|
leaveFullscreenMode(window);
|
2013-12-05 01:15:14 +00:00
|
|
|
}
|
|
|
|
|
2014-12-26 11:25:48 +00:00
|
|
|
_glfwInputWindowFocus(window, GL_FALSE);
|
2013-12-05 01:15:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
case WM_SYSCOMMAND:
|
|
|
|
{
|
2010-09-10 20:03:36 +00:00
|
|
|
switch (wParam & 0xfff0)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
case SC_SCREENSAVE:
|
|
|
|
case SC_MONITORPOWER:
|
|
|
|
{
|
2012-09-27 19:37:36 +00:00
|
|
|
if (window->monitor)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2015-01-05 20:55:15 +00:00
|
|
|
// We are running in full screen mode, so disallow
|
2010-09-10 20:03:36 +00:00
|
|
|
// screen saver and screen blanking
|
2010-09-07 15:34:51 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// User trying to access application menu using ALT?
|
|
|
|
case SC_KEYMENU:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WM_CLOSE:
|
|
|
|
{
|
2012-08-10 11:31:15 +00:00
|
|
|
_glfwInputWindowCloseRequest(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WM_KEYDOWN:
|
|
|
|
case WM_SYSKEYDOWN:
|
|
|
|
{
|
2014-03-30 18:52:09 +00:00
|
|
|
const int scancode = (lParam >> 16) & 0x1ff;
|
2013-05-30 15:19:12 +00:00
|
|
|
const int key = translateKey(wParam, lParam);
|
|
|
|
if (key == _GLFW_KEY_INVALID)
|
|
|
|
break;
|
|
|
|
|
|
|
|
_glfwInputKey(window, key, scancode, GLFW_PRESS, getKeyMods());
|
2012-02-07 15:44:22 +00:00
|
|
|
break;
|
2010-11-15 19:21:09 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-09-19 11:17:53 +00:00
|
|
|
case WM_CHAR:
|
2014-06-12 21:04:20 +00:00
|
|
|
{
|
|
|
|
_glfwInputChar(window, (unsigned int) wParam, getKeyMods(), GL_TRUE);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-08-19 11:08:35 +00:00
|
|
|
case WM_SYSCHAR:
|
2012-09-19 11:17:53 +00:00
|
|
|
{
|
2014-06-12 21:04:20 +00:00
|
|
|
_glfwInputChar(window, (unsigned int) wParam, getKeyMods(), GL_FALSE);
|
2012-09-19 11:17:53 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-04-10 22:59:21 +00:00
|
|
|
case WM_UNICHAR:
|
|
|
|
{
|
|
|
|
// This message is not sent by Windows, but is sent by some
|
|
|
|
// third-party input method engines
|
|
|
|
|
|
|
|
if (wParam == UNICODE_NOCHAR)
|
|
|
|
{
|
|
|
|
// Returning TRUE here announces support for this message
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2014-06-12 21:04:20 +00:00
|
|
|
_glfwInputChar(window, (unsigned int) wParam, getKeyMods(), GL_TRUE);
|
2013-04-10 22:59:21 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
case WM_KEYUP:
|
|
|
|
case WM_SYSKEYUP:
|
|
|
|
{
|
2012-12-09 18:19:00 +00:00
|
|
|
const int mods = getKeyMods();
|
2014-03-30 18:52:09 +00:00
|
|
|
const int scancode = (lParam >> 16) & 0x1ff;
|
2013-05-30 15:19:12 +00:00
|
|
|
const int key = translateKey(wParam, lParam);
|
|
|
|
if (key == _GLFW_KEY_INVALID)
|
|
|
|
break;
|
2012-12-09 18:19:00 +00:00
|
|
|
|
2010-09-10 20:03:36 +00:00
|
|
|
if (wParam == VK_SHIFT)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2013-06-05 13:17:16 +00:00
|
|
|
// Release both Shift keys on Shift up event, as only one event
|
|
|
|
// is sent even if both keys are released
|
2013-05-30 15:19:12 +00:00
|
|
|
_glfwInputKey(window, GLFW_KEY_LEFT_SHIFT, scancode, GLFW_RELEASE, mods);
|
|
|
|
_glfwInputKey(window, GLFW_KEY_RIGHT_SHIFT, scancode, GLFW_RELEASE, mods);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2013-02-21 17:39:22 +00:00
|
|
|
else if (wParam == VK_SNAPSHOT)
|
|
|
|
{
|
|
|
|
// Key down is not reported for the print screen key
|
2013-05-30 15:19:12 +00:00
|
|
|
_glfwInputKey(window, key, scancode, GLFW_PRESS, mods);
|
|
|
|
_glfwInputKey(window, key, scancode, GLFW_RELEASE, mods);
|
2013-02-21 17:39:22 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
else
|
2013-05-30 15:19:12 +00:00
|
|
|
_glfwInputKey(window, key, scancode, GLFW_RELEASE, mods);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-02-07 15:44:22 +00:00
|
|
|
break;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case WM_LBUTTONDOWN:
|
|
|
|
case WM_RBUTTONDOWN:
|
|
|
|
case WM_MBUTTONDOWN:
|
2013-04-16 18:57:51 +00:00
|
|
|
case WM_XBUTTONDOWN:
|
2010-09-10 20:03:36 +00:00
|
|
|
{
|
2012-12-09 18:19:00 +00:00
|
|
|
const int mods = getKeyMods();
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
SetCapture(hWnd);
|
2010-09-10 20:03:36 +00:00
|
|
|
|
2013-04-16 18:57:51 +00:00
|
|
|
if (uMsg == WM_LBUTTONDOWN)
|
2012-12-09 18:19:00 +00:00
|
|
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_LEFT, GLFW_PRESS, mods);
|
2013-04-16 18:57:51 +00:00
|
|
|
else if (uMsg == WM_RBUTTONDOWN)
|
2012-12-09 18:19:00 +00:00
|
|
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_RIGHT, GLFW_PRESS, mods);
|
2013-04-16 18:57:51 +00:00
|
|
|
else if (uMsg == WM_MBUTTONDOWN)
|
2012-12-09 18:19:00 +00:00
|
|
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_MIDDLE, GLFW_PRESS, mods);
|
2013-04-16 18:57:51 +00:00
|
|
|
else
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2013-04-16 18:57:51 +00:00
|
|
|
if (HIWORD(wParam) == XBUTTON1)
|
2012-12-09 18:19:00 +00:00
|
|
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_4, GLFW_PRESS, mods);
|
2013-04-16 18:57:51 +00:00
|
|
|
else if (HIWORD(wParam) == XBUTTON2)
|
2012-12-09 18:19:00 +00:00
|
|
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_5, GLFW_PRESS, mods);
|
2010-09-10 20:03:36 +00:00
|
|
|
|
2013-04-16 18:57:51 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
return 0;
|
2010-09-10 20:03:36 +00:00
|
|
|
}
|
|
|
|
|
2013-04-16 18:57:51 +00:00
|
|
|
case WM_LBUTTONUP:
|
2010-09-07 15:34:51 +00:00
|
|
|
case WM_RBUTTONUP:
|
|
|
|
case WM_MBUTTONUP:
|
2013-04-16 18:57:51 +00:00
|
|
|
case WM_XBUTTONUP:
|
2010-09-10 20:03:36 +00:00
|
|
|
{
|
2012-12-09 18:19:00 +00:00
|
|
|
const int mods = getKeyMods();
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
ReleaseCapture();
|
2010-09-10 20:03:36 +00:00
|
|
|
|
2013-04-16 18:57:51 +00:00
|
|
|
if (uMsg == WM_LBUTTONUP)
|
2012-12-09 18:19:00 +00:00
|
|
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_LEFT, GLFW_RELEASE, mods);
|
2013-04-16 18:57:51 +00:00
|
|
|
else if (uMsg == WM_RBUTTONUP)
|
2012-12-09 18:19:00 +00:00
|
|
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_RIGHT, GLFW_RELEASE, mods);
|
2013-04-16 18:57:51 +00:00
|
|
|
else if (uMsg == WM_MBUTTONUP)
|
2012-12-09 18:19:00 +00:00
|
|
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_MIDDLE, GLFW_RELEASE, mods);
|
2013-04-16 18:57:51 +00:00
|
|
|
else
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2013-04-16 18:57:51 +00:00
|
|
|
if (HIWORD(wParam) == XBUTTON1)
|
2012-12-09 18:19:00 +00:00
|
|
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_4, GLFW_RELEASE, mods);
|
2013-04-16 18:57:51 +00:00
|
|
|
else if (HIWORD(wParam) == XBUTTON2)
|
2012-12-09 18:19:00 +00:00
|
|
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_5, GLFW_RELEASE, mods);
|
2013-04-16 18:57:51 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2010-09-10 20:03:36 +00:00
|
|
|
|
2013-04-16 18:57:51 +00:00
|
|
|
return 0;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case WM_MOUSEMOVE:
|
|
|
|
{
|
2014-02-11 17:24:01 +00:00
|
|
|
const int x = GET_X_LPARAM(lParam);
|
|
|
|
const int y = GET_Y_LPARAM(lParam);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-02-11 17:24:01 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_DISABLED)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2014-02-11 17:24:01 +00:00
|
|
|
if (_glfw.focusedWindow != window)
|
|
|
|
break;
|
2010-09-10 20:03:36 +00:00
|
|
|
|
2014-02-11 17:24:01 +00:00
|
|
|
_glfwInputCursorMotion(window,
|
|
|
|
x - window->win32.cursorPosX,
|
|
|
|
y - window->win32.cursorPosY);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2014-02-11 17:24:01 +00:00
|
|
|
else
|
|
|
|
_glfwInputCursorMotion(window, x, y);
|
|
|
|
|
|
|
|
window->win32.cursorPosX = x;
|
|
|
|
window->win32.cursorPosY = y;
|
2010-09-10 20:03:36 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (!window->win32.cursorInside)
|
2012-03-22 12:17:44 +00:00
|
|
|
{
|
|
|
|
TRACKMOUSEEVENT tme;
|
|
|
|
ZeroMemory(&tme, sizeof(tme));
|
|
|
|
tme.cbSize = sizeof(tme);
|
|
|
|
tme.dwFlags = TME_LEAVE;
|
2013-01-02 00:40:42 +00:00
|
|
|
tme.hwndTrack = window->win32.handle;
|
2012-03-22 12:17:44 +00:00
|
|
|
TrackMouseEvent(&tme);
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
window->win32.cursorInside = GL_TRUE;
|
2012-03-22 12:17:44 +00:00
|
|
|
_glfwInputCursorEnter(window, GL_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WM_MOUSELEAVE:
|
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
window->win32.cursorInside = GL_FALSE;
|
2012-03-22 12:17:44 +00:00
|
|
|
_glfwInputCursorEnter(window, GL_FALSE);
|
2010-09-07 15:34:51 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WM_MOUSEWHEEL:
|
|
|
|
{
|
2012-03-28 19:54:09 +00:00
|
|
|
_glfwInputScroll(window, 0.0, (SHORT) HIWORD(wParam) / (double) WHEEL_DELTA);
|
2010-09-27 00:32:41 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2010-09-10 20:03:36 +00:00
|
|
|
|
2010-09-27 00:32:41 +00:00
|
|
|
case WM_MOUSEHWHEEL:
|
|
|
|
{
|
|
|
|
// This message is only sent on Windows Vista and later
|
2014-10-26 17:29:34 +00:00
|
|
|
// NOTE: The X-axis is inverted for consistency with OS X and X11.
|
2014-10-26 12:53:45 +00:00
|
|
|
_glfwInputScroll(window, -((SHORT) HIWORD(wParam) / (double) WHEEL_DELTA), 0.0);
|
2010-09-12 14:26:00 +00:00
|
|
|
return 0;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case WM_SIZE:
|
|
|
|
{
|
2014-01-15 12:21:13 +00:00
|
|
|
if (_glfw.focusedWindow == window)
|
2013-10-07 13:30:57 +00:00
|
|
|
{
|
2014-01-15 12:21:13 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_DISABLED)
|
|
|
|
updateClipRect(window);
|
2013-10-07 13:30:57 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2015-01-06 14:35:49 +00:00
|
|
|
if (!window->win32.iconified && wParam == SIZE_MINIMIZED)
|
|
|
|
{
|
|
|
|
window->win32.iconified = GL_TRUE;
|
2014-12-31 19:25:54 +00:00
|
|
|
_glfwInputWindowIconify(window, GL_TRUE);
|
2015-01-06 14:35:49 +00:00
|
|
|
}
|
|
|
|
else if (window->win32.iconified &&
|
|
|
|
(wParam == SIZE_RESTORED || wParam == SIZE_MAXIMIZED))
|
|
|
|
{
|
|
|
|
window->win32.iconified = GL_FALSE;
|
2014-12-31 19:25:54 +00:00
|
|
|
_glfwInputWindowIconify(window, GL_FALSE);
|
2015-01-06 14:35:49 +00:00
|
|
|
}
|
2014-12-31 19:25:54 +00:00
|
|
|
|
2013-06-03 10:51:57 +00:00
|
|
|
_glfwInputFramebufferSize(window, LOWORD(lParam), HIWORD(lParam));
|
2011-10-09 15:10:40 +00:00
|
|
|
_glfwInputWindowSize(window, LOWORD(lParam), HIWORD(lParam));
|
2010-09-07 15:34:51 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WM_MOVE:
|
|
|
|
{
|
2014-01-15 12:21:13 +00:00
|
|
|
if (_glfw.focusedWindow == window)
|
2013-10-07 13:30:57 +00:00
|
|
|
{
|
2014-01-15 12:21:13 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_DISABLED)
|
|
|
|
updateClipRect(window);
|
2013-10-07 13:30:57 +00:00
|
|
|
}
|
2011-10-09 15:10:40 +00:00
|
|
|
|
2013-11-13 11:47:44 +00:00
|
|
|
// NOTE: This cannot use LOWORD/HIWORD recommended by MSDN, as
|
|
|
|
// those macros do not handle negative window positions correctly
|
2013-11-13 11:34:43 +00:00
|
|
|
_glfwInputWindowPos(window,
|
|
|
|
GET_X_LPARAM(lParam),
|
|
|
|
GET_Y_LPARAM(lParam));
|
2010-09-07 15:34:51 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WM_PAINT:
|
|
|
|
{
|
2011-10-09 19:12:13 +00:00
|
|
|
_glfwInputWindowDamage(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-04-08 19:16:48 +00:00
|
|
|
case WM_ERASEBKGND:
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-03-11 21:57:39 +00:00
|
|
|
case WM_SETCURSOR:
|
|
|
|
{
|
2014-01-15 12:21:13 +00:00
|
|
|
if (_glfw.focusedWindow == window && LOWORD(lParam) == HTCLIENT)
|
2013-03-11 21:57:39 +00:00
|
|
|
{
|
2014-01-15 12:21:13 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_HIDDEN ||
|
|
|
|
window->cursorMode == GLFW_CURSOR_DISABLED)
|
|
|
|
{
|
|
|
|
SetCursor(NULL);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2013-12-04 13:19:22 +00:00
|
|
|
else if (window->cursor)
|
|
|
|
{
|
|
|
|
SetCursor(window->cursor->win32.handle);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2013-03-11 21:57:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-10-14 18:32:06 +00:00
|
|
|
case WM_DEVICECHANGE:
|
|
|
|
{
|
|
|
|
if (DBT_DEVNODES_CHANGED == wParam)
|
|
|
|
{
|
2012-09-12 17:35:52 +00:00
|
|
|
_glfwInputMonitorChange();
|
2011-10-14 18:32:06 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2013-03-11 19:54:32 +00:00
|
|
|
|
|
|
|
case WM_DWMCOMPOSITIONCHANGED:
|
|
|
|
{
|
|
|
|
if (_glfwIsCompositionEnabled())
|
|
|
|
{
|
|
|
|
_GLFWwindow* previous = _glfwPlatformGetCurrentContext();
|
|
|
|
_glfwPlatformMakeContextCurrent(window);
|
|
|
|
_glfwPlatformSwapInterval(0);
|
|
|
|
_glfwPlatformMakeContextCurrent(previous);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Restore vsync if compositing was disabled
|
|
|
|
break;
|
|
|
|
}
|
2013-12-22 15:38:56 +00:00
|
|
|
|
2013-07-10 09:42:14 +00:00
|
|
|
case WM_DROPFILES:
|
|
|
|
{
|
2013-12-22 15:38:56 +00:00
|
|
|
HDROP hDrop = (HDROP) wParam;
|
|
|
|
POINT pt;
|
2013-12-22 18:28:46 +00:00
|
|
|
int i;
|
|
|
|
|
2014-03-06 17:30:14 +00:00
|
|
|
const int count = DragQueryFileW(hDrop, 0xffffffff, NULL, 0);
|
2015-01-27 22:04:22 +00:00
|
|
|
char** paths = calloc(count, sizeof(char*));
|
2013-12-22 15:38:56 +00:00
|
|
|
|
|
|
|
// Move the mouse to the position of the drop
|
|
|
|
DragQueryPoint(hDrop, &pt);
|
|
|
|
_glfwInputCursorMotion(window, pt.x, pt.y);
|
|
|
|
|
2013-12-22 18:28:46 +00:00
|
|
|
for (i = 0; i < count; i++)
|
2013-12-22 15:38:56 +00:00
|
|
|
{
|
2014-03-06 17:30:14 +00:00
|
|
|
const UINT length = DragQueryFileW(hDrop, i, NULL, 0);
|
2013-12-22 18:28:46 +00:00
|
|
|
WCHAR* buffer = calloc(length + 1, sizeof(WCHAR));
|
2013-12-22 15:38:56 +00:00
|
|
|
|
2014-03-06 17:30:14 +00:00
|
|
|
DragQueryFileW(hDrop, i, buffer, length + 1);
|
2015-01-27 22:04:22 +00:00
|
|
|
paths[i] = _glfwCreateUTF8FromWideString(buffer);
|
2013-12-22 15:38:56 +00:00
|
|
|
|
2013-12-22 18:28:46 +00:00
|
|
|
free(buffer);
|
2013-12-22 15:38:56 +00:00
|
|
|
}
|
|
|
|
|
2015-01-27 22:04:22 +00:00
|
|
|
_glfwInputDrop(window, count, (const char**) paths);
|
2013-12-22 18:28:46 +00:00
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
2015-01-27 22:04:22 +00:00
|
|
|
free(paths[i]);
|
|
|
|
free(paths);
|
2013-12-22 18:28:46 +00:00
|
|
|
|
2013-12-22 15:38:56 +00:00
|
|
|
DragFinish(hDrop);
|
2014-02-10 23:56:52 +00:00
|
|
|
return 0;
|
2013-07-10 09:42:14 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2010-09-10 20:03:36 +00:00
|
|
|
return DefWindowProc(hWnd, uMsg, wParam, lParam);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Translate client window size to full window size (including window borders)
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2010-09-12 14:26:00 +00:00
|
|
|
static void getFullWindowSize(_GLFWwindow* window,
|
|
|
|
int clientWidth, int clientHeight,
|
2010-09-10 20:03:36 +00:00
|
|
|
int* fullWidth, int* fullHeight)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2013-02-20 16:44:16 +00:00
|
|
|
RECT rect = { 0, 0, clientWidth, clientHeight };
|
2013-04-16 21:19:58 +00:00
|
|
|
AdjustWindowRectEx(&rect, window->win32.dwStyle,
|
|
|
|
FALSE, window->win32.dwExStyle);
|
2013-02-20 16:44:16 +00:00
|
|
|
*fullWidth = rect.right - rect.left;
|
|
|
|
*fullHeight = rect.bottom - rect.top;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Creates the GLFW window and rendering context
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2010-09-12 14:26:00 +00:00
|
|
|
static int createWindow(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
2014-03-06 19:05:32 +00:00
|
|
|
const _GLFWctxconfig* ctxconfig,
|
2010-09-10 20:03:36 +00:00
|
|
|
const _GLFWfbconfig* fbconfig)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2013-02-20 15:00:53 +00:00
|
|
|
int xpos, ypos, fullWidth, fullHeight;
|
2012-02-03 19:34:24 +00:00
|
|
|
WCHAR* wideTitle;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-01-04 05:42:37 +00:00
|
|
|
window->win32.dwStyle = WS_CLIPSIBLINGS | WS_CLIPCHILDREN;
|
|
|
|
window->win32.dwExStyle = WS_EX_APPWINDOW;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-09-27 19:37:36 +00:00
|
|
|
if (window->monitor)
|
2013-01-24 18:30:31 +00:00
|
|
|
{
|
2013-01-04 05:42:37 +00:00
|
|
|
window->win32.dwStyle |= WS_POPUP;
|
2013-01-24 18:30:31 +00:00
|
|
|
|
2014-09-10 11:40:40 +00:00
|
|
|
// NOTE: This window placement is temporary and approximate, as the
|
|
|
|
// correct position and size cannot be known until the monitor
|
|
|
|
// video mode has been set
|
2013-02-20 15:00:53 +00:00
|
|
|
_glfwPlatformGetMonitorPos(wndconfig->monitor, &xpos, &ypos);
|
2013-01-24 18:30:31 +00:00
|
|
|
fullWidth = wndconfig->width;
|
|
|
|
fullHeight = wndconfig->height;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
else
|
|
|
|
{
|
2013-04-08 13:16:32 +00:00
|
|
|
if (wndconfig->decorated)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2013-04-08 13:16:32 +00:00
|
|
|
window->win32.dwStyle |= WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-04-08 13:16:32 +00:00
|
|
|
if (wndconfig->resizable)
|
|
|
|
{
|
|
|
|
window->win32.dwStyle |= WS_MAXIMIZEBOX | WS_SIZEBOX;
|
|
|
|
window->win32.dwExStyle |= WS_EX_WINDOWEDGE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2013-05-26 16:00:38 +00:00
|
|
|
window->win32.dwStyle |= WS_POPUP;
|
2013-04-08 01:07:52 +00:00
|
|
|
|
2013-02-20 15:00:53 +00:00
|
|
|
xpos = CW_USEDEFAULT;
|
|
|
|
ypos = CW_USEDEFAULT;
|
2010-09-10 20:03:36 +00:00
|
|
|
|
2013-01-24 18:30:31 +00:00
|
|
|
getFullWindowSize(window,
|
2015-01-05 19:24:48 +00:00
|
|
|
wndconfig->width, wndconfig->height,
|
|
|
|
&fullWidth, &fullHeight);
|
2012-10-05 02:10:42 +00:00
|
|
|
}
|
|
|
|
|
2012-02-05 01:07:50 +00:00
|
|
|
wideTitle = _glfwCreateWideStringFromUTF8(wndconfig->title);
|
2012-02-03 19:34:24 +00:00
|
|
|
if (!wideTitle)
|
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Win32: Failed to convert title to wide string");
|
2012-02-07 15:21:19 +00:00
|
|
|
return GL_FALSE;
|
2012-02-03 19:34:24 +00:00
|
|
|
}
|
|
|
|
|
2014-03-06 17:30:14 +00:00
|
|
|
window->win32.handle = CreateWindowExW(window->win32.dwExStyle,
|
|
|
|
_GLFW_WNDCLASSNAME,
|
|
|
|
wideTitle,
|
|
|
|
window->win32.dwStyle,
|
|
|
|
xpos, ypos,
|
|
|
|
fullWidth, fullHeight,
|
|
|
|
NULL, // No parent window
|
|
|
|
NULL, // No window menu
|
|
|
|
GetModuleHandleW(NULL),
|
|
|
|
window); // Pass object to WM_CREATE
|
2010-09-12 14:26:00 +00:00
|
|
|
|
2013-01-22 22:28:41 +00:00
|
|
|
free(wideTitle);
|
2013-12-22 15:38:56 +00:00
|
|
|
|
2014-05-23 11:24:36 +00:00
|
|
|
if (!window->win32.handle)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR, "Win32: Failed to create window");
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
2014-02-10 14:03:23 +00:00
|
|
|
if (_glfw_ChangeWindowMessageFilterEx)
|
|
|
|
{
|
|
|
|
_glfw_ChangeWindowMessageFilterEx(window->win32.handle,
|
2014-05-23 11:24:36 +00:00
|
|
|
WM_DROPFILES, MSGFLT_ALLOW, NULL);
|
2014-02-10 14:03:23 +00:00
|
|
|
_glfw_ChangeWindowMessageFilterEx(window->win32.handle,
|
2014-05-23 11:24:36 +00:00
|
|
|
WM_COPYDATA, MSGFLT_ALLOW, NULL);
|
2014-02-10 14:03:23 +00:00
|
|
|
_glfw_ChangeWindowMessageFilterEx(window->win32.handle,
|
2014-05-23 11:24:36 +00:00
|
|
|
WM_COPYGLOBALDATA, MSGFLT_ALLOW, NULL);
|
2014-02-10 14:03:23 +00:00
|
|
|
}
|
|
|
|
|
2014-05-23 12:01:02 +00:00
|
|
|
if (wndconfig->floating && !wndconfig->monitor)
|
|
|
|
{
|
|
|
|
SetWindowPos(window->win32.handle,
|
|
|
|
HWND_TOPMOST,
|
|
|
|
0, 0, 0, 0,
|
|
|
|
SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE);
|
|
|
|
}
|
|
|
|
|
2013-12-22 15:38:56 +00:00
|
|
|
DragAcceptFiles(window->win32.handle, TRUE);
|
2013-01-22 22:28:41 +00:00
|
|
|
|
2014-03-06 19:05:32 +00:00
|
|
|
if (!_glfwCreateContext(window, ctxconfig, fbconfig))
|
2012-07-31 20:48:28 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Destroys the GLFW window and rendering context
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2010-09-13 21:50:04 +00:00
|
|
|
static void destroyWindow(_GLFWwindow* window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-07-31 20:48:28 +00:00
|
|
|
_glfwDestroyContext(window);
|
2010-09-14 00:54:05 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (window->win32.handle)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
DestroyWindow(window->win32.handle);
|
|
|
|
window->win32.handle = NULL;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-31 12:17:31 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Registers the GLFW window class
|
|
|
|
//
|
|
|
|
GLboolean _glfwRegisterWindowClass(void)
|
|
|
|
{
|
|
|
|
WNDCLASSW wc;
|
|
|
|
|
|
|
|
wc.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC;
|
|
|
|
wc.lpfnWndProc = (WNDPROC) windowProc;
|
|
|
|
wc.cbClsExtra = 0; // No extra class data
|
|
|
|
wc.cbWndExtra = sizeof(void*) + sizeof(int); // Make room for one pointer
|
|
|
|
wc.hInstance = GetModuleHandleW(NULL);
|
|
|
|
wc.hCursor = LoadCursorW(NULL, IDC_ARROW);
|
|
|
|
wc.hbrBackground = NULL; // No background
|
|
|
|
wc.lpszMenuName = NULL; // No menu
|
|
|
|
wc.lpszClassName = _GLFW_WNDCLASSNAME;
|
|
|
|
|
|
|
|
// Load user-provided icon if available
|
|
|
|
wc.hIcon = LoadIconW(GetModuleHandleW(NULL), L"GLFW_ICON");
|
|
|
|
if (!wc.hIcon)
|
|
|
|
{
|
|
|
|
// No user-provided icon found, load default icon
|
|
|
|
wc.hIcon = LoadIconW(NULL, IDI_WINLOGO);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!RegisterClassW(&wc))
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Win32: Failed to register window class");
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unregisters the GLFW window class
|
|
|
|
//
|
|
|
|
void _glfwUnregisterWindowClass(void)
|
|
|
|
{
|
|
|
|
UnregisterClassW(_GLFW_WNDCLASSNAME, GetModuleHandleW(NULL));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-10 20:03:36 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW platform API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-08-06 15:56:41 +00:00
|
|
|
int _glfwPlatformCreateWindow(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
2014-03-06 19:05:32 +00:00
|
|
|
const _GLFWctxconfig* ctxconfig,
|
2012-08-06 15:56:41 +00:00
|
|
|
const _GLFWfbconfig* fbconfig)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-12-13 21:43:23 +00:00
|
|
|
int status;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-03-06 19:05:32 +00:00
|
|
|
if (!createWindow(window, wndconfig, ctxconfig, fbconfig))
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
|
2014-03-06 19:05:32 +00:00
|
|
|
status = _glfwAnalyzeContext(window, ctxconfig, fbconfig);
|
2010-11-15 19:19:29 +00:00
|
|
|
|
2012-12-13 21:43:23 +00:00
|
|
|
if (status == _GLFW_RECREATION_IMPOSSIBLE)
|
|
|
|
return GL_FALSE;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-12-13 21:43:23 +00:00
|
|
|
if (status == _GLFW_RECREATION_REQUIRED)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Some window hints require us to re-create the context using WGL
|
|
|
|
// extensions retrieved through the current context, as we cannot check
|
|
|
|
// for WGL extensions or retrieve WGL entry points before we have a
|
|
|
|
// current context (actually until we have implicitly loaded the ICD)
|
|
|
|
|
|
|
|
// Yes, this is strange, and yes, this is the proper way on Win32
|
|
|
|
|
|
|
|
// As Windows only allows you to set the pixel format once for a
|
|
|
|
// window, we need to destroy the current window and create a new one
|
|
|
|
// to be able to use the new pixel format
|
|
|
|
|
|
|
|
// Technically, it may be possible to keep the old window around if
|
|
|
|
// we're just creating an OpenGL 3.0+ context with the same pixel
|
2011-09-06 12:52:42 +00:00
|
|
|
// format, but it's not worth the added code complexity
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-10-21 19:57:29 +00:00
|
|
|
// First we clear the current context (the one we just created)
|
|
|
|
// This is usually done by glfwDestroyWindow, but as we're not doing
|
2013-10-28 13:50:33 +00:00
|
|
|
// full GLFW window destruction, it's duplicated here
|
2012-10-21 19:57:29 +00:00
|
|
|
_glfwPlatformMakeContextCurrent(NULL);
|
|
|
|
|
|
|
|
// Next destroy the Win32 window and WGL context (without resetting or
|
|
|
|
// destroying the GLFW window object)
|
2010-09-13 21:50:04 +00:00
|
|
|
destroyWindow(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-10-21 19:57:29 +00:00
|
|
|
// ...and then create them again, this time with better APIs
|
2014-03-06 19:05:32 +00:00
|
|
|
if (!createWindow(window, wndconfig, ctxconfig, fbconfig))
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
2012-09-27 19:37:36 +00:00
|
|
|
if (window->monitor)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-09-23 13:08:43 +00:00
|
|
|
_glfwPlatformShowWindow(window);
|
2014-09-10 11:40:40 +00:00
|
|
|
if (!enterFullscreenMode(window))
|
|
|
|
return GL_FALSE;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
2012-08-06 15:56:41 +00:00
|
|
|
void _glfwPlatformDestroyWindow(_GLFWwindow* window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-09-27 19:37:36 +00:00
|
|
|
if (window->monitor)
|
2014-09-10 11:40:40 +00:00
|
|
|
leaveFullscreenMode(window);
|
|
|
|
|
|
|
|
destroyWindow(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2010-09-12 14:26:00 +00:00
|
|
|
void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-02-05 01:07:50 +00:00
|
|
|
WCHAR* wideTitle = _glfwCreateWideStringFromUTF8(title);
|
2012-02-03 19:34:24 +00:00
|
|
|
if (!wideTitle)
|
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Win32: Failed to convert title to wide string");
|
2012-02-03 19:34:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-03-06 17:30:14 +00:00
|
|
|
SetWindowTextW(window->win32.handle, wideTitle);
|
2012-02-07 13:58:58 +00:00
|
|
|
free(wideTitle);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-01-24 18:30:31 +00:00
|
|
|
void _glfwPlatformGetWindowPos(_GLFWwindow* window, int* xpos, int* ypos)
|
|
|
|
{
|
|
|
|
POINT pos = { 0, 0 };
|
|
|
|
ClientToScreen(window->win32.handle, &pos);
|
|
|
|
|
|
|
|
if (xpos)
|
|
|
|
*xpos = pos.x;
|
|
|
|
if (ypos)
|
|
|
|
*ypos = pos.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetWindowPos(_GLFWwindow* window, int xpos, int ypos)
|
|
|
|
{
|
|
|
|
RECT rect = { xpos, ypos, xpos, ypos };
|
|
|
|
AdjustWindowRectEx(&rect, window->win32.dwStyle,
|
|
|
|
FALSE, window->win32.dwExStyle);
|
|
|
|
SetWindowPos(window->win32.handle, NULL, rect.left, rect.top, 0, 0,
|
|
|
|
SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOSIZE);
|
|
|
|
}
|
|
|
|
|
2012-11-25 13:53:33 +00:00
|
|
|
void _glfwPlatformGetWindowSize(_GLFWwindow* window, int* width, int* height)
|
|
|
|
{
|
|
|
|
RECT area;
|
|
|
|
GetClientRect(window->win32.handle, &area);
|
|
|
|
|
|
|
|
if (width)
|
|
|
|
*width = area.right;
|
|
|
|
if (height)
|
|
|
|
*height = area.bottom;
|
|
|
|
}
|
|
|
|
|
2010-09-12 14:26:00 +00:00
|
|
|
void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-09-27 19:37:36 +00:00
|
|
|
if (window->monitor)
|
2014-09-10 11:40:40 +00:00
|
|
|
enterFullscreenMode(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
else
|
|
|
|
{
|
2013-03-12 16:25:33 +00:00
|
|
|
int fullWidth, fullHeight;
|
|
|
|
getFullWindowSize(window, width, height, &fullWidth, &fullHeight);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-03-12 16:25:33 +00:00
|
|
|
SetWindowPos(window->win32.handle, HWND_TOP,
|
|
|
|
0, 0, fullWidth, fullHeight,
|
2013-12-28 19:56:57 +00:00
|
|
|
SWP_NOACTIVATE | SWP_NOOWNERZORDER | SWP_NOMOVE | SWP_NOZORDER);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-03 10:51:57 +00:00
|
|
|
void _glfwPlatformGetFramebufferSize(_GLFWwindow* window, int* width, int* height)
|
|
|
|
{
|
|
|
|
_glfwPlatformGetWindowSize(window, width, height);
|
|
|
|
}
|
|
|
|
|
2014-03-25 20:30:13 +00:00
|
|
|
void _glfwPlatformGetWindowFrameSize(_GLFWwindow* window,
|
|
|
|
int* left, int* top,
|
|
|
|
int* right, int* bottom)
|
|
|
|
{
|
|
|
|
RECT rect;
|
|
|
|
int width, height;
|
|
|
|
|
|
|
|
_glfwPlatformGetWindowSize(window, &width, &height);
|
|
|
|
SetRect(&rect, 0, 0, width, height);
|
|
|
|
AdjustWindowRectEx(&rect, window->win32.dwStyle,
|
|
|
|
FALSE, window->win32.dwExStyle);
|
|
|
|
|
|
|
|
if (left)
|
|
|
|
*left = -rect.left;
|
|
|
|
if (top)
|
|
|
|
*top = -rect.top;
|
|
|
|
if (right)
|
|
|
|
*right = rect.right - width;
|
|
|
|
if (bottom)
|
|
|
|
*bottom = rect.bottom - height;
|
|
|
|
}
|
|
|
|
|
2010-09-12 14:26:00 +00:00
|
|
|
void _glfwPlatformIconifyWindow(_GLFWwindow* window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
ShowWindow(window->win32.handle, SW_MINIMIZE);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2010-09-12 14:26:00 +00:00
|
|
|
void _glfwPlatformRestoreWindow(_GLFWwindow* window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
ShowWindow(window->win32.handle, SW_RESTORE);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2012-08-21 18:01:57 +00:00
|
|
|
void _glfwPlatformShowWindow(_GLFWwindow* window)
|
|
|
|
{
|
2014-05-19 09:54:54 +00:00
|
|
|
ShowWindow(window->win32.handle, SW_SHOW);
|
2013-01-02 00:40:42 +00:00
|
|
|
BringWindowToTop(window->win32.handle);
|
|
|
|
SetForegroundWindow(window->win32.handle);
|
|
|
|
SetFocus(window->win32.handle);
|
2012-08-21 18:01:57 +00:00
|
|
|
}
|
|
|
|
|
2014-06-20 11:39:06 +00:00
|
|
|
void _glfwPlatformUnhideWindow(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
ShowWindow(window->win32.handle, SW_SHOW);
|
|
|
|
}
|
|
|
|
|
2012-08-21 18:01:57 +00:00
|
|
|
void _glfwPlatformHideWindow(_GLFWwindow* window)
|
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
ShowWindow(window->win32.handle, SW_HIDE);
|
2012-08-21 18:01:57 +00:00
|
|
|
}
|
|
|
|
|
2014-12-26 11:25:48 +00:00
|
|
|
int _glfwPlatformWindowFocused(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
return window->win32.handle == GetActiveWindow();
|
|
|
|
}
|
|
|
|
|
|
|
|
int _glfwPlatformWindowIconified(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
return IsIconic(window->win32.handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
int _glfwPlatformWindowVisible(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
return IsWindowVisible(window->win32.handle);
|
|
|
|
}
|
|
|
|
|
2010-09-10 20:03:36 +00:00
|
|
|
void _glfwPlatformPollEvents(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
MSG msg;
|
2010-09-13 21:50:04 +00:00
|
|
|
_GLFWwindow* window;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-03-06 17:30:14 +00:00
|
|
|
while (PeekMessageW(&msg, NULL, 0, 0, PM_REMOVE))
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-09-19 11:17:53 +00:00
|
|
|
if (msg.message == WM_QUIT)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-09-19 11:17:53 +00:00
|
|
|
// Treat WM_QUIT as a close on all windows
|
2014-12-17 00:31:36 +00:00
|
|
|
// While GLFW does not itself post WM_QUIT, other processes may post
|
|
|
|
// it to this one, for example Task Manager
|
2010-09-13 21:50:04 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
window = _glfw.windowListHead;
|
2012-09-19 11:17:53 +00:00
|
|
|
while (window)
|
2010-09-10 20:03:36 +00:00
|
|
|
{
|
2012-09-19 11:17:53 +00:00
|
|
|
_glfwInputWindowCloseRequest(window);
|
|
|
|
window = window->next;
|
2010-09-10 20:03:36 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2012-09-19 11:17:53 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
TranslateMessage(&msg);
|
2014-03-06 17:30:14 +00:00
|
|
|
DispatchMessageW(&msg);
|
2012-09-19 11:17:53 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
window = _glfw.focusedWindow;
|
2010-09-13 21:50:04 +00:00
|
|
|
if (window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2013-02-20 16:44:16 +00:00
|
|
|
// LSHIFT/RSHIFT fixup (keys tend to "stick" without this fix)
|
|
|
|
// This is the only async event handling in GLFW, but it solves some
|
|
|
|
// nasty problems
|
|
|
|
{
|
2012-12-09 18:19:00 +00:00
|
|
|
const int mods = getAsyncKeyMods();
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-02-20 16:44:16 +00:00
|
|
|
// Get current state of left and right shift keys
|
2012-12-09 18:19:00 +00:00
|
|
|
const int lshiftDown = (GetAsyncKeyState(VK_LSHIFT) >> 15) & 1;
|
|
|
|
const int rshiftDown = (GetAsyncKeyState(VK_RSHIFT) >> 15) & 1;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-02-20 16:44:16 +00:00
|
|
|
// See if this differs from our belief of what has happened
|
|
|
|
// (we only have to check for lost key up events)
|
2014-05-18 19:28:11 +00:00
|
|
|
if (!lshiftDown && window->keys[GLFW_KEY_LEFT_SHIFT] == 1)
|
2013-05-30 15:19:12 +00:00
|
|
|
_glfwInputKey(window, GLFW_KEY_LEFT_SHIFT, 0, GLFW_RELEASE, mods);
|
2010-09-10 20:03:36 +00:00
|
|
|
|
2014-05-18 19:28:11 +00:00
|
|
|
if (!rshiftDown && window->keys[GLFW_KEY_RIGHT_SHIFT] == 1)
|
2013-05-30 15:19:12 +00:00
|
|
|
_glfwInputKey(window, GLFW_KEY_RIGHT_SHIFT, 0, GLFW_RELEASE, mods);
|
2013-02-20 16:44:16 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-01-15 12:21:13 +00:00
|
|
|
// Did the cursor move in an focused window that has disabled the cursor
|
2014-02-11 17:24:01 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_DISABLED)
|
2011-09-06 11:55:29 +00:00
|
|
|
{
|
2012-11-25 13:53:33 +00:00
|
|
|
int width, height;
|
|
|
|
_glfwPlatformGetWindowSize(window, &width, &height);
|
2014-02-11 17:24:01 +00:00
|
|
|
_glfwPlatformSetCursorPos(window, width / 2, height / 2);
|
2011-09-06 11:55:29 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-10 20:03:36 +00:00
|
|
|
void _glfwPlatformWaitEvents(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
WaitMessage();
|
|
|
|
|
|
|
|
_glfwPlatformPollEvents();
|
|
|
|
}
|
|
|
|
|
2014-02-10 17:16:58 +00:00
|
|
|
void _glfwPlatformPostEmptyEvent(void)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window = _glfw.windowListHead;
|
|
|
|
PostMessage(window->win32.handle, WM_NULL, 0, 0);
|
|
|
|
}
|
|
|
|
|
2014-02-11 17:24:01 +00:00
|
|
|
void _glfwPlatformGetCursorPos(_GLFWwindow* window, double* xpos, double* ypos)
|
|
|
|
{
|
|
|
|
POINT pos;
|
|
|
|
|
|
|
|
if (GetCursorPos(&pos))
|
|
|
|
{
|
|
|
|
ScreenToClient(window->win32.handle, &pos);
|
|
|
|
|
|
|
|
if (xpos)
|
|
|
|
*xpos = pos.x;
|
|
|
|
if (ypos)
|
|
|
|
*ypos = pos.y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-04 14:16:21 +00:00
|
|
|
void _glfwPlatformSetCursorPos(_GLFWwindow* window, double xpos, double ypos)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2013-04-04 14:16:21 +00:00
|
|
|
POINT pos = { (int) xpos, (int) ypos };
|
2014-02-11 17:24:01 +00:00
|
|
|
|
|
|
|
// Store the new position so it can be recognized later
|
|
|
|
window->win32.cursorPosX = pos.x;
|
|
|
|
window->win32.cursorPosY = pos.y;
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
ClientToScreen(window->win32.handle, &pos);
|
2010-09-10 20:03:36 +00:00
|
|
|
SetCursorPos(pos.x, pos.y);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2014-01-15 12:21:13 +00:00
|
|
|
void _glfwPlatformApplyCursorMode(_GLFWwindow* window)
|
2011-10-01 05:40:36 +00:00
|
|
|
{
|
2014-01-15 12:21:13 +00:00
|
|
|
switch (window->cursorMode)
|
2011-10-01 05:40:36 +00:00
|
|
|
{
|
|
|
|
case GLFW_CURSOR_NORMAL:
|
2014-01-15 12:21:13 +00:00
|
|
|
restoreCursor(window);
|
2011-10-01 05:40:36 +00:00
|
|
|
break;
|
|
|
|
case GLFW_CURSOR_HIDDEN:
|
2012-06-22 11:53:02 +00:00
|
|
|
hideCursor(window);
|
2011-10-01 05:40:36 +00:00
|
|
|
break;
|
2013-04-26 15:20:31 +00:00
|
|
|
case GLFW_CURSOR_DISABLED:
|
2014-01-15 12:21:13 +00:00
|
|
|
disableCursor(window);
|
2011-10-01 05:40:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-23 15:43:17 +00:00
|
|
|
int _glfwPlatformCreateCursor(_GLFWcursor* cursor,
|
|
|
|
const GLFWimage* image,
|
|
|
|
int xhot, int yhot)
|
2013-12-04 13:19:22 +00:00
|
|
|
{
|
2014-01-23 14:24:57 +00:00
|
|
|
HDC dc;
|
|
|
|
HBITMAP bitmap, mask;
|
2013-12-04 13:19:22 +00:00
|
|
|
BITMAPV5HEADER bi;
|
|
|
|
ICONINFO ii;
|
2014-01-23 14:24:57 +00:00
|
|
|
DWORD* target = 0;
|
2014-02-23 15:43:17 +00:00
|
|
|
BYTE* source = (BYTE*) image->pixels;
|
2014-01-23 14:24:57 +00:00
|
|
|
int i;
|
2013-12-04 13:19:22 +00:00
|
|
|
|
2014-01-23 14:24:57 +00:00
|
|
|
ZeroMemory(&bi, sizeof(bi));
|
2013-12-04 13:19:22 +00:00
|
|
|
bi.bV5Size = sizeof(BITMAPV5HEADER);
|
2014-02-23 15:43:17 +00:00
|
|
|
bi.bV5Width = image->width;
|
|
|
|
bi.bV5Height = -image->height;
|
2013-12-04 13:19:22 +00:00
|
|
|
bi.bV5Planes = 1;
|
|
|
|
bi.bV5BitCount = 32;
|
|
|
|
bi.bV5Compression = BI_BITFIELDS;
|
2014-01-23 14:24:57 +00:00
|
|
|
bi.bV5RedMask = 0x00ff0000;
|
|
|
|
bi.bV5GreenMask = 0x0000ff00;
|
|
|
|
bi.bV5BlueMask = 0x000000ff;
|
|
|
|
bi.bV5AlphaMask = 0xff000000;
|
2013-12-04 13:19:22 +00:00
|
|
|
|
2014-01-23 14:24:57 +00:00
|
|
|
dc = GetDC(NULL);
|
|
|
|
bitmap = CreateDIBSection(dc, (BITMAPINFO*) &bi, DIB_RGB_COLORS,
|
|
|
|
(void**) &target, NULL, (DWORD) 0);
|
|
|
|
ReleaseDC(NULL, dc);
|
2013-12-04 13:19:22 +00:00
|
|
|
|
2014-01-23 14:24:57 +00:00
|
|
|
if (!bitmap)
|
2013-12-04 13:19:22 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
|
2014-02-23 15:43:17 +00:00
|
|
|
mask = CreateBitmap(image->width, image->height, 1, 1, NULL);
|
2014-01-23 14:24:57 +00:00
|
|
|
if (!mask)
|
2013-12-04 13:19:22 +00:00
|
|
|
{
|
2014-01-23 14:24:57 +00:00
|
|
|
DeleteObject(bitmap);
|
2013-12-04 13:19:22 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
2014-02-23 15:43:17 +00:00
|
|
|
for (i = 0; i < image->width * image->height; i++, target++, source += 4)
|
2014-03-20 10:17:55 +00:00
|
|
|
{
|
|
|
|
*target = (source[3] << 24) |
|
|
|
|
(source[0] << 16) |
|
|
|
|
(source[1] << 8) |
|
|
|
|
source[2];
|
|
|
|
}
|
2013-12-04 13:19:22 +00:00
|
|
|
|
2014-01-23 14:24:57 +00:00
|
|
|
ZeroMemory(&ii, sizeof(ii));
|
|
|
|
ii.fIcon = FALSE;
|
|
|
|
ii.xHotspot = xhot;
|
|
|
|
ii.yHotspot = yhot;
|
|
|
|
ii.hbmMask = mask;
|
|
|
|
ii.hbmColor = bitmap;
|
2013-12-04 13:19:22 +00:00
|
|
|
|
|
|
|
cursor->win32.handle = (HCURSOR) CreateIconIndirect(&ii);
|
|
|
|
|
2014-01-23 14:24:57 +00:00
|
|
|
DeleteObject(bitmap);
|
|
|
|
DeleteObject(mask);
|
2013-12-04 13:19:22 +00:00
|
|
|
|
2014-01-23 14:24:57 +00:00
|
|
|
if (!cursor->win32.handle)
|
2013-12-04 13:19:22 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
2014-09-02 14:52:16 +00:00
|
|
|
int _glfwPlatformCreateStandardCursor(_GLFWcursor* cursor, int shape)
|
|
|
|
{
|
|
|
|
LPCWSTR native = translateCursorShape(shape);
|
|
|
|
if (!native)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Win32: Invalid standard cursor");
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
cursor->win32.handle = CopyCursor(LoadCursorW(NULL, native));
|
|
|
|
if (!cursor->win32.handle)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Win32: Failed to retrieve shared cursor");
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
2013-12-04 13:19:22 +00:00
|
|
|
void _glfwPlatformDestroyCursor(_GLFWcursor* cursor)
|
|
|
|
{
|
2014-01-23 14:24:57 +00:00
|
|
|
if (cursor->win32.handle)
|
|
|
|
DestroyIcon((HICON) cursor->win32.handle);
|
2013-12-04 13:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetCursor(_GLFWwindow* window, _GLFWcursor* cursor)
|
|
|
|
{
|
|
|
|
// It should be guaranteed that the cursor is not being used by this window if
|
|
|
|
// the following condition is not met. That way it should be safe to destroy the
|
|
|
|
// cursor after calling glfwSetCursor(window, NULL) on all windows using the cursor.
|
|
|
|
|
2014-12-26 11:25:48 +00:00
|
|
|
if (_glfw.focusedWindow == window &&
|
|
|
|
window->cursorMode == GLFW_CURSOR_NORMAL &&
|
2013-12-04 13:19:22 +00:00
|
|
|
window->win32.cursorInside)
|
|
|
|
{
|
|
|
|
if (cursor)
|
|
|
|
SetCursor(cursor->win32.handle);
|
|
|
|
else
|
2014-01-23 14:24:57 +00:00
|
|
|
SetCursor(LoadCursorW(NULL, IDC_ARROW));
|
2013-12-04 13:19:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-09 14:26:57 +00:00
|
|
|
void _glfwPlatformSetClipboardString(_GLFWwindow* window, const char* string)
|
|
|
|
{
|
|
|
|
WCHAR* wideString;
|
|
|
|
HANDLE stringHandle;
|
|
|
|
size_t wideSize;
|
|
|
|
|
|
|
|
wideString = _glfwCreateWideStringFromUTF8(string);
|
|
|
|
if (!wideString)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Win32: Failed to convert clipboard string to "
|
|
|
|
"wide string");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wideSize = (wcslen(wideString) + 1) * sizeof(WCHAR);
|
|
|
|
|
|
|
|
stringHandle = GlobalAlloc(GMEM_MOVEABLE, wideSize);
|
|
|
|
if (!stringHandle)
|
|
|
|
{
|
|
|
|
free(wideString);
|
|
|
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Win32: Failed to allocate global handle for clipboard");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(GlobalLock(stringHandle), wideString, wideSize);
|
|
|
|
GlobalUnlock(stringHandle);
|
|
|
|
|
|
|
|
if (!OpenClipboard(window->win32.handle))
|
|
|
|
{
|
|
|
|
GlobalFree(stringHandle);
|
|
|
|
free(wideString);
|
|
|
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR, "Win32: Failed to open clipboard");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
EmptyClipboard();
|
|
|
|
SetClipboardData(CF_UNICODETEXT, stringHandle);
|
|
|
|
CloseClipboard();
|
|
|
|
|
|
|
|
free(wideString);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* _glfwPlatformGetClipboardString(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
HANDLE stringHandle;
|
|
|
|
|
|
|
|
if (!IsClipboardFormatAvailable(CF_UNICODETEXT))
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_FORMAT_UNAVAILABLE, NULL);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!OpenClipboard(window->win32.handle))
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR, "Win32: Failed to open clipboard");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
stringHandle = GetClipboardData(CF_UNICODETEXT);
|
|
|
|
if (!stringHandle)
|
|
|
|
{
|
|
|
|
CloseClipboard();
|
|
|
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Win32: Failed to retrieve clipboard data");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(_glfw.win32.clipboardString);
|
|
|
|
_glfw.win32.clipboardString =
|
|
|
|
_glfwCreateUTF8FromWideString(GlobalLock(stringHandle));
|
|
|
|
|
|
|
|
GlobalUnlock(stringHandle);
|
|
|
|
CloseClipboard();
|
|
|
|
|
|
|
|
if (!_glfw.win32.clipboardString)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Win32: Failed to convert wide string to UTF-8");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _glfw.win32.clipboardString;
|
|
|
|
}
|
|
|
|
|
2013-04-17 13:29:17 +00:00
|
|
|
|
2013-01-15 21:38:14 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW native API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
GLFWAPI HWND glfwGetWin32Window(GLFWwindow* handle)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-01-15 21:38:14 +00:00
|
|
|
return window->win32.handle;
|
|
|
|
}
|
2011-10-01 05:40:36 +00:00
|
|
|
|