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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutChangeToSubMenu 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutChangeToSubMenu - changes the specified menu item in the current
  7. menu into a sub-menu trigger. 
  8. .SH SYNTAX
  9. .nf
  10. .LP
  11. void glutChangeToSubMenu(int entry, char *name, int menu);
  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 item to cascade the sub-menu from. 
  18. .IP fImenufP 1i
  19. Identifier of the menu to cascade from this sub-menu menu item. 
  20. .SH DESCRIPTION
  21. glutChangeToSubMenu changes the specified menu item in the current
  22. menu into a sub-menu trigger. 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 sub-menu trigger already.
  26. The string name will be displayed for the newly changed sub-menu
  27. trigger. The menu identifier names the sub-menu to cascade from the
  28. newly added sub-menu trigger. 
  29. .SH SEE ALSO
  30. glutChangeToMenuEntry, glutAddSubMenu, glutRemoveMenuItem
  31. .SH AUTHOR
  32. Mark J. Kilgard (mjk@nvidia.com)