tkUnixCursor.c
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:12k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * tkUnixCursor.c --
  3.  *
  4.  * This file contains X specific cursor manipulation routines.
  5.  *
  6.  * Copyright (c) 1995-1997 Sun Microsystems, Inc.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * RCS: @(#) $Id: tkUnixCursor.c,v 1.6 2002/08/05 04:30:40 dgp Exp $
  12.  */
  13. #include "tkPort.h"
  14. #include "tkInt.h"
  15. /*
  16.  * The following data structure is a superset of the TkCursor structure
  17.  * defined in tkCursor.c.  Each system specific cursor module will define
  18.  * a different cursor structure.  All of these structures must have the
  19.  * same header consisting of the fields in TkCursor.
  20.  */
  21. typedef struct {
  22.     TkCursor info; /* Generic cursor info used by tkCursor.c */
  23.     Display *display; /* Display for which cursor is valid. */
  24. } TkUnixCursor;
  25. /*
  26.  * The table below is used to map from the name of a cursor to its
  27.  * index in the official cursor font:
  28.  */
  29. static struct CursorName {
  30.     char *name;
  31.     unsigned int shape;
  32. } cursorNames[] = {
  33.     {"X_cursor", XC_X_cursor},
  34.     {"arrow", XC_arrow},
  35.     {"based_arrow_down", XC_based_arrow_down},
  36.     {"based_arrow_up", XC_based_arrow_up},
  37.     {"boat", XC_boat},
  38.     {"bogosity", XC_bogosity},
  39.     {"bottom_left_corner", XC_bottom_left_corner},
  40.     {"bottom_right_corner", XC_bottom_right_corner},
  41.     {"bottom_side", XC_bottom_side},
  42.     {"bottom_tee", XC_bottom_tee},
  43.     {"box_spiral", XC_box_spiral},
  44.     {"center_ptr", XC_center_ptr},
  45.     {"circle", XC_circle},
  46.     {"clock", XC_clock},
  47.     {"coffee_mug", XC_coffee_mug},
  48.     {"cross", XC_cross},
  49.     {"cross_reverse", XC_cross_reverse},
  50.     {"crosshair", XC_crosshair},
  51.     {"diamond_cross", XC_diamond_cross},
  52.     {"dot", XC_dot},
  53.     {"dotbox", XC_dotbox},
  54.     {"double_arrow", XC_double_arrow},
  55.     {"draft_large", XC_draft_large},
  56.     {"draft_small", XC_draft_small},
  57.     {"draped_box", XC_draped_box},
  58.     {"exchange", XC_exchange},
  59.     {"fleur", XC_fleur},
  60.     {"gobbler", XC_gobbler},
  61.     {"gumby", XC_gumby},
  62.     {"hand1", XC_hand1},
  63.     {"hand2", XC_hand2},
  64.     {"heart", XC_heart},
  65.     {"icon", XC_icon},
  66.     {"iron_cross", XC_iron_cross},
  67.     {"left_ptr", XC_left_ptr},
  68.     {"left_side", XC_left_side},
  69.     {"left_tee", XC_left_tee},
  70.     {"leftbutton", XC_leftbutton},
  71.     {"ll_angle", XC_ll_angle},
  72.     {"lr_angle", XC_lr_angle},
  73.     {"man", XC_man},
  74.     {"middlebutton", XC_middlebutton},
  75.     {"mouse", XC_mouse},
  76.     {"pencil", XC_pencil},
  77.     {"pirate", XC_pirate},
  78.     {"plus", XC_plus},
  79.     {"question_arrow", XC_question_arrow},
  80.     {"right_ptr", XC_right_ptr},
  81.     {"right_side", XC_right_side},
  82.     {"right_tee", XC_right_tee},
  83.     {"rightbutton", XC_rightbutton},
  84.     {"rtl_logo", XC_rtl_logo},
  85.     {"sailboat", XC_sailboat},
  86.     {"sb_down_arrow", XC_sb_down_arrow},
  87.     {"sb_h_double_arrow", XC_sb_h_double_arrow},
  88.     {"sb_left_arrow", XC_sb_left_arrow},
  89.     {"sb_right_arrow", XC_sb_right_arrow},
  90.     {"sb_up_arrow", XC_sb_up_arrow},
  91.     {"sb_v_double_arrow", XC_sb_v_double_arrow},
  92.     {"shuttle", XC_shuttle},
  93.     {"sizing", XC_sizing},
  94.     {"spider", XC_spider},
  95.     {"spraycan", XC_spraycan},
  96.     {"star", XC_star},
  97.     {"target", XC_target},
  98.     {"tcross", XC_tcross},
  99.     {"top_left_arrow", XC_top_left_arrow},
  100.     {"top_left_corner", XC_top_left_corner},
  101.     {"top_right_corner", XC_top_right_corner},
  102.     {"top_side", XC_top_side},
  103.     {"top_tee", XC_top_tee},
  104.     {"trek", XC_trek},
  105.     {"ul_angle", XC_ul_angle},
  106.     {"umbrella", XC_umbrella},
  107.     {"ur_angle", XC_ur_angle},
  108.     {"watch", XC_watch},
  109.     {"xterm", XC_xterm},
  110.     {NULL, 0}
  111. };
  112. /*
  113.  * Font to use for cursors:
  114.  */
  115. #ifndef CURSORFONT
  116. #define CURSORFONT "cursor"
  117. #endif
  118. /*
  119.  *----------------------------------------------------------------------
  120.  *
  121.  * TkGetCursorByName --
  122.  *
  123.  * Retrieve a cursor by name.  Parse the cursor name into fields
  124.  * and create a cursor, either from the standard cursor font or
  125.  * from bitmap files.
  126.  *
  127.  * Results:
  128.  * Returns a new cursor, or NULL on errors.  
  129.  *
  130.  * Side effects:
  131.  * Allocates a new cursor.
  132.  *
  133.  *----------------------------------------------------------------------
  134.  */
  135. TkCursor *
  136. TkGetCursorByName(interp, tkwin, string)
  137.     Tcl_Interp *interp; /* Interpreter to use for error reporting. */
  138.     Tk_Window tkwin; /* Window in which cursor will be used. */
  139.     Tk_Uid string; /* Description of cursor.  See manual entry
  140.  * for details on legal syntax. */
  141. {
  142.     TkUnixCursor *cursorPtr = NULL;
  143.     Cursor cursor = None;
  144.     int argc;
  145.     CONST char **argv = NULL;
  146.     Pixmap source = None;
  147.     Pixmap mask = None;
  148.     Display *display = Tk_Display(tkwin);
  149.     if (Tcl_SplitList(interp, string, &argc, &argv) != TCL_OK) {
  150. return NULL;
  151.     }
  152.     if (argc == 0) {
  153. goto badString;
  154.     }
  155.     if (argv[0][0] != '@') {
  156. XColor fg, bg;
  157. unsigned int maskIndex;
  158. register struct CursorName *namePtr;
  159. TkDisplay *dispPtr;
  160. /*
  161.  * The cursor is to come from the standard cursor font.  If one
  162.  * arg, it is cursor name (use black and white for fg and bg).
  163.  * If two args, they are name and fg color (ignore mask).  If
  164.  * three args, they are name, fg, bg.  Some of the code below
  165.  * is stolen from the XCreateFontCursor Xlib procedure.
  166.  */
  167. if (argc > 3) {
  168.     goto badString;
  169. }
  170. for (namePtr = cursorNames; ; namePtr++) {
  171.     if (namePtr->name == NULL) {
  172. goto badString;
  173.     }
  174.     if ((namePtr->name[0] == argv[0][0])
  175.     && (strcmp(namePtr->name, argv[0]) == 0)) {
  176. break;
  177.     }
  178. }
  179. maskIndex = namePtr->shape + 1;
  180. if (argc == 1) {
  181.     fg.red = fg.green = fg.blue = 0;
  182.     bg.red = bg.green = bg.blue = 65535;
  183. } else {
  184.     if (XParseColor(display, Tk_Colormap(tkwin), argv[1],
  185.     &fg) == 0) {
  186. Tcl_AppendResult(interp, "invalid color name "", argv[1],
  187. """, (char *) NULL);
  188. goto cleanup;
  189.     }
  190.     if (argc == 2) {
  191. bg.red = bg.green = bg.blue = 0;
  192. maskIndex = namePtr->shape;
  193.     } else {
  194. if (XParseColor(display, Tk_Colormap(tkwin), argv[2],
  195. &bg) == 0) {
  196.     Tcl_AppendResult(interp, "invalid color name "", argv[2],
  197.     """, (char *) NULL);
  198.     goto cleanup;
  199. }
  200.     }
  201. }
  202. dispPtr = ((TkWindow *) tkwin)->dispPtr;
  203. if (dispPtr->cursorFont == None) {
  204.     dispPtr->cursorFont = XLoadFont(display, CURSORFONT);
  205.     if (dispPtr->cursorFont == None) {
  206. Tcl_SetResult(interp, "couldn't load cursor font", TCL_STATIC);
  207. goto cleanup;
  208.     }
  209. }
  210. cursor = XCreateGlyphCursor(display, dispPtr->cursorFont,
  211. dispPtr->cursorFont, namePtr->shape, maskIndex,
  212. &fg, &bg);
  213.     } else {
  214. int width, height, maskWidth, maskHeight;
  215. int xHot, yHot, dummy1, dummy2;
  216. XColor fg, bg;
  217.         /*
  218.          * Prevent file system access in safe interpreters.
  219.          */
  220.         if (Tcl_IsSafe(interp)) {
  221.             Tcl_AppendResult(interp, "can't get cursor from a file in",
  222.                     " a safe interpreter", (char *) NULL);
  223.             cursorPtr = NULL;
  224.             goto cleanup;
  225.         }
  226.         
  227. /*
  228.  * The cursor is to be created by reading bitmap files.  There
  229.  * should be either two elements in the list (source, color) or
  230.  * four (source mask fg bg).
  231.  */
  232. if ((argc != 2) && (argc != 4)) {
  233.     goto badString;
  234. }
  235. if (TkReadBitmapFile(display,
  236. RootWindowOfScreen(Tk_Screen(tkwin)), &argv[0][1],
  237. (unsigned int *) &width, (unsigned int *) &height,
  238. &source, &xHot, &yHot) != BitmapSuccess) {
  239.     Tcl_AppendResult(interp, "cleanup reading bitmap file "",
  240.     &argv[0][1], """, (char *) NULL);
  241.     goto cleanup;
  242. }
  243. if ((xHot < 0) || (yHot < 0) || (xHot >= width) || (yHot >= height)) {
  244.     Tcl_AppendResult(interp, "bad hot spot in bitmap file "",
  245.     &argv[0][1], """, (char *) NULL);
  246.     goto cleanup;
  247. }
  248. if (argc == 2) {
  249.     if (XParseColor(display, Tk_Colormap(tkwin), argv[1],
  250.     &fg) == 0) {
  251. Tcl_AppendResult(interp, "invalid color name "",
  252. argv[1], """, (char *) NULL);
  253. goto cleanup;
  254.     }
  255.     cursor = XCreatePixmapCursor(display, source, source,
  256.     &fg, &fg, (unsigned) xHot, (unsigned) yHot);
  257. } else {
  258.     if (TkReadBitmapFile(display,
  259.     RootWindowOfScreen(Tk_Screen(tkwin)), argv[1],
  260.     (unsigned int *) &maskWidth, (unsigned int *) &maskHeight,
  261.     &mask, &dummy1, &dummy2) != BitmapSuccess) {
  262. Tcl_AppendResult(interp, "cleanup reading bitmap file "",
  263. argv[1], """, (char *) NULL);
  264. goto cleanup;
  265.     }
  266.     if ((maskWidth != width) && (maskHeight != height)) {
  267. Tcl_SetResult(interp,
  268. "source and mask bitmaps have different sizes",
  269. TCL_STATIC);
  270. goto cleanup;
  271.     }
  272.     if (XParseColor(display, Tk_Colormap(tkwin), argv[2],
  273.     &fg) == 0) {
  274. Tcl_AppendResult(interp, "invalid color name "", argv[2],
  275. """, (char *) NULL);
  276. goto cleanup;
  277.     }
  278.     if (XParseColor(display, Tk_Colormap(tkwin), argv[3],
  279.     &bg) == 0) {
  280. Tcl_AppendResult(interp, "invalid color name "", argv[3],
  281. """, (char *) NULL);
  282. goto cleanup;
  283.     }
  284.     cursor = XCreatePixmapCursor(display, source, mask,
  285.     &fg, &bg, (unsigned) xHot, (unsigned) yHot);
  286. }
  287.     }
  288.     if (cursor != None) {
  289. cursorPtr = (TkUnixCursor *) ckalloc(sizeof(TkUnixCursor));
  290. cursorPtr->info.cursor = (Tk_Cursor) cursor;
  291. cursorPtr->display = display;
  292.     }
  293.     cleanup:
  294.     if (argv != NULL) {
  295. ckfree((char *) argv);
  296.     }
  297.     if (source != None) {
  298. Tk_FreePixmap(display, source);
  299.     }
  300.     if (mask != None) {
  301. Tk_FreePixmap(display, mask);
  302.     }
  303.     return (TkCursor *) cursorPtr;
  304.     badString:
  305.     if (argv) {
  306. ckfree((char *) argv);
  307.     }
  308.     Tcl_AppendResult(interp, "bad cursor spec "", string, """,
  309.     (char *) NULL);
  310.     return NULL;
  311. }
  312. /*
  313.  *----------------------------------------------------------------------
  314.  *
  315.  * TkCreateCursorFromData --
  316.  *
  317.  * Creates a cursor from the source and mask bits.
  318.  *
  319.  * Results:
  320.  * Returns a new cursor, or NULL on errors.
  321.  *
  322.  * Side effects:
  323.  * Allocates a new cursor.
  324.  *
  325.  *----------------------------------------------------------------------
  326.  */
  327. TkCursor *
  328. TkCreateCursorFromData(tkwin, source, mask, width, height, xHot, yHot,
  329. fgColor, bgColor)
  330.     Tk_Window tkwin; /* Window in which cursor will be used. */
  331.     CONST char *source; /* Bitmap data for cursor shape. */
  332.     CONST char *mask; /* Bitmap data for cursor mask. */
  333.     int width, height; /* Dimensions of cursor. */
  334.     int xHot, yHot; /* Location of hot-spot in cursor. */
  335.     XColor fgColor; /* Foreground color for cursor. */
  336.     XColor bgColor; /* Background color for cursor. */
  337. {
  338.     Cursor cursor;
  339.     Pixmap sourcePixmap, maskPixmap;
  340.     TkUnixCursor *cursorPtr = NULL;
  341.     Display *display = Tk_Display(tkwin);
  342.     sourcePixmap = XCreateBitmapFromData(display,
  343.     RootWindowOfScreen(Tk_Screen(tkwin)), source, (unsigned) width,
  344.     (unsigned) height);
  345.     maskPixmap = XCreateBitmapFromData(display, 
  346.     RootWindowOfScreen(Tk_Screen(tkwin)), mask, (unsigned) width,
  347.     (unsigned) height);
  348.     cursor = XCreatePixmapCursor(display, sourcePixmap,
  349.     maskPixmap, &fgColor, &bgColor, (unsigned) xHot, (unsigned) yHot);
  350.     Tk_FreePixmap(display, sourcePixmap);
  351.     Tk_FreePixmap(display, maskPixmap);
  352.     if (cursor != None) {
  353. cursorPtr = (TkUnixCursor *) ckalloc(sizeof(TkUnixCursor));
  354. cursorPtr->info.cursor = (Tk_Cursor) cursor;
  355. cursorPtr->display = display;
  356.     }
  357.     return (TkCursor *) cursorPtr;
  358. }
  359. /*
  360.  *----------------------------------------------------------------------
  361.  *
  362.  * TkpFreeCursor --
  363.  *
  364.  * This procedure is called to release a cursor allocated by
  365.  * TkGetCursorByName.
  366.  *
  367.  * Results:
  368.  * None.
  369.  *
  370.  * Side effects:
  371.  * The cursor data structure is deallocated.
  372.  *
  373.  *----------------------------------------------------------------------
  374.  */
  375. void
  376. TkpFreeCursor(cursorPtr)
  377.     TkCursor *cursorPtr;
  378. {
  379.     TkUnixCursor *unixCursorPtr = (TkUnixCursor *) cursorPtr;
  380.     XFreeCursor(unixCursorPtr->display, (Cursor) unixCursorPtr->info.cursor);
  381.     Tk_FreeXId(unixCursorPtr->display, (XID) unixCursorPtr->info.cursor);
  382. }