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.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
2019-04-14 15:34:38 +00:00
|
|
|
#include <glad/gl.h>
|
2019-05-24 15:17:15 +00:00
|
|
|
#define GLFW_INCLUDE_NONE
|
2013-05-22 20:46:34 +00:00
|
|
|
#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");
|
|
|
|
}
|
|
|
|
|
2012-12-30 00:42:14 +00:00
|
|
|
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
|
|
|
|
2017-11-04 20:11:58 +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
|
|
|
{
|
2012-04-09 13:54:36 +00:00
|
|
|
const char* string = "Hello GLFW World!";
|
2017-11-04 20:11:58 +00:00
|
|
|
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;
|
2013-01-05 20:13:28 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2012-11-27 15:55:04 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2012-08-10 13:29:45 +00:00
|
|
|
glfwMakeContextCurrent(window);
|
2019-04-14 15:34:38 +00:00
|
|
|
gladLoadGL(glfwGetProcAddress);
|
2012-02-19 05:39:21 +00:00
|
|
|
glfwSwapInterval(1);
|
2012-08-10 13:29:45 +00:00
|
|
|
|
2012-10-28 12:45:11 +00:00
|
|
|
glfwSetKeyCallback(window, key_callback);
|
2012-02-19 05:39:21 +00:00
|
|
|
|
|
|
|
glClearColor(0.5f, 0.5f, 0.5f, 0);
|
|
|
|
|
2013-03-01 12:45:12 +00:00
|
|
|
while (!glfwWindowShouldClose(window))
|
2012-02-19 05:39:21 +00:00
|
|
|
{
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|