glutAddMenuEntry

adds a menu entry to the bottom of the current menu.

Signature

glutAddMenuEntry( char( name ) , int( value ) )-> void
glutAddMenuEntry( label , value )
glutAddMenuEntry( STRING(label), c_int(value) ) -> None

Parameters

VariablesDescription
name
ASCII character string to display in the menu entry.
value
Value to return to the menu's callback function if the menu entry is selected.

See Also

glutAddSubMenu glutCreateMenu glutChangeToMenuEntry glutRemoveMenuItem

Sample Code References

The following code samples have been found which appear to reference the functions described here. Take care that the code may be old, broken or not even use PyOpenGL.

glutAddMenuEntry
OpenGLContext OpenGLContext/glutvrmltestingcontext.py Lines: 25, 34
OpenGL-Demo PyOpenGL-Demo/GLUT/glutplane.py Lines: 233, 234, 235, 236
OpenGL-Demo PyOpenGL-Demo/GLE/maintest.py Lines: 42
OpenGL-Demo PyOpenGL-Demo/proesch/simple/simpleInteraction.py Lines: 116, 117, 118, 121