glfw/tests/clipboard.c

145 lines
3.6 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
2016-11-21 15:23:59 +00:00
// Copyright (c) Camilla Löwy <elmindreda@glfw.org>
2012-02-19 05:39:21 +00:00
//
// 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.
//
//========================================================================
2015-10-14 01:11:20 +00:00
#include <glad/glad.h>
#include <GLFW/glfw3.h>
2012-02-19 05:39:21 +00:00
#include <stdio.h>
#include <stdlib.h>
#include "getopt.h"
2015-04-09 13:11:50 +00:00
#if defined(__APPLE__)
#define MODIFIER GLFW_MOD_SUPER
#else
#define MODIFIER GLFW_MOD_CONTROL
#endif
2012-02-19 05:39:21 +00:00
static void usage(void)
{
printf("Usage: clipboard [-h]\n");
}
static void error_callback(int error, const char* description)
{
fprintf(stderr, "Error: %s\n", description);
}
2013-05-30 15:19:12 +00:00
static void key_callback(GLFWwindow* window, int key, int scancode, int action, int mods)
2012-03-28 13:07:47 +00:00
{
2012-02-19 05:39:21 +00:00
if (action != GLFW_PRESS)
return;
switch (key)
{
case GLFW_KEY_ESCAPE:
2015-08-23 17:30:04 +00:00
glfwSetWindowShouldClose(window, GLFW_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:
2015-04-09 13:11:50 +00:00
if (mods == MODIFIER)
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
string = glfwGetClipboardString(NULL);
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:
2015-04-09 13:11:50 +00:00
if (mods == MODIFIER)
2012-02-19 05:39:21 +00:00
{
const char* string = "Hello GLFW World!";
glfwSetClipboardString(NULL, 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;
}
}
int main(int argc, char** argv)
{
int ch;
GLFWwindow* window;
2012-02-19 05:39:21 +00:00
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);
2015-10-14 01:11:20 +00:00
gladLoadGLLoader((GLADloadproc) glfwGetProcAddress);
2012-02-19 05:39:21 +00:00
glfwSwapInterval(1);
glfwSetKeyCallback(window, key_callback);
2012-02-19 05:39:21 +00:00
glClearColor(0.5f, 0.5f, 0.5f, 0);
while (!glfwWindowShouldClose(window))
2012-02-19 05:39:21 +00:00
{
glClear(GL_COLOR_BUFFER_BIT);
glfwSwapBuffers(window);
2012-04-12 15:28:58 +00:00
glfwWaitEvents();
2012-02-19 05:39:21 +00:00
}
glfwTerminate();
exit(EXIT_SUCCESS);
}