Name

glutSetWindowTitle,  glutSetIconTitle  - change the window
or icon title respectively of the current  top-level  win-
dow.

Python Specification

glutSetIconTitle
	glutSetIconTitle(title) -> None
glutSetWindowTitle
	glutSetWindowTitle(title) -> None

C Specification

void glutSetWindowTitle(char *name);
void glutSetIconTitle(char *name);

Parameters

name      ASCII  character  string  for the window or icon
          name to be set for the window.

Description

These routines should be called only when the current win-
dow  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, glut-
SetWindowTitle and glutSetIconTitle can change the  window
and  icon  names  respectively  of top-level windows. Each
call requests the window system change the title appropri-
ately.  Requests are not buffered or coalesced. The policy
by which the window and icon name are displayed is  window
system dependent.

See Also

glutCreateWindow, glutIconifyWindow

Author

Mark J. Kilgard (mjk@nvidia.com)

:: Documentation :: References :: GLUT ::
:: Index (n/a) ::