glfw/tests/clipboard.c

165 lines
4.1 KiB
C
Raw Normal View History

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"
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
static void error_callback(int error, const char* description)
{
fprintf(stderr, "Error: %s\n", description);
}
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:
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
{
const char* string = "Hello GLFW World!";
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;
}
}
static void window_size_callback(GLFWwindow window, int width, int height)
2012-02-19 05:39:21 +00:00
{
glViewport(0, 0, width, height);
}
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);
}
window = glfwCreateWindow(200, 200, "Clipboard Test", NULL, 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);
}
glfwMakeContextCurrent(window);
2012-02-19 05:39:21 +00:00
glfwSwapInterval(1);
glfwSetKeyCallback(window, key_callback);
glfwSetWindowSizeCallback(window, window_size_callback);
glfwSetWindowCloseCallback(window, 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);
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);
glfwSwapBuffers(window);
2012-04-12 15:28:58 +00:00
glfwWaitEvents();
2012-02-19 05:39:21 +00:00
}
glfwTerminate();
exit(EXIT_SUCCESS);
}