1UNTITLED LOCAL UNTITLED
2
4 glutCreateMenuWindow — Create a client-controlled menu window.
5
7 OpenGLUT - experimental
8
10 #include <openglut.h>
11
12 int
13 glutCreateMenuWindow(int parentID, int x, int y, int w, int h);
14
16 parentID Parent window identifier.
17
18 x Horizontal coordinate on the screen.
19
20 y Vertical coordinate on the screen.
21
22 w Width of the new window.
23
24 h Height of the new window.
25
27 This is a highly experimental function. It creates a menu-like window,
28 of requested dimensions, and at a position relative to your current win‐
29 dow.
30
31 The documentation for this function is currently the OpenGLUT Menu Window
32 proposal. Variance from that proposal may generally be explained by the
33 fact that this feature is highly experimental. It may also be explained
34 by the fact that the implementation may simply be incomplete.
35
37 Did you notice that this feature is highly experimental?
38
40 glutCreateWindow(3) glutCreateSubWindow(3) glutDestroyWindow(3)
41 glutKeyboardFunc(3) glutKeyboardUpFunc(3) glutSpecialFunc(3)
42 glutSpecialUpFunc(3) glutMotionFunc(3) glutPassiveMotionFunc(3)
43 glutMouseFunc(3) glutMouseWheelFunc(3)
44
45
46
47
48 Epoch