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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutShowWindow 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutShowWindow, glutHideWindow, glutIconifyWindow - change the display status of the current window. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutShowWindow(void);
  11. void glutHideWindow(void);
  12. void glutIconifyWindow(void);
  13. .fi
  14. .SH DESCRIPTION
  15. glutShowWindow will show the current window (though it may still
  16. not be visible if obscured by other shown windows). glutHideWindow
  17. will hide the current window. glutIconifyWindow will iconify a
  18. top-level window, but GLUT prohibits iconification of a subwindow.
  19. The effect of showing, hiding, and iconifying windows does not take
  20. place immediately. Instead the requests are saved for execution upon
  21. return to the GLUT event loop. Subsequent show, hide, or iconification
  22. requests on a window replace the previously saved request for that
  23. window. The effect of hiding, showing, or iconifying top-level windows
  24. is subject to the window system's policy for displaying windows. 
  25. .SH SEE ALSO
  26. glutPopWindow, glutPushWindow
  27. .SH AUTHOR
  28. Mark J. Kilgard (mjk@nvidia.com)