glutAttachMenu - Man Page
Attach the current menu to the current window.
Library
OpenGLUT - menus
Synopsis
#include <openglut.h
>
void
glutAttachMenu
(int button);
Parameters
button
Mouse button to bind to
Description
Associates the
button
with the current menu in the current window.
Todo
Assumes 3 mouse buttons. (Actually
FREEGLUT_MAX_MENUS
holds the assumed number of buttons.) Cannot bind to more buttons. Will not issue any warnings or errors if the user does not have enough buttons to reach your menu.
See Also
glutCreateMenu(3) glutSetMenu(3) glutDetachMenu,(3)