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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutAddMenuEntry 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutAddMenuEntry - adds a menu entry to the bottom of the current menu. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutAddMenuEntry(char *name, int value);
  11. .fi
  12. .SH ARGUMENTS
  13. .IP fInamefP 1i
  14. ASCII character string to display in the menu entry. 
  15. .IP fIvaluefP 1i
  16. Value to return to the menu's callback function if the menu
  17. entry is selected. 
  18. .SH DESCRIPTION
  19. glutAddMenuEntry adds a menu entry to the bottom of the current
  20. menu. The string name will be displayed for the newly added menu
  21. entry. If the menu entry is selected by the user, the menu's callback
  22. will be called passing value as the callback's parameter. 
  23. .SH SEE ALSO
  24. glutAddSubMenu, glutCreateMenu, glutChangeToMenuEntry, glutRemoveMenuItem
  25. .SH AUTHOR
  26. Mark J. Kilgard (mjk@nvidia.com)