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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutMenuStatusFunc 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutMenuStatusFunc - sets the global menu status callback. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutMenuStatusFunc(void (*func)(int status, int x, int y));
  11. void glutMenuStateFunc(void (*func)(int status));
  12. .fi
  13. .SH ARGUMENTS
  14. .IP fIfuncfP 1i
  15. The new menu status (or state) callback function.
  16. .SH DESCRIPTION
  17. glutMenuStatusFunc sets the global menu status callback so a GLUT
  18. program can determine when a menu is in use or not. When a menu
  19. status callback is registered, it will be called with the value
  20. GLUT_MENU_IN_USE for its value parameter when pop-up menus are
  21. in use by the user; and the callback will be called with the value
  22. GLUT_MENU_NOT_IN_USE for its status parameter when pop-up
  23. menus are no longer in use. The x and y parameters indicate the location
  24. in window coordinates of the button press that caused the menu to go
  25. into use, or the location where the menu was released (may be outside the
  26. window). The func parameter names the callback function. Other
  27. callbacks continue to operate (except mouse motion callbacks) when
  28. pop-up menus are in use so the menu status callback allows a program to
  29. suspend animation or other tasks when menus are in use. The cascading
  30. and unmapping of sub-menus from an initial pop-up menu does not
  31. generate menu status callbacks. There is a single menu status callback for
  32. GLUT. 
  33. When the menu status callback is called, the current menu will be set to
  34. the initial pop-up menu in both the GLUT_MENU_IN_USE and
  35. GLUT_MENU_NOT_IN_USE cases. The current window will be set to the
  36. window from which the initial menu was popped up from, also in both
  37. cases. 
  38. Passing NULL to glutMenuStatusFunc disables the generation of the
  39. menu status callback. 
  40. glutMenuStateFunc is a deprecated version of the
  41. glutMenuStatusFunc routine. The only difference is
  42. glutMenuStateFunc callback prototype does not deliver the two
  43. additional x and y coordinates. 
  44. .SH SEE ALSO
  45. glutCreateMenu, glutCreateWindow
  46. .SH AUTHOR
  47. Mark J. Kilgard (mjk@nvidia.com)