2011-09-21 09:09:47 +00:00
|
|
|
//========================================================================
|
|
|
|
// GLFW - An OpenGL library
|
2012-08-28 13:03:57 +00:00
|
|
|
// Platform: Win32
|
2011-09-21 09:09:47 +00:00
|
|
|
// API version: 3.0
|
|
|
|
// WWW: http://www.glfw.org/
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2010 Camilla Berglund <elmindreda@elmindreda.org>
|
|
|
|
//
|
|
|
|
// This software is provided 'as-is', without any express or implied
|
|
|
|
// warranty. In no event will the authors be held liable for any damages
|
|
|
|
// arising from the use of this software.
|
|
|
|
//
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
// including commercial applications, and to alter it and redistribute it
|
|
|
|
// freely, subject to the following restrictions:
|
|
|
|
//
|
|
|
|
// 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
// claim that you wrote the original software. If you use this software
|
|
|
|
// in a product, an acknowledgment in the product documentation would
|
|
|
|
// be appreciated but is not required.
|
|
|
|
//
|
|
|
|
// 2. Altered source versions must be plainly marked as such, and must not
|
|
|
|
// be misrepresented as being the original software.
|
|
|
|
//
|
|
|
|
// 3. This notice may not be removed or altered from any source
|
|
|
|
// distribution.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
#include <limits.h>
|
|
|
|
#include <string.h>
|
2012-04-09 15:45:26 +00:00
|
|
|
#include <stdlib.h>
|
2012-08-14 11:51:39 +00:00
|
|
|
#include <malloc.h>
|
2011-09-21 09:09:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW platform API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-04-09 14:10:14 +00:00
|
|
|
void _glfwPlatformSetClipboardString(_GLFWwindow* window, const char* string)
|
2011-09-21 09:09:47 +00:00
|
|
|
{
|
2012-04-09 15:45:26 +00:00
|
|
|
WCHAR* wideString;
|
|
|
|
HANDLE stringHandle;
|
|
|
|
size_t wideSize;
|
|
|
|
|
|
|
|
wideString = _glfwCreateWideStringFromUTF8(string);
|
|
|
|
if (!wideString)
|
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2012-08-28 13:03:57 +00:00
|
|
|
"Win32: Failed to convert clipboard string to "
|
2012-04-09 15:45:26 +00:00
|
|
|
"wide string");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wideSize = (wcslen(wideString) + 1) * sizeof(WCHAR);
|
|
|
|
|
|
|
|
stringHandle = GlobalAlloc(GMEM_MOVEABLE, wideSize);
|
|
|
|
if (!stringHandle)
|
|
|
|
{
|
|
|
|
free(wideString);
|
|
|
|
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Win32: Failed to allocate global handle for clipboard");
|
2012-04-09 15:45:26 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(GlobalLock(stringHandle), wideString, wideSize);
|
|
|
|
GlobalUnlock(stringHandle);
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (!OpenClipboard(window->win32.handle))
|
2012-04-09 15:45:26 +00:00
|
|
|
{
|
|
|
|
GlobalFree(stringHandle);
|
|
|
|
free(wideString);
|
|
|
|
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR, "Win32: Failed to open clipboard");
|
2012-04-09 15:45:26 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
EmptyClipboard();
|
|
|
|
SetClipboardData(CF_UNICODETEXT, stringHandle);
|
|
|
|
CloseClipboard();
|
|
|
|
|
|
|
|
free(wideString);
|
2011-09-21 09:09:47 +00:00
|
|
|
}
|
|
|
|
|
2012-04-11 22:51:58 +00:00
|
|
|
const char* _glfwPlatformGetClipboardString(_GLFWwindow* window)
|
2011-09-21 09:09:47 +00:00
|
|
|
{
|
2012-04-09 15:45:26 +00:00
|
|
|
HANDLE stringHandle;
|
|
|
|
|
|
|
|
if (!IsClipboardFormatAvailable(CF_UNICODETEXT))
|
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_FORMAT_UNAVAILABLE, NULL);
|
2012-04-11 22:51:58 +00:00
|
|
|
return NULL;
|
2012-04-09 15:45:26 +00:00
|
|
|
}
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (!OpenClipboard(window->win32.handle))
|
2012-04-09 15:45:26 +00:00
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR, "Win32: Failed to open clipboard");
|
2012-04-11 22:51:58 +00:00
|
|
|
return NULL;
|
2012-04-09 15:45:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stringHandle = GetClipboardData(CF_UNICODETEXT);
|
|
|
|
if (!stringHandle)
|
|
|
|
{
|
|
|
|
CloseClipboard();
|
|
|
|
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Win32: Failed to retrieve clipboard data");
|
2012-04-11 22:51:58 +00:00
|
|
|
return NULL;
|
2012-04-09 15:45:26 +00:00
|
|
|
}
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
free(_glfw.win32.clipboardString);
|
|
|
|
_glfw.win32.clipboardString =
|
2012-04-11 22:51:58 +00:00
|
|
|
_glfwCreateUTF8FromWideString(GlobalLock(stringHandle));
|
|
|
|
|
2012-04-09 15:45:26 +00:00
|
|
|
GlobalUnlock(stringHandle);
|
|
|
|
CloseClipboard();
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
if (!_glfw.win32.clipboardString)
|
2012-04-09 15:45:26 +00:00
|
|
|
{
|
2012-12-31 20:05:28 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Win32: Failed to convert wide string to UTF-8");
|
2012-04-11 22:51:58 +00:00
|
|
|
return NULL;
|
2012-04-09 15:45:26 +00:00
|
|
|
}
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
return _glfw.win32.clipboardString;
|
2011-09-21 09:09:47 +00:00
|
|
|
}
|
|
|
|
|