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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutPositionWindow 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutPositionWindow - requests a change to the position of the current window. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutPositionWindow(int x, int y);
  11. .fi
  12. .SH ARGUMENTS
  13. .IP fIxfP 1i
  14. New X location of window in pixels. 
  15. .IP fIyfP 1i
  16. New Y location of window in pixels. 
  17. .SH DESCRIPTION
  18. glutPositionWindow requests a change in the position of the current
  19. window. For top-level windows, the x and y parameters are pixel offsets
  20. from the screen origin. For subwindows, the x and y parameters are
  21. pixel offsets from the window's parent window origin. 
  22. The requests by glutPositionWindow are not processed immediately.
  23. The request is executed after returning to the main event loop. This
  24. allows multiple glutPositionWindow, glutReshapeWindow, and
  25. glutFullScreen requests to the same window to be coalesced. 
  26. In the case of top-level windows, a glutPositionWindow call is
  27. considered only a request for positioning the window. The window
  28. system is free to apply its own policies to top-level window placement.
  29. The intent is that top-level windows should be repositioned according
  30. glutPositionWindow's parameters. 
  31. glutPositionWindow disables the full screen status of a window if
  32. previously enabled. 
  33. .SH SEE ALSO
  34. glutInitWindowPosition, glutReshapeWindow
  35. .SH AUTHOR
  36. Mark J. Kilgard (mjk@nvidia.com)