glutSetWindowTitle.man
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:1k
- ."
- ." Copyright (c) Mark J. Kilgard, 1996.
- ."
- .TH glutSetWindowTitle 3GLUT "3.7" "GLUT" "GLUT"
- .SH NAME
- glutSetWindowTitle, glutSetIconTitle - change the window or icon title respectively of the current top-level window.
- .SH SYNTAX
- .nf
- .LP
- void glutSetWindowTitle(char *name);
- void glutSetIconTitle(char *name);
- .fi
- .SH ARGUMENTS
- .IP fInamefP 1i
- ASCII character string for the window or icon name to be set for
- the window.
- .SH DESCRIPTION
- These routines should be called only when the current window is a
- top-level window. Upon creation of a top-level window, the window
- and icon names are determined by the name parameter to
- glutCreateWindow. Once created, glutSetWindowTitle and
- glutSetIconTitle can change the window and icon names
- respectively of top-level windows. Each call requests the window
- system change the title appropriately. Requests are not buffered or
- coalesced. The policy by which the window and icon name are displayed
- is window system dependent.
- .SH SEE ALSO
- glutCreateWindow, glutIconifyWindow
- .SH AUTHOR
- Mark J. Kilgard (mjk@nvidia.com)