glutShowWindow

change the display status of the current window.

Signature

glutHideWindow( )-> void
glutHideWindow( )
glutHideWindow(  ) -> None
glutIconifyWindow( )-> void
glutIconifyWindow( )
glutIconifyWindow(  ) -> None
glutShowWindow( )-> void
glutShowWindow( )
glutShowWindow(  ) -> None

Description

glutShowWindow will show the current window (though it may still not be visible if obscured by other shown windows). glutHideWindow will hide the current window. glutIconifyWindow will iconify a top-level window, but GLUT prohibits iconification of a subwindow. The effect of showing, hiding, and iconifying windows does not take place immediately. Instead the requests are saved for execution upon return to the GLUT event loop. Subsequent show, hide, or iconification requests on a window replace the previously saved request for that window. The effect of hiding, showing, or iconifying top-level windows is subject to the window system's policy for displaying windows.

See Also

glutPopWindow glutPushWindow

Sample Code References

The following code samples have been found which appear to reference the functions described here. Take care that the code may be old, broken or not even use PyOpenGL.

glutShowWindow
{LGPL} PyMT pymt/ui/window/win_glut.py Lines: 16, 47