glutKeyboardFunc (3) Linux Manual Page
glutKeyboardFunc – Sets the Keyboard callback for the current window.
Library
OpenGLUT – inputSynopsis
In openglut.h Ft void Fn glutKeyboardFunc void( * callback )( unsigned char key int x int y )Parameters
Bf EmDescription
This callback registration allows you to handle traditional ASCII keyboard input. A general rule of thumb is that if a key has a common ASCII code, then OpenGLUT assigns that code to the key and calls the Keyboard Bf SyAs a convenience, the mouse coordinates, relative to your window, are also returned.
This callback is bound to the Bf Li
Caveats
This function is not very international-friendly.Windows created via glutCreateMenuWindow() always cascade keyboard and mouse events to their parent.
