本文整理了Java中org.lwjgl.glfw.GLFW.glfwIconifyWindow()
方法的一些代码示例,展示了GLFW.glfwIconifyWindow()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。GLFW.glfwIconifyWindow()
方法的具体详情如下:
包路径:org.lwjgl.glfw.GLFW
类名称:GLFW
方法名:glfwIconifyWindow
[英]Iconifies (minimizes) the specified window if it was previously restored. If the window is already iconified, this function does nothing.
If the specified window is a full screen window, the original monitor resolution is restored until the window is restored.
Notes:
代码示例来源:origin: libgdx/libgdx
/**
* Minimizes (iconifies) the window. Iconified windows do not call
* their {@link ApplicationListener} until the window is restored.
*/
public void iconifyWindow() {
GLFW.glfwIconifyWindow(windowHandle);
}
代码示例来源:origin: libgdx/libgdx
/**
* Minimizes (iconifies) the window. Iconified windows do not call
* their {@link ApplicationListener} until the window is restored.
*/
public void iconifyWindow() {
GLFW.glfwIconifyWindow(windowHandle);
}
代码示例来源:origin: com.badlogicgames.gdx/gdx-backend-lwjgl3
/**
* Minimizes (iconifies) the window. Iconified windows do not call
* their {@link ApplicationListener} until the window is restored.
*/
public void iconifyWindow() {
GLFW.glfwIconifyWindow(windowHandle);
}
代码示例来源:origin: sriharshachilakapati/SilenceEngine
/**
* <p> This method iconifies (minimizes) this window if it was previously restored. If the window is already
* iconified, this method does nothing.</p>
*
* <p> If this window is a full screen window, the original monitor resolution is restored until the window is
* restored again.</p>
*/
public void iconify()
{
glfwIconifyWindow(handle);
}
内容来源于网络,如有侵权,请联系作者删除!