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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutAttachMenu 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutAttachMenu - attaches a mouse button for the current window to the
  7. identifier of the current menu; glutDetachMenu - detaches an attached
  8. mouse button from the current window. 
  9. .SH SYNTAX
  10. .nf
  11. .LP
  12. void glutAttachMenu(int button);
  13. void glutDetachMenu(int button);
  14. .fi
  15. .SH ARGUMENTS
  16. .IP fIbuttonfP 1i
  17. The button to attach a menu or detach a menu.
  18. .SH DESCRIPTION
  19. glutAttachMenu attaches a mouse button for the current window to the
  20. identifier of the current menu; glutDetachMenu detaches an attached
  21. mouse button from the current window. By attaching a menu identifier to
  22. a button, the named menu will be popped up when the user presses the
  23. specified button. button should be one of GLUT_LEFT_BUTTON,
  24. GLUT_MIDDLE_BUTTON, and GLUT_RIGHT_BUTTON. Note that the menu
  25. is attached to the button by identifier, not by reference. 
  26. .SH SEE ALSO
  27. glutCreateMenu, glutMouseFunc, glutMenuStatusFunc
  28. .SH AUTHOR
  29. Mark J. Kilgard (mjk@nvidia.com)