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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutSetCursor 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutSetCursor - changes the cursor image of the current window. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutSetCursor(int cursor);
  11. .fi
  12. .SH ARGUMENTS
  13. .IP fIcursorfP 1i
  14. Name of cursor image to change to.  Possible values follow:
  15. .TP 8
  16. .B GLUT_CURSOR_RIGHT_ARROW
  17. Arrow pointing up and to the right. 
  18. .TP 8
  19. .B GLUT_CURSOR_LEFT_ARROW
  20. Arrow pointing up and to the left. 
  21. .TP 8
  22. .B GLUT_CURSOR_INFO 
  23. Pointing hand. 
  24. .TP 8
  25. .B GLUT_CURSOR_DESTROY
  26. Skull & cross bones. 
  27. .TP 8
  28. .B GLUT_CURSOR_HELP
  29. Question mark. 
  30. .TP 8
  31. .B GLUT_CURSOR_CYCLE
  32. Arrows rotating in a circle. 
  33. .TP 8
  34. .B GLUT_CURSOR_SPRAY
  35. Spray can. 
  36. .TP 8
  37. .B GLUT_CURSOR_WAIT
  38. Wrist watch. 
  39. .TP 8
  40. .B GLUT_CURSOR_TEXT
  41. Insertion point cursor for text. 
  42. .TP 8
  43. .B GLUT_CURSOR_CROSSHAIR
  44. Simple cross-hair. 
  45. .TP 8
  46. .B GLUT_CURSOR_UP_DOWN 
  47. Bi-directional pointing up & down. 
  48. .TP 8
  49. .B GLUT_CURSOR_LEFT_RIGHT
  50. Bi-directional pointing left & right. 
  51. .TP 8
  52. .B GLUT_CURSOR_TOP_SIDE
  53. Arrow pointing to top side. 
  54. .TP 8
  55. .B GLUT_CURSOR_BOTTOM_SIDE
  56. Arrow pointing to bottom side. 
  57. .TP 8
  58. .B GLUT_CURSOR_LEFT_SIDE
  59. Arrow pointing to left side. 
  60. .TP 8
  61. .B GLUT_CURSOR_RIGHT_SIDE
  62. Arrow pointing to right side. 
  63. .TP 8
  64. .B GLUT_CURSOR_TOP_LEFT_CORNER
  65. Arrow pointing to top-left corner. 
  66. .TP 8
  67. .B GLUT_CURSOR_TOP_RIGHT_CORNER
  68. Arrow pointing to top-right corner. 
  69. .TP 8
  70. .B GLUT_CURSOR_BOTTOM_RIGHT_CORNER
  71. Arrow pointing to bottom-left corner. 
  72. .TP 8
  73. .B GLUT_CURSOR_BOTTOM_LEFT_CORNER
  74. Arrow pointing to bottom-right corner. 
  75. .TP 8
  76. .B GLUT_CURSOR_FULL_CROSSHAIR
  77. Full-screen cross-hair cursor (if possible, otherwise
  78. GLUT_CURSOR_CROSSHAIR). 
  79. .TP 8
  80. .B GLUT_CURSOR_NONE
  81. Invisible cursor. 
  82. .TP 8
  83. .B GLUT_CURSOR_INHERIT
  84. Use parent's cursor. 
  85. .SH DESCRIPTION
  86. glutSetCursor changes the cursor image of the current window.
  87. Each call requests the window system change the cursor appropriately.
  88. The cursor image when a window is created is
  89. GLUT_CURSOR_INHERIT. The exact cursor images used are
  90. implementation dependent. The intent is for the image to convey the
  91. meaning of the cursor name. For a top-level window,
  92. GLUT_CURSOR_INHERIT uses the default window system cursor. 
  93. .SH X IMPLEMENTATION NOTES
  94. GLUT for X uses SGI's _SGI_CROSSHAIR_CURSOR convention to
  95. access a full-screen cross-hair cursor if possible.
  96. .SH SEE ALSO
  97. glutCreateWindow, glutCreateSubWindow
  98. .SH AUTHOR
  99. Mark J. Kilgard (mjk@nvidia.com)