glutGetModifiers.man
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:1k
源码类别:

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutGetModifiers 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutGetModifiers - returns the modifier key state when certain
  7. callbacks were generated. 
  8. .SH SYNTAX
  9. .nf
  10. .LP
  11. int glutGetModifiers(void);
  12. .fi
  13. .SH DESCRIPTION
  14. glutGetModifiers returns the modifier key state at the time the
  15. input event for a keyboard, special, or mouse callback is generated.
  16. This routine may only be called while a keyboard, special, or mouse
  17. callback is being handled. The window system is permitted to intercept
  18. window system defined modifier key strokes or mouse buttons, in
  19. which case, no GLUT callback will be generated. This interception
  20. will be independent of use of glutGetModifiers. 
  21. The bitmask components of the returned integer value are:
  22. .TP 8
  23. .B GLUT_ACTIVE_SHIFT 
  24. Set if the Shift modifier or Caps Lock is active. 
  25. .TP 8
  26. .B GLUT_ACTIVE_CTRL 
  27. Set if the Ctrl modifier is active. 
  28. .TP 8
  29. .B GLUT_ACTIVE_ALT 
  30. Set if the Alt modifier is active. 
  31. .SH SEE ALSO
  32. glutSpecialFunc, glutKeyboardFunc, glutMouseFunc
  33. .SH AUTHOR
  34. Mark J. Kilgard (mjk@nvidia.com)