2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
// Iconify/restore test program
|
2016-11-21 15:23:59 +00:00
|
|
|
// Copyright (c) Camilla Löwy <elmindreda@glfw.org>
|
2010-09-07 15:34:51 +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 iconify/restore functionality for
|
2015-01-05 20:55:15 +00:00
|
|
|
// both full screen and windowed mode windows
|
2010-09-07 15:34:51 +00:00
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
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>
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "getopt.h"
|
|
|
|
|
2016-02-23 11:26:42 +00:00
|
|
|
static int windowed_xpos, windowed_ypos, windowed_width, windowed_height;
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
static void usage(void)
|
|
|
|
{
|
2014-12-09 19:46:45 +00:00
|
|
|
printf("Usage: iconify [-h] [-f [-a] [-n]]\n");
|
|
|
|
printf("Options:\n");
|
|
|
|
printf(" -a create windows for all monitors\n");
|
|
|
|
printf(" -f create full screen window(s)\n");
|
|
|
|
printf(" -h show this help\n");
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
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)
|
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)
|
|
|
|
{
|
2015-10-13 10:50:59 +00:00
|
|
|
case GLFW_KEY_I:
|
2010-09-11 13:23:58 +00:00
|
|
|
glfwIconifyWindow(window);
|
2010-09-07 15:34:51 +00:00
|
|
|
break;
|
2015-10-13 10:50:59 +00:00
|
|
|
case GLFW_KEY_M:
|
|
|
|
glfwMaximizeWindow(window);
|
|
|
|
break;
|
|
|
|
case GLFW_KEY_R:
|
|
|
|
glfwRestoreWindow(window);
|
|
|
|
break;
|
2011-01-03 21:22:14 +00:00
|
|
|
case GLFW_KEY_ESCAPE:
|
2015-08-23 17:30:04 +00:00
|
|
|
glfwSetWindowShouldClose(window, GLFW_TRUE);
|
2010-09-07 15:34:51 +00:00
|
|
|
break;
|
2016-09-29 23:52:22 +00:00
|
|
|
case GLFW_KEY_A:
|
|
|
|
glfwSetWindowAttrib(window, GLFW_AUTO_ICONIFY, !glfwGetWindowAttrib(window, GLFW_AUTO_ICONIFY));
|
|
|
|
break;
|
|
|
|
case GLFW_KEY_B:
|
|
|
|
glfwSetWindowAttrib(window, GLFW_RESIZABLE, !glfwGetWindowAttrib(window, GLFW_RESIZABLE));
|
|
|
|
break;
|
|
|
|
case GLFW_KEY_D:
|
|
|
|
glfwSetWindowAttrib(window, GLFW_DECORATED, !glfwGetWindowAttrib(window, GLFW_DECORATED));
|
|
|
|
break;
|
|
|
|
case GLFW_KEY_F:
|
|
|
|
glfwSetWindowAttrib(window, GLFW_FLOATING, !glfwGetWindowAttrib(window, GLFW_FLOATING));
|
|
|
|
break;
|
2016-03-29 11:05:30 +00:00
|
|
|
case GLFW_KEY_F11:
|
2016-02-23 11:26:42 +00:00
|
|
|
case GLFW_KEY_ENTER:
|
|
|
|
{
|
|
|
|
if (mods != GLFW_MOD_ALT)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (glfwGetWindowMonitor(window))
|
|
|
|
{
|
|
|
|
glfwSetWindowMonitor(window, NULL,
|
|
|
|
windowed_xpos, windowed_ypos,
|
|
|
|
windowed_width, windowed_height,
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GLFWmonitor* monitor = glfwGetPrimaryMonitor();
|
|
|
|
if (monitor)
|
|
|
|
{
|
|
|
|
const GLFWvidmode* mode = glfwGetVideoMode(monitor);
|
|
|
|
glfwGetWindowPos(window, &windowed_xpos, &windowed_ypos);
|
|
|
|
glfwGetWindowSize(window, &windowed_width, &windowed_height);
|
|
|
|
glfwSetWindowMonitor(window, monitor,
|
|
|
|
0, 0, mode->width, mode->height,
|
|
|
|
mode->refreshRate);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
static void window_size_callback(GLFWwindow* window, int width, int height)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-10-05 02:00:27 +00:00
|
|
|
printf("%0.2f Window resized to %ix%i\n", glfwGetTime(), width, height);
|
2013-06-03 10:51:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void framebuffer_size_callback(GLFWwindow* window, int width, int height)
|
|
|
|
{
|
|
|
|
printf("%0.2f Framebuffer resized to %ix%i\n", glfwGetTime(), width, height);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
static void window_focus_callback(GLFWwindow* window, int focused)
|
2012-10-05 02:00:27 +00:00
|
|
|
{
|
|
|
|
printf("%0.2f Window %s\n",
|
|
|
|
glfwGetTime(),
|
2012-11-22 16:04:44 +00:00
|
|
|
focused ? "focused" : "defocused");
|
2012-10-05 02:00:27 +00:00
|
|
|
}
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
static void window_iconify_callback(GLFWwindow* window, int iconified)
|
2012-10-05 02:00:27 +00:00
|
|
|
{
|
|
|
|
printf("%0.2f Window %s\n",
|
|
|
|
glfwGetTime(),
|
2016-06-16 11:09:28 +00:00
|
|
|
iconified ? "iconified" : "uniconified");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void window_maximize_callback(GLFWwindow* window, int maximized)
|
|
|
|
{
|
|
|
|
printf("%0.2f Window %s\n",
|
|
|
|
glfwGetTime(),
|
|
|
|
maximized ? "maximized" : "unmaximized");
|
2012-10-05 02:00:27 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 19:46:45 +00:00
|
|
|
static void window_refresh_callback(GLFWwindow* window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2015-08-31 20:26:45 +00:00
|
|
|
printf("%0.2f Window refresh\n", glfwGetTime());
|
|
|
|
|
2014-12-09 19:46:45 +00:00
|
|
|
glfwMakeContextCurrent(window);
|
2013-01-01 23:50:57 +00:00
|
|
|
|
2014-12-09 19:46:45 +00:00
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
glfwSwapBuffers(window);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GLFWwindow* create_window(GLFWmonitor* monitor)
|
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
GLFWwindow* window;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-09-27 19:37:36 +00:00
|
|
|
if (monitor)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2013-05-22 20:16:43 +00:00
|
|
|
const GLFWvidmode* mode = glfwGetVideoMode(monitor);
|
2014-02-12 13:26:34 +00:00
|
|
|
|
|
|
|
glfwWindowHint(GLFW_REFRESH_RATE, mode->refreshRate);
|
|
|
|
glfwWindowHint(GLFW_RED_BITS, mode->redBits);
|
|
|
|
glfwWindowHint(GLFW_GREEN_BITS, mode->greenBits);
|
|
|
|
glfwWindowHint(GLFW_BLUE_BITS, mode->blueBits);
|
|
|
|
|
2013-05-22 20:16:43 +00:00
|
|
|
width = mode->width;
|
|
|
|
height = mode->height;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-11-22 16:04:54 +00:00
|
|
|
width = 640;
|
|
|
|
height = 480;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2012-09-27 19:37:36 +00:00
|
|
|
window = glfwCreateWindow(width, height, "Iconify", monitor, NULL);
|
2010-09-11 13:23:58 +00:00
|
|
|
if (!window)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
glfwTerminate();
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2015-10-14 01:11:20 +00:00
|
|
|
glfwMakeContextCurrent(window);
|
2019-04-14 15:34:38 +00:00
|
|
|
gladLoadGL(glfwGetProcAddress);
|
2015-10-14 01:11:20 +00:00
|
|
|
|
2014-12-09 19:46:45 +00:00
|
|
|
return window;
|
|
|
|
}
|
2012-08-10 13:29:45 +00:00
|
|
|
|
2014-12-09 19:46:45 +00:00
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
int ch, i, window_count;
|
2016-09-29 23:52:22 +00:00
|
|
|
int fullscreen = GLFW_FALSE, all_monitors = GLFW_FALSE;
|
2014-12-09 19:46:45 +00:00
|
|
|
GLFWwindow** windows;
|
2012-10-05 02:00:27 +00:00
|
|
|
|
2014-12-09 19:46:45 +00:00
|
|
|
while ((ch = getopt(argc, argv, "afhn")) != -1)
|
|
|
|
{
|
|
|
|
switch (ch)
|
|
|
|
{
|
|
|
|
case 'a':
|
2015-08-23 17:30:04 +00:00
|
|
|
all_monitors = GLFW_TRUE;
|
2014-12-09 19:46:45 +00:00
|
|
|
break;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-12-09 19:46:45 +00:00
|
|
|
case 'h':
|
|
|
|
usage();
|
|
|
|
exit(EXIT_SUCCESS);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-12-09 19:46:45 +00:00
|
|
|
case 'f':
|
2015-08-23 17:30:04 +00:00
|
|
|
fullscreen = GLFW_TRUE;
|
2014-12-09 19:46:45 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
glfwSetErrorCallback(error_callback);
|
|
|
|
|
|
|
|
if (!glfwInit())
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
|
|
|
if (fullscreen && all_monitors)
|
|
|
|
{
|
|
|
|
int monitor_count;
|
|
|
|
GLFWmonitor** monitors = glfwGetMonitors(&monitor_count);
|
|
|
|
|
|
|
|
window_count = monitor_count;
|
|
|
|
windows = calloc(window_count, sizeof(GLFWwindow*));
|
|
|
|
|
|
|
|
for (i = 0; i < monitor_count; i++)
|
|
|
|
{
|
|
|
|
windows[i] = create_window(monitors[i]);
|
|
|
|
if (!windows[i])
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2014-12-09 19:46:45 +00:00
|
|
|
GLFWmonitor* monitor = NULL;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-12-09 19:46:45 +00:00
|
|
|
if (fullscreen)
|
|
|
|
monitor = glfwGetPrimaryMonitor();
|
|
|
|
|
|
|
|
window_count = 1;
|
|
|
|
windows = calloc(window_count, sizeof(GLFWwindow*));
|
|
|
|
windows[0] = create_window(monitor);
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-12-09 19:46:45 +00:00
|
|
|
for (i = 0; i < window_count; i++)
|
|
|
|
{
|
|
|
|
glfwSetKeyCallback(windows[i], key_callback);
|
|
|
|
glfwSetFramebufferSizeCallback(windows[i], framebuffer_size_callback);
|
|
|
|
glfwSetWindowSizeCallback(windows[i], window_size_callback);
|
|
|
|
glfwSetWindowFocusCallback(windows[i], window_focus_callback);
|
|
|
|
glfwSetWindowIconifyCallback(windows[i], window_iconify_callback);
|
2016-06-16 11:09:28 +00:00
|
|
|
glfwSetWindowMaximizeCallback(windows[i], window_maximize_callback);
|
2014-12-09 19:46:45 +00:00
|
|
|
glfwSetWindowRefreshCallback(windows[i], window_refresh_callback);
|
|
|
|
|
|
|
|
window_refresh_callback(windows[i]);
|
|
|
|
|
|
|
|
printf("Window is %s and %s\n",
|
|
|
|
glfwGetWindowAttrib(windows[i], GLFW_ICONIFIED) ? "iconified" : "restored",
|
|
|
|
glfwGetWindowAttrib(windows[i], GLFW_FOCUSED) ? "focused" : "defocused");
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-12-09 19:46:45 +00:00
|
|
|
for (;;)
|
|
|
|
{
|
2015-10-13 10:50:59 +00:00
|
|
|
glfwWaitEvents();
|
2014-12-09 19:46:45 +00:00
|
|
|
|
|
|
|
for (i = 0; i < window_count; i++)
|
|
|
|
{
|
|
|
|
if (glfwWindowShouldClose(windows[i]))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < window_count)
|
|
|
|
break;
|
2014-12-31 17:20:11 +00:00
|
|
|
|
|
|
|
// Workaround for an issue with msvcrt and mintty
|
|
|
|
fflush(stdout);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
glfwTerminate();
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|