2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
// Iconify/restore test program
|
|
|
|
// 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 iconify/restore functionality for
|
|
|
|
// both fullscreen and windowed mode windows
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-11 13:23:58 +00:00
|
|
|
#include <GL/glfw3.h>
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "getopt.h"
|
|
|
|
|
|
|
|
static void usage(void)
|
|
|
|
{
|
2010-09-11 13:23:58 +00:00
|
|
|
printf("Usage: iconify [-h] [-f]\n");
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2010-09-11 13:23:58 +00:00
|
|
|
static void key_callback(GLFWwindow window, int key, int action)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
printf("%0.2f Key %s\n",
|
|
|
|
glfwGetTime(),
|
|
|
|
action == GLFW_PRESS ? "pressed" : "released");
|
|
|
|
|
|
|
|
if (action != GLFW_PRESS)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (key)
|
|
|
|
{
|
|
|
|
case GLFW_KEY_SPACE:
|
2010-09-11 13:23:58 +00:00
|
|
|
glfwIconifyWindow(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
break;
|
2011-01-03 21:22:14 +00:00
|
|
|
case GLFW_KEY_ESCAPE:
|
2012-08-06 15:56:41 +00:00
|
|
|
glfwDestroyWindow(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-11 13:23:58 +00:00
|
|
|
static void size_callback(GLFWwindow window, int width, int height)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-02-09 01:07:43 +00:00
|
|
|
printf("%0.2f Size %ix%i\n", glfwGetTime(), width, height);
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
glViewport(0, 0, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
int width, height, ch;
|
2010-09-11 13:23:58 +00:00
|
|
|
int mode = GLFW_WINDOWED;
|
2010-09-07 15:34:51 +00:00
|
|
|
GLboolean active = -1, iconified = -1;
|
2010-09-11 13:23:58 +00:00
|
|
|
GLFWwindow window;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
while ((ch = getopt(argc, argv, "fh")) != -1)
|
|
|
|
{
|
|
|
|
switch (ch)
|
|
|
|
{
|
|
|
|
case 'h':
|
|
|
|
usage();
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
|
|
|
|
case 'f':
|
|
|
|
mode = GLFW_FULLSCREEN;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-07 13:58:58 +00:00
|
|
|
if (!glfwInit())
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-11 12:32:05 +00:00
|
|
|
fprintf(stderr, "Failed to initialize GLFW: %s\n", glfwErrorString(glfwGetError()));
|
2010-09-07 15:34:51 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode == GLFW_FULLSCREEN)
|
|
|
|
{
|
|
|
|
GLFWvidmode mode;
|
|
|
|
glfwGetDesktopMode(&mode);
|
2010-09-11 13:23:58 +00:00
|
|
|
width = mode.width;
|
|
|
|
height = mode.height;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
width = 0;
|
|
|
|
height = 0;
|
|
|
|
}
|
|
|
|
|
2012-08-06 15:56:41 +00:00
|
|
|
window = glfwCreateWindow(width, height, mode, "Iconify", NULL);
|
2010-09-11 13:23:58 +00:00
|
|
|
if (!window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
glfwTerminate();
|
|
|
|
|
2010-09-11 12:32:05 +00:00
|
|
|
fprintf(stderr, "Failed to open GLFW window: %s\n", glfwErrorString(glfwGetError()));
|
2010-09-07 15:34:51 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
glfwSwapInterval(1);
|
2010-10-24 16:28:55 +00:00
|
|
|
glfwSetKeyCallback(key_callback);
|
|
|
|
glfwSetWindowSizeCallback(size_callback);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
glEnable(GL_SCISSOR_TEST);
|
|
|
|
|
2012-08-03 14:20:52 +00:00
|
|
|
while (glfwGetCurrentContext())
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
|
2010-09-11 13:23:58 +00:00
|
|
|
if (iconified != glfwGetWindowParam(window, GLFW_ICONIFIED) ||
|
|
|
|
active != glfwGetWindowParam(window, GLFW_ACTIVE))
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-11 13:23:58 +00:00
|
|
|
iconified = glfwGetWindowParam(window, GLFW_ICONIFIED);
|
|
|
|
active = glfwGetWindowParam(window, GLFW_ACTIVE);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
printf("%0.2f %s %s\n",
|
|
|
|
glfwGetTime(),
|
|
|
|
iconified ? "Iconified" : "Restored",
|
|
|
|
active ? "Active" : "Inactive");
|
|
|
|
}
|
|
|
|
|
2010-09-11 13:23:58 +00:00
|
|
|
glfwGetWindowSize(window, &width, &height);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
glScissor(0, 0, width, height);
|
|
|
|
glClearColor(0, 0, 0, 0);
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
|
|
|
|
glScissor(0, 0, 640, 480);
|
|
|
|
glClearColor(1, 1, 1, 0);
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
|
2012-08-06 16:13:37 +00:00
|
|
|
glfwSwapBuffers(window);
|
2010-09-11 13:23:58 +00:00
|
|
|
glfwPollEvents();
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
glfwTerminate();
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|