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

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Mark J. Kilgard, 1995, 1998. */
  2. /* This program is freely distributable without licensing fees 
  3.    and is provided without guarantee or warrantee expressed or 
  4.    implied. This program is -not- in the public domain. */
  5. #include "glutint.h"
  6. #if !defined(_WIN32)
  7. #include <X11/Xatom.h>  /* For XA_CURSOR */
  8. #include <X11/cursorfont.h>
  9. #endif
  10. typedef struct _CursorTable {
  11. #if defined(_WIN32)
  12.   char* glyph;
  13. #else
  14.   int glyph;
  15. #endif
  16.   Cursor cursor;
  17. } CursorTable;
  18. /* *INDENT-OFF* */
  19. static CursorTable cursorTable[] = {
  20.   {XC_arrow, None},   /* GLUT_CURSOR_RIGHT_ARROW */
  21.   {XC_top_left_arrow, None},   /* GLUT_CURSOR_LEFT_ARROW */
  22.   {XC_hand1, None},   /* GLUT_CURSOR_INFO */
  23.   {XC_pirate, None},   /* GLUT_CURSOR_DESTROY */
  24.   {XC_question_arrow, None},   /* GLUT_CURSOR_HELP */
  25.   {XC_exchange, None},   /* GLUT_CURSOR_CYCLE */
  26.   {XC_spraycan, None},   /* GLUT_CURSOR_SPRAY */
  27.   {XC_watch, None},   /* GLUT_CURSOR_WAIT */
  28.   {XC_xterm, None},   /* GLUT_CURSOR_TEXT */
  29.   {XC_crosshair, None},   /* GLUT_CURSOR_CROSSHAIR */
  30.   {XC_sb_v_double_arrow, None},   /* GLUT_CURSOR_UP_DOWN */
  31.   {XC_sb_h_double_arrow, None},   /* GLUT_CURSOR_LEFT_RIGHT */
  32.   {XC_top_side, None},   /* GLUT_CURSOR_TOP_SIDE */
  33.   {XC_bottom_side, None},   /* GLUT_CURSOR_BOTTOM_SIDE */
  34.   {XC_left_side, None},   /* GLUT_CURSOR_LEFT_SIDE */
  35.   {XC_right_side, None},   /* GLUT_CURSOR_RIGHT_SIDE */
  36.   {XC_top_left_corner, None},   /* GLUT_CURSOR_TOP_LEFT_CORNER */
  37.   {XC_top_right_corner, None},   /* GLUT_CURSOR_TOP_RIGHT_CORNER */
  38.   {XC_bottom_right_corner, None}, /* GLUT_CURSOR_BOTTOM_RIGHT_CORNER */
  39.   {XC_bottom_left_corner, None},  /* GLUT_CURSOR_BOTTOM_LEFT_CORNER */
  40. };
  41. /* *INDENT-ON* */
  42. #if !defined(_WIN32)
  43. static Cursor blankCursor = None;
  44. static Cursor fullCrosshairCusor = None;
  45. /* SGI X server's support a special property called the
  46.    _SGI_CROSSHAIR_CURSOR that when installed as a window's
  47.    cursor, becomes a full screen crosshair cursor.  SGI
  48.    has special cursor generation hardware for this case. */
  49. static Cursor
  50. getFullCrosshairCursor(void)
  51. {
  52.   Cursor cursor;
  53.   Atom crosshairAtom, actualType;
  54.   int rc, actualFormat;
  55.   unsigned long n, left;
  56.   unsigned long *value;
  57.   if (fullCrosshairCusor == None) {
  58.     crosshairAtom = XInternAtom(__glutDisplay,
  59.       "_SGI_CROSSHAIR_CURSOR", True);
  60.     if (crosshairAtom != None) {
  61.       value = 0;        /* Make compiler happy. */
  62.       rc = XGetWindowProperty(__glutDisplay, __glutRoot,
  63.         crosshairAtom, 0, 1, False, XA_CURSOR, &actualType,
  64.         &actualFormat, &n, &left, (unsigned char **) &value);
  65.       if (rc == Success && actualFormat == 32 && n >= 1) {
  66.         cursor = value[0];
  67.         XFree(value);
  68.         return cursor;
  69.       }
  70.     }
  71.   }
  72.   return XCreateFontCursor(__glutDisplay, XC_crosshair);
  73. }
  74. /* X11 forces you to create a blank cursor if you want
  75.    to disable the cursor. */
  76. static Cursor
  77. makeBlankCursor(void)
  78. {
  79.   static char data[1] =
  80.   {0};
  81.   Cursor cursor;
  82.   Pixmap blank;
  83.   XColor dummy;
  84.   blank = XCreateBitmapFromData(__glutDisplay, __glutRoot,
  85.     data, 1, 1);
  86.   if (blank == None)
  87.     __glutFatalError("out of memory.");
  88.   cursor = XCreatePixmapCursor(__glutDisplay, blank, blank,
  89.     &dummy, &dummy, 0, 0);
  90.   XFreePixmap(__glutDisplay, blank);
  91.   return cursor;
  92. }
  93. #endif /* !_WIN32 */
  94. /* Win32 and X11 use this same function to accomplish
  95.    fairly different tasks.  X11 lets you just define the
  96.    cursor for a window and the window system takes care
  97.    of making sure that the window's cursor is installed
  98.    when the mouse is in the window.  Win32 requires the
  99.    application to handle a WM_SETCURSOR message to install
  100.    the right cursor when windows are entered.  Think of
  101.    the Win32 __glutSetCursor (called from __glutWindowProc)
  102.    as "install cursor".  Think of the X11 __glutSetCursor
  103.    (called from glutSetCursor) as "define cursor". */
  104. void 
  105. __glutSetCursor(GLUTwindow *window)
  106. {
  107.   int cursor = window->cursor;
  108.   Cursor xcursor;
  109.   if (cursor >= 0 &&
  110.     cursor < sizeof(cursorTable) / sizeof(cursorTable[0])) {
  111.     if (cursorTable[cursor].cursor == None) {
  112.       cursorTable[cursor].cursor = XCreateFontCursor(__glutDisplay,
  113.         cursorTable[cursor].glyph);
  114.     }
  115.     xcursor = cursorTable[cursor].cursor;
  116.   } else {
  117.     /* Special cases. */
  118.     switch (cursor) {
  119.     case GLUT_CURSOR_INHERIT:
  120. #if defined(_WIN32)
  121.       while (window->parent) {
  122.         window = window->parent;
  123.         if (window->cursor != GLUT_CURSOR_INHERIT) {
  124.           __glutSetCursor(window);
  125.           return;
  126.         }
  127.       }
  128.       /* XXX Default to an arrow cursor.  Is this
  129.          right or should we be letting the default
  130.          window proc be installing some system cursor? */
  131.       xcursor = cursorTable[0].cursor;
  132.       if (xcursor == NULL) {
  133.         xcursor =
  134.           cursorTable[0].cursor =
  135.           LoadCursor(NULL, cursorTable[0].glyph);
  136.       }
  137. #else
  138.       xcursor = None;
  139. #endif
  140.       break;
  141.     case GLUT_CURSOR_NONE:
  142. #if defined(_WIN32)
  143.       xcursor = NULL;
  144. #else
  145.       if (blankCursor == None) {
  146.         blankCursor = makeBlankCursor();
  147.       }
  148.       xcursor = blankCursor;
  149. #endif
  150.       break;
  151.     case GLUT_CURSOR_FULL_CROSSHAIR:
  152. #if defined(_WIN32)
  153.       xcursor = LoadCursor(NULL, IDC_CROSS);
  154. #else
  155.       if (fullCrosshairCusor == None) {
  156.         fullCrosshairCusor = getFullCrosshairCursor();
  157.       }
  158.       xcursor = fullCrosshairCusor;
  159. #endif
  160.       break;
  161.     }
  162.   }
  163.   XDefineCursor(__glutDisplay,
  164.     window->win, xcursor);
  165.   XFlush(__glutDisplay);
  166. }
  167. /* CENTRY */
  168. void APIENTRY 
  169. glutSetCursor(int cursor)
  170. {
  171. #ifdef _WIN32
  172.   POINT point;
  173.   __glutCurrentWindow->cursor = cursor;
  174.   /* Are we in the window right now?  If so,
  175.      install the cursor. */
  176.   GetCursorPos(&point);
  177.   if (__glutCurrentWindow->win == WindowFromPoint(point)) {
  178.     __glutSetCursor(__glutCurrentWindow);
  179.   }
  180. #else
  181.   __glutCurrentWindow->cursor = cursor;
  182.   __glutSetCursor(__glutCurrentWindow);
  183. #endif
  184. }
  185. /* ENDCENTRY */