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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutSetWindowTitle 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutSetWindowTitle, glutSetIconTitle - change the window or icon title respectively of the current top-level window. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutSetWindowTitle(char *name);
  11. void glutSetIconTitle(char *name);
  12. .fi
  13. .SH ARGUMENTS
  14. .IP fInamefP 1i
  15. ASCII character string for the window or icon name to be set for
  16. the window. 
  17. .SH DESCRIPTION
  18. These routines should be called only when the current window is a
  19. top-level window. Upon creation of a top-level window, the window
  20. and icon names are determined by the name parameter to
  21. glutCreateWindow. Once created, glutSetWindowTitle and
  22. glutSetIconTitle can change the window and icon names
  23. respectively of top-level windows. Each call requests the window
  24. system change the title appropriately. Requests are not buffered or
  25. coalesced. The policy by which the window and icon name are displayed
  26. is window system dependent. 
  27. .SH SEE ALSO
  28. glutCreateWindow, glutIconifyWindow
  29. .SH AUTHOR
  30. Mark J. Kilgard (mjk@nvidia.com)