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

GIS编程

开发平台:

Visual C++

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