You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
160 lines
4.1 KiB
160 lines
4.1 KiB
//======================================================================== |
|
// 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 |
|
// |
|
//======================================================================== |
|
|
|
#include <GL/glfw3.h> |
|
|
|
#include <stdio.h> |
|
#include <stdlib.h> |
|
|
|
#include "getopt.h" |
|
|
|
static void usage(void) |
|
{ |
|
printf("Usage: iconify [-h] [-f]\n"); |
|
} |
|
|
|
static void key_callback(GLFWwindow window, int key, int action) |
|
{ |
|
printf("%0.2f Key %s\n", |
|
glfwGetTime(), |
|
action == GLFW_PRESS ? "pressed" : "released"); |
|
|
|
if (action != GLFW_PRESS) |
|
return; |
|
|
|
switch (key) |
|
{ |
|
case GLFW_KEY_SPACE: |
|
glfwIconifyWindow(window); |
|
break; |
|
case GLFW_KEY_ESC: |
|
glfwCloseWindow(window); |
|
break; |
|
} |
|
} |
|
|
|
static void size_callback(GLFWwindow window, int width, int height) |
|
{ |
|
glViewport(0, 0, width, height); |
|
} |
|
|
|
int main(int argc, char** argv) |
|
{ |
|
int width, height, ch; |
|
int mode = GLFW_WINDOWED; |
|
GLboolean active = -1, iconified = -1; |
|
GLFWwindow window; |
|
|
|
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); |
|
} |
|
} |
|
|
|
if (!glfwInit()) |
|
{ |
|
fprintf(stderr, "Failed to initialize GLFW: %s\n", glfwErrorString(glfwGetError())); |
|
exit(EXIT_FAILURE); |
|
} |
|
|
|
if (mode == GLFW_FULLSCREEN) |
|
{ |
|
GLFWvidmode mode; |
|
glfwGetDesktopMode(&mode); |
|
width = mode.width; |
|
height = mode.height; |
|
} |
|
else |
|
{ |
|
width = 0; |
|
height = 0; |
|
} |
|
|
|
window = glfwOpenWindow(width, height, mode, "Iconify", NULL); |
|
if (!window) |
|
{ |
|
glfwTerminate(); |
|
|
|
fprintf(stderr, "Failed to open GLFW window: %s\n", glfwErrorString(glfwGetError())); |
|
exit(EXIT_FAILURE); |
|
} |
|
|
|
glfwSwapInterval(1); |
|
glfwSetKeyCallback(window, key_callback); |
|
glfwSetWindowSizeCallback(window, size_callback); |
|
|
|
glEnable(GL_SCISSOR_TEST); |
|
|
|
while (glfwIsWindow(window)) |
|
{ |
|
int width, height; |
|
|
|
if (iconified != glfwGetWindowParam(window, GLFW_ICONIFIED) || |
|
active != glfwGetWindowParam(window, GLFW_ACTIVE)) |
|
{ |
|
iconified = glfwGetWindowParam(window, GLFW_ICONIFIED); |
|
active = glfwGetWindowParam(window, GLFW_ACTIVE); |
|
|
|
printf("%0.2f %s %s\n", |
|
glfwGetTime(), |
|
iconified ? "Iconified" : "Restored", |
|
active ? "Active" : "Inactive"); |
|
} |
|
|
|
glfwGetWindowSize(window, &width, &height); |
|
|
|
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); |
|
|
|
glfwSwapBuffers(); |
|
glfwPollEvents(); |
|
} |
|
|
|
glfwTerminate(); |
|
exit(EXIT_SUCCESS); |
|
} |
|
|
|
|