2012-02-19 05:39:21 +00:00
|
|
|
//========================================================================
|
2012-04-12 16:42:56 +00:00
|
|
|
// Clipboard test program
|
2012-02-19 05:39:21 +00:00
|
|
|
// Copyright (c) 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.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
//
|
|
|
|
// This program is used to test the clipboard functionality.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
#include <GL/glfw3.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "getopt.h"
|
|
|
|
|
2012-09-13 15:29:07 +00:00
|
|
|
static GLboolean closed = GL_FALSE;
|
|
|
|
|
2012-02-19 05:39:21 +00:00
|
|
|
static void usage(void)
|
|
|
|
{
|
|
|
|
printf("Usage: clipboard [-h]\n");
|
|
|
|
}
|
|
|
|
|
2012-03-29 11:30:40 +00:00
|
|
|
static GLboolean control_is_down(GLFWwindow window)
|
2012-02-19 05:39:21 +00:00
|
|
|
{
|
2012-03-29 11:30:40 +00:00
|
|
|
return glfwGetKey(window, GLFW_KEY_LEFT_CONTROL) ||
|
|
|
|
glfwGetKey(window, GLFW_KEY_RIGHT_CONTROL);
|
2012-03-28 13:07:47 +00:00
|
|
|
}
|
2012-02-19 05:39:21 +00:00
|
|
|
|
2012-09-13 15:29:07 +00:00
|
|
|
static int window_close_callback(GLFWwindow window)
|
|
|
|
{
|
|
|
|
closed = GL_TRUE;
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
2012-03-28 13:07:47 +00:00
|
|
|
static void key_callback(GLFWwindow window, int key, int action)
|
|
|
|
{
|
2012-02-19 05:39:21 +00:00
|
|
|
if (action != GLFW_PRESS)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (key)
|
|
|
|
{
|
|
|
|
case GLFW_KEY_ESCAPE:
|
2012-09-13 15:29:07 +00:00
|
|
|
closed = GL_TRUE;
|
2012-02-19 05:39:21 +00:00
|
|
|
break;
|
2012-03-29 11:44:55 +00:00
|
|
|
|
2012-02-19 05:39:21 +00:00
|
|
|
case GLFW_KEY_V:
|
2012-03-29 11:30:40 +00:00
|
|
|
if (control_is_down(window))
|
2012-02-19 05:39:21 +00:00
|
|
|
{
|
2012-04-11 22:51:58 +00:00
|
|
|
const char* string;
|
2012-03-29 11:31:19 +00:00
|
|
|
|
2012-04-11 22:51:58 +00:00
|
|
|
string = glfwGetClipboardString(window);
|
2012-04-12 15:28:58 +00:00
|
|
|
if (string)
|
|
|
|
printf("Clipboard contains \"%s\"\n", string);
|
|
|
|
else
|
|
|
|
printf("Clipboard does not contain a string\n");
|
2012-02-19 05:39:21 +00:00
|
|
|
}
|
|
|
|
break;
|
2012-03-29 11:44:55 +00:00
|
|
|
|
2012-02-19 05:39:21 +00:00
|
|
|
case GLFW_KEY_C:
|
2012-03-29 11:30:40 +00:00
|
|
|
if (control_is_down(window))
|
2012-02-19 05:39:21 +00:00
|
|
|
{
|
2012-04-09 13:54:36 +00:00
|
|
|
const char* string = "Hello GLFW World!";
|
2012-04-09 14:00:54 +00:00
|
|
|
glfwSetClipboardString(window, string);
|
2012-04-12 15:28:58 +00:00
|
|
|
printf("Setting clipboard to \"%s\"\n", string);
|
2012-02-19 05:39:21 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-13 15:29:07 +00:00
|
|
|
static void window_size_callback(GLFWwindow window, int width, int height)
|
2012-02-19 05:39:21 +00:00
|
|
|
{
|
|
|
|
glViewport(0, 0, width, height);
|
|
|
|
}
|
|
|
|
|
2012-04-09 15:41:17 +00:00
|
|
|
static void error_callback(int error, const char* description)
|
|
|
|
{
|
2012-04-12 15:28:58 +00:00
|
|
|
fprintf(stderr, "Error in %s\n", description);
|
2012-04-09 15:41:17 +00:00
|
|
|
}
|
|
|
|
|
2012-02-19 05:39:21 +00:00
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
int ch;
|
|
|
|
GLFWwindow window;
|
|
|
|
|
|
|
|
while ((ch = getopt(argc, argv, "h")) != -1)
|
|
|
|
{
|
|
|
|
switch (ch)
|
|
|
|
{
|
|
|
|
case 'h':
|
|
|
|
usage();
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-09 15:41:17 +00:00
|
|
|
glfwSetErrorCallback(error_callback);
|
|
|
|
|
2012-02-19 05:39:21 +00:00
|
|
|
if (!glfwInit())
|
|
|
|
{
|
2012-04-12 15:28:58 +00:00
|
|
|
fprintf(stderr, "Failed to initialize GLFW\n");
|
2012-02-19 05:39:21 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2012-08-06 15:56:41 +00:00
|
|
|
window = glfwCreateWindow(0, 0, GLFW_WINDOWED, "Clipboard Test", NULL);
|
2012-02-19 05:39:21 +00:00
|
|
|
if (!window)
|
|
|
|
{
|
|
|
|
glfwTerminate();
|
|
|
|
|
2012-04-12 15:28:58 +00:00
|
|
|
fprintf(stderr, "Failed to open GLFW window\n");
|
2012-02-19 05:39:21 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2012-08-10 13:29:45 +00:00
|
|
|
glfwMakeContextCurrent(window);
|
2012-02-19 05:39:21 +00:00
|
|
|
glfwSwapInterval(1);
|
2012-08-10 13:29:45 +00:00
|
|
|
|
2012-02-19 05:39:21 +00:00
|
|
|
glfwSetKeyCallback(key_callback);
|
2012-09-13 15:29:07 +00:00
|
|
|
glfwSetWindowSizeCallback(window_size_callback);
|
|
|
|
glfwSetWindowCloseCallback(window_close_callback);
|
2012-02-19 05:39:21 +00:00
|
|
|
|
|
|
|
glMatrixMode(GL_PROJECTION);
|
|
|
|
glOrtho(-1.f, 1.f, -1.f, 1.f, -1.f, 1.f);
|
|
|
|
glMatrixMode(GL_MODELVIEW);
|
|
|
|
|
|
|
|
glClearColor(0.5f, 0.5f, 0.5f, 0);
|
|
|
|
|
2012-09-13 15:29:07 +00:00
|
|
|
while (!closed)
|
2012-02-19 05:39:21 +00:00
|
|
|
{
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
|
|
|
|
glColor3f(0.8f, 0.2f, 0.4f);
|
|
|
|
glRectf(-0.5f, -0.5f, 0.5f, 0.5f);
|
|
|
|
|
2012-08-06 16:13:37 +00:00
|
|
|
glfwSwapBuffers(window);
|
2012-04-12 15:28:58 +00:00
|
|
|
glfwWaitEvents();
|
2012-02-19 05:39:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
glfwTerminate();
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|