glutMenuStateFunc - Man Page
Deprecated variant of glutMenuStatusFunc()
Library
OpenGLUT - deprecated
Synopsis
#include <openglut.h
>
void
glutMenuStateFunc
(void( *callback )( int status ));
Parameters
callback
Client menu status hook.
Description
Broadly, OpenGLUT operates in two modes. At any given time, it is either in menu mode (with a popup menu display, possibly with subitems) or it is not.
When moving from non-menu to menu status,
callback
(if defined) will be called with
GLUT_MENU_IN_USE
. Conversely, when moving from menu to non-menu status,
callback
(if defined) will be called with
GLUT_MENU_NOT_IN_USE
.
This callback is bound to
both
the
current window
and the
current menu
.
Caveats
Obsolete. Depcreated.
Bugs
Your callback is not actually called presently.