Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

glutpositionwindow(3) [centos man page]

UNTITLED
LOCAL UNTITLED NAME
glutPositionWindow -- Request to change the position of the current window LIBRARY
OpenGLUT - window SYNOPSIS
#include <openglut.h> void glutPositionWindow(int x, int y); PARAMETERS
x Requested horizontal position of the current window y Requested vertical position of the current window DESCRIPTION
The glutPositionWindow() function requests that the window system position a top-level or subwindow relative to the top-left corner. Subwin- dows are typically resized and repositioned in response to window resize events. CAVEATS
The position of top-level windows is ultimately determined by the windowing system. Therefore, a position request by an OpenGLUT application may not necessarily succeed. May not take immediate effect; wait for the callback. Not applicable to offscreen windows. SEE ALSO
glutInit(3) glutInitWindowPosition(3) glutReshapeFunc(3) glutCreateSubWindow(3) Epoch

Check Out this Related Man Page

glutPositionWindow(3GLUT)					       GLUT						 glutPositionWindow(3GLUT)

NAME
glutPositionWindow - requests a change to the position of the current window. SYNTAX
void glutPositionWindow(int x, int y); ARGUMENTS
x New X location of window in pixels. y New Y location of window in pixels. DESCRIPTION
glutPositionWindow requests a change in the position of the current window. For top-level windows, the x and y parameters are pixel offsets from the screen origin. For subwindows, the x and y parameters are pixel offsets from the window's parent window origin. The requests by glutPositionWindow are not processed immediately. The request is executed after returning to the main event loop. This allows multiple glutPositionWindow, glutReshapeWindow, and glutFullScreen requests to the same window to be coalesced. In the case of top-level windows, a glutPositionWindow call is considered only a request for positioning the window. The window system is free to apply its own policies to top-level window placement. The intent is that top-level windows should be repositioned according glut- PositionWindow's parameters. glutPositionWindow disables the full screen status of a window if previously enabled. SEE ALSO
glutInitWindowPosition, glutReshapeWindow AUTHOR
Mark J. Kilgard (mjk@nvidia.com) GLUT
3.7 glutPositionWindow(3GLUT)
Man Page