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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutChangeToMenuEntry 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutChangeToMenuEntry - changes the specified menu item in
  7. the current menu into a menu entry. 
  8. .SH SYNTAX
  9. .nf
  10. .LP
  11. void glutChangeToMenuEntry(int entry, char *name, int value);
  12. .fi
  13. .SH ARGUMENTS
  14. .IP fIentryfP 1i
  15. Index into the menu items of the current menu (1 is the topmost menu item). 
  16. .IP fInamefP 1i
  17. ASCII character string to display in the menu entry. 
  18. .IP fIvaluefP 1i
  19. Value to return to the menu's callback function if the menu entry is selected. 
  20. .SH DESCRIPTION
  21. glutChangeToMenuEntry changes the specified menu entry in the
  22. current menu into a menu entry. The entry parameter determines which
  23. menu item should be changed, with one being the topmost item. entry
  24. must be between 1 and glutGet(GLUT_MENU_NUM_ITEMS) inclusive.
  25. The menu item to change does not have to be a menu entry already. The
  26. string name will be displayed for the newly changed menu entry. The
  27. value will be returned to the menu's callback if this menu entry is
  28. selected. 
  29. .SH SEE ALSO
  30. glutChangeToSubMenu, glutAddMenuEntry, glutRemoveMenuItem
  31. .SH AUTHOR
  32. Mark J. Kilgard (mjk@nvidia.com)