glutWindowStatusFunc

sets the window status callback for the current window.

Signature

glutWindowStatusFunc( )-> void
glutWindowStatusFunc( function )
Specify handler for GLUT 'WindowStatus' events
    def handler( (int) state ):
        return None

Parameters

VariablesDescription
func
The new window status callback function.

See Also

glutCreateWindow glutPopWindow glutVisibilityFunc

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.

glutWindowStatusFunc
Glinter Core.py Lines: 628