1UNTITLED LOCAL UNTITLED
2
4 glutChangeToSubMenu — Replace a menu entry with a submenu.
5
7 OpenGLUT - menus
8
10 #include <openglut.h>
11
12 void
13 glutChangeToSubMenu(int item, const char *label, int subMenuID);
14
16 item Integer position down the list
17
18 label Submenu item text
19
20 subMenuID Submenu identifier
21
23 Walks the list of the menu items and replaces the numbered item in the
24 list with the given submenu.
25
27 glutAddMenuEntry(3) glutAddSubMenu(3) glutChangeToMenuEntry(3)
28 glutRemoveMenuItem(3)
29
30
31
32
33 Epoch