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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutTabletButtonFunc 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutTabletButtonFunc - sets the special keyboard callback for the current window. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutTabletButtonFunc(void (*func)(int button, int state,
  11.                           int x, int y));
  12. .fi
  13. .SH ARGUMENTS
  14. .IP fIfuncfP 1i
  15. The new tablet button callback function. 
  16. .SH DESCRIPTION
  17. glutTabletButtonFunc sets the tablet button callback for the current
  18. window. The tablet button callback for a window is called when the
  19. window has tablet input focus (normally, when the mouse is in the
  20. window) and the user generates tablet button presses. The button
  21. parameter will be the button number (starting at one). The number of
  22. available tablet buttons can be determined with
  23. glutDeviceGet(GLUT_NUM_TABLET_BUTTONS). The state is
  24. either GLUT_UP or GLUT_DOWN indicating whether the callback was due
  25. to a release or press respectively. The x and y callback parameters
  26. indicate the window relative coordinates when the tablet button state
  27. changed. 
  28. Registering a tablet button callback when a tablet device is not available
  29. is ineffectual and not an error. In this case, no tablet button callbacks will
  30. be generated. 
  31. Passing NULL to glutTabletButtonFunc disables the generation of
  32. tablet button callbacks. When a new window is created, no tablet button
  33. callback is initially registered. 
  34. .SH SEE ALSO
  35. glutTabletMotionFunc, glutDeviceGet, glutMotionFunc, glutSpaceballMotionFunc
  36. .SH AUTHOR
  37. Mark J. Kilgard (mjk@nvidia.com)