1UNTITLED LOCAL UNTITLED
2
4 glutSetIconTitle — Requests changing the iconified title of the current
5 window
6
8 OpenGLUT - window
9
11 #include <openglut.h>
12
13 void
14 glutSetIconTitle(const char* title);
15
17 title New window title
18
20 Requests that the window system change the title of the icon (or what‐
21 ever) that is displayed when the current window is in iconified mode.
22
23 As discussed under glutIconifyWindow(), most window systems allow a win‐
24 dow to be placed in some kind of minimized, or iconified, state. In that
25 state, the normal interior of the window is likely to be obscured, and
26 the only clue about the window contents may be the window title.
27
29 Effect is system-dependant.
30
31 There Exactly what "iconified" means is system dependant. Iconification
32 may not be supported, or the title may not be available---or legible.
33 Avoid putting essential information into the icon title.
34
36 glutSetWindowTitle(3) glutIconifyWindow(3)
37
38
39
40
41 Epoch