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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996, 1998.
  3. ."
  4. .TH glutDeviceGet 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutDeviceGet - retrieves GLUT device information represented by integers. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. int glutDeviceGet(GLenum info);
  11. .fi
  12. .SH ARGUMENTS
  13. .IP fIinfofP 1i
  14. Name of device information to retrieve.
  15. .TP 8
  16. .B GLUT_HAS_KEYBOARD 
  17. Non-zero if a keyboard is available; zero if not available. For most
  18. GLUT implementations, a keyboard can be assumed.
  19. .TP 8
  20. .B GLUT_HAS_MOUSE
  21. Non-zero if a mouse is available; zero if not available. For most GLUT
  22. implementations, a keyboard can be assumed. 
  23. .TP 8
  24. .B GLUT_HAS_SPACEBALL
  25. Non-zero if a Spaceball is available; zero if not available. 
  26. .TP 8
  27. .B GLUT_HAS_DIAL_AND_BUTTON_BOX 
  28. Non-zero if a dial & button box is available; zero if not available. 
  29. .TP 8
  30. .B GLUT_HAS_TABLET 
  31. Non-zero if a tablet is available; zero if not available. 
  32. .TP 8
  33. .B GLUT_NUM_MOUSE_BUTTONS 
  34. Number of buttons supported by the mouse. If no mouse is supported, zero is
  35. returned. 
  36. .TP 8
  37. .B GLUT_NUM_SPACEBALL_BUTTONS 
  38. Number of buttons supported by the Spaceball. If no Spaceball is supported, zero is
  39. returned. 
  40. .TP 8
  41. .B GLUT_NUM_BUTTON_BOX_BUTTONS 
  42. Number of buttons supported by the dial & button box device. If no dials & button
  43. box device is supported, zero is returned. 
  44. .TP 8
  45. .B GLUT_NUM_DIALS 
  46. Number of dials supported by the dial & button box device. If no dials & button
  47. box device is supported, zero is returned. 
  48. .TP 8
  49. .B GLUT_NUM_TABLET_BUTTONS 
  50. Number of buttons supported by the tablet. If no tablet is supported, zero is
  51. returned. 
  52. .TP 8
  53. .B GLUT_DEVICE_IGNORE_KEY_REPEAT
  54. Returns true if the current window's auto repeated keys are ignored.
  55. This state is controlled by glutIgnoreKeyRepeat.
  56. .TP 8
  57. .B GLUT_DEVICE_KEY_REPEAT
  58. The window system's global key repeat state.  Returns either GLUT_KEY_REPEAT_OFF, GLUT_KEY_REPEAT_ON, or GLUT_KEY_REPEAT_DEFAULT.  This will not necessarily return the value last passed to glutSetKeyRepeat.
  59. .TP 8
  60. .B GLUT_JOYSTICK_POLL_RATE
  61. Returns the current window's joystick poll rate as set by glutJoystickFunc.  If no joystick is supported, the poll rate will always be zero.  The joystick poll
  62. rate also returns zero if the poll rate last specified to glutJoystickFunc is negative or a NULL callback was registered.
  63. .TP 8
  64. .B GLUT_HAS_JOYSTICK
  65. Non-zero if a joystick is available; zero if not available.
  66. .TP 8
  67. .B GLUT_JOYSTICK_BUTTONS
  68. Number of buttons supported by the joystick.  If no joystick is supported, zero is returned.
  69. .TP 8
  70. .B GLUT_JOYSTICK_AXES
  71. Number of axes supported by the joystick.  If no joystick is supposrted, zero is returned.
  72. .SH DESCRIPTION
  73. glutDeviceGet retrieves GLUT device information represented by integers. The info
  74. parameter determines what type of device information to return. Requesting device
  75. information for an invalid GLUT device information name returns negative one.
  76. .SH X IMPLEMENTATION NOTES
  77. The current implementation uses to X Input extension to regonize SGI's Spaceball,
  78. tablet, and dial and button box devices.
  79. .SH WIN32 IMPLEMENTATION NOTES
  80. The GLUT_DEVICE_KEY_REPEAT alwasy returns GLUT_KEY_REPEAT_ON.
  81. .SH SEE ALSO
  82. glutGet, glutKeyboardFunc, glutMouseFunc, glutSpaceballMotion, glutTabletMotionFunc, glutTabletButtonFunc,
  83. glutDialsFunc, glutButtonBoxFunc, glutIgnoreKeyRepeat, glutSetKeyRepeat, glutJoystickFunc
  84. .SH AUTHOR
  85. Mark J. Kilgard (mjk@nvidia.com)