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

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * tkImgBmap.c --
  3.  *
  4.  * This procedure implements images of type "bitmap" for Tk.
  5.  *
  6.  * Copyright (c) 1994 The Regents of the University of California.
  7.  * Copyright (c) 1994-1997 Sun Microsystems, Inc.
  8.  * Copyright (c) 1999 by Scriptics Corporation.
  9.  *
  10.  * See the file "license.terms" for information on usage and redistribution
  11.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12.  *
  13.  * RCS: @(#) $Id: tkImgBmap.c,v 1.15.2.2 2006/09/22 14:53:06 dkf Exp $
  14.  */
  15. #include "tkInt.h"
  16. #include "tkPort.h"
  17. /*
  18.  * The following data structure represents the master for a bitmap
  19.  * image:
  20.  */
  21. typedef struct BitmapMaster {
  22.     Tk_ImageMaster tkMaster; /* Tk's token for image master.  NULL means
  23.  * the image is being deleted. */
  24.     Tcl_Interp *interp; /* Interpreter for application that is
  25.  * using image. */
  26.     Tcl_Command imageCmd; /* Token for image command (used to delete
  27.  * it when the image goes away).  NULL means
  28.  * the image command has already been
  29.  * deleted. */
  30.     int width, height; /* Dimensions of image. */
  31.     char *data; /* Data comprising bitmap (suitable for
  32.  * input to XCreateBitmapFromData).   May
  33.  * be NULL if no data.  Malloc'ed. */
  34.     char *maskData; /* Data for bitmap's mask (suitable for
  35.  * input to XCreateBitmapFromData).
  36.  * Malloc'ed. */
  37.     Tk_Uid fgUid; /* Value of -foreground option (malloc'ed). */
  38.     Tk_Uid bgUid; /* Value of -background option (malloc'ed). */
  39.     char *fileString; /* Value of -file option (malloc'ed). */
  40.     char *dataString; /* Value of -data option (malloc'ed). */
  41.     char *maskFileString; /* Value of -maskfile option (malloc'ed). */
  42.     char *maskDataString; /* Value of -maskdata option (malloc'ed). */
  43.     struct BitmapInstance *instancePtr;
  44. /* First in list of all instances associated
  45.  * with this master. */
  46. } BitmapMaster;
  47. /*
  48.  * The following data structure represents all of the instances of an
  49.  * image that lie within a particular window:
  50.  */
  51. typedef struct BitmapInstance {
  52.     int refCount; /* Number of instances that share this
  53.  * data structure. */
  54.     BitmapMaster *masterPtr; /* Pointer to master for image. */
  55.     Tk_Window tkwin; /* Window in which the instances will be
  56.  * displayed. */
  57.     XColor *fg; /* Foreground color for displaying image. */
  58.     XColor *bg; /* Background color for displaying image. */
  59.     Pixmap bitmap; /* The bitmap to display. */
  60.     Pixmap mask; /* Mask: only display bitmap pixels where
  61.  * there are 1's here. */
  62.     GC gc; /* Graphics context for displaying bitmap.
  63.  * None means there was an error while
  64.  * setting up the instance, so it cannot
  65.  * be displayed. */
  66.     struct BitmapInstance *nextPtr;
  67. /* Next in list of all instance structures
  68.  * associated with masterPtr (NULL means
  69.  * end of list). */
  70. } BitmapInstance;
  71. /*
  72.  * The type record for bitmap images:
  73.  */
  74. static int GetByte _ANSI_ARGS_((Tcl_Channel chan));
  75. static int ImgBmapCreate _ANSI_ARGS_((Tcl_Interp *interp,
  76.     char *name, int argc, Tcl_Obj *CONST objv[],
  77.     Tk_ImageType *typePtr, Tk_ImageMaster master,
  78.     ClientData *clientDataPtr));
  79. static ClientData ImgBmapGet _ANSI_ARGS_((Tk_Window tkwin,
  80.     ClientData clientData));
  81. static void ImgBmapDisplay _ANSI_ARGS_((ClientData clientData,
  82.     Display *display, Drawable drawable, 
  83.     int imageX, int imageY, int width, int height,
  84.     int drawableX, int drawableY));
  85. static void ImgBmapFree _ANSI_ARGS_((ClientData clientData,
  86.     Display *display));
  87. static void ImgBmapDelete _ANSI_ARGS_((ClientData clientData));
  88. static int ImgBmapPostscript _ANSI_ARGS_((ClientData clientData,
  89.     Tcl_Interp *interp, Tk_Window tkwin,
  90.     Tk_PostscriptInfo psinfo, int x, int y,
  91.     int width, int height, int prepass));
  92. Tk_ImageType tkBitmapImageType = {
  93.     "bitmap", /* name */
  94.     ImgBmapCreate, /* createProc */
  95.     ImgBmapGet, /* getProc */
  96.     ImgBmapDisplay, /* displayProc */
  97.     ImgBmapFree, /* freeProc */
  98.     ImgBmapDelete, /* deleteProc */
  99.     ImgBmapPostscript, /* postscriptProc */
  100.     (Tk_ImageType *) NULL /* nextPtr */
  101. };
  102. /*
  103.  * Information used for parsing configuration specs:
  104.  */
  105. static Tk_ConfigSpec configSpecs[] = {
  106.     {TK_CONFIG_UID, "-background", (char *) NULL, (char *) NULL,
  107. "", Tk_Offset(BitmapMaster, bgUid), 0},
  108.     {TK_CONFIG_STRING, "-data", (char *) NULL, (char *) NULL,
  109. (char *) NULL, Tk_Offset(BitmapMaster, dataString), TK_CONFIG_NULL_OK},
  110.     {TK_CONFIG_STRING, "-file", (char *) NULL, (char *) NULL,
  111. (char *) NULL, Tk_Offset(BitmapMaster, fileString), TK_CONFIG_NULL_OK},
  112.     {TK_CONFIG_UID, "-foreground", (char *) NULL, (char *) NULL,
  113. "#000000", Tk_Offset(BitmapMaster, fgUid), 0},
  114.     {TK_CONFIG_STRING, "-maskdata", (char *) NULL, (char *) NULL,
  115. (char *) NULL, Tk_Offset(BitmapMaster, maskDataString),
  116. TK_CONFIG_NULL_OK},
  117.     {TK_CONFIG_STRING, "-maskfile", (char *) NULL, (char *) NULL,
  118. (char *) NULL, Tk_Offset(BitmapMaster, maskFileString),
  119. TK_CONFIG_NULL_OK},
  120.     {TK_CONFIG_END, (char *) NULL, (char *) NULL, (char *) NULL,
  121. (char *) NULL, 0, 0}
  122. };
  123. /*
  124.  * The following data structure is used to describe the state of
  125.  * parsing a bitmap file or string.  It is used for communication
  126.  * between TkGetBitmapData and NextBitmapWord.
  127.  */
  128. #define MAX_WORD_LENGTH 100
  129. typedef struct ParseInfo {
  130.     char *string; /* Next character of string data for bitmap,
  131.  * or NULL if bitmap is being read from
  132.  * file. */
  133.     Tcl_Channel chan; /* File containing bitmap data, or NULL
  134.  * if no file. */
  135.     char word[MAX_WORD_LENGTH+1];
  136. /* Current word of bitmap data, NULL
  137.  * terminated. */
  138.     int wordLength; /* Number of non-NULL bytes in word. */
  139. } ParseInfo;
  140. /*
  141.  * Prototypes for procedures used only locally in this file:
  142.  */
  143. static int ImgBmapCmd _ANSI_ARGS_((ClientData clientData,
  144.     Tcl_Interp *interp, int argc, Tcl_Obj *CONST objv[]));
  145. static void ImgBmapCmdDeletedProc _ANSI_ARGS_((
  146.     ClientData clientData));
  147. static void ImgBmapConfigureInstance _ANSI_ARGS_((
  148.     BitmapInstance *instancePtr));
  149. static int ImgBmapConfigureMaster _ANSI_ARGS_((
  150.     BitmapMaster *masterPtr, int argc, Tcl_Obj *CONST objv[],
  151.     int flags));
  152. static int NextBitmapWord _ANSI_ARGS_((ParseInfo *parseInfoPtr));
  153. /*
  154.  *----------------------------------------------------------------------
  155.  *
  156.  * ImgBmapCreate --
  157.  *
  158.  * This procedure is called by the Tk image code to create "test"
  159.  * images.
  160.  *
  161.  * Results:
  162.  * A standard Tcl result.
  163.  *
  164.  * Side effects:
  165.  * The data structure for a new image is allocated.
  166.  *
  167.  *----------------------------------------------------------------------
  168.  */
  169. /* ARGSUSED */
  170. static int
  171. ImgBmapCreate(interp, name, argc, argv, typePtr, master, clientDataPtr)
  172.     Tcl_Interp *interp; /* Interpreter for application containing
  173.  * image. */
  174.     char *name; /* Name to use for image. */
  175.     int argc; /* Number of arguments. */
  176.     Tcl_Obj *CONST argv[]; /* Argument objects for options (doesn't
  177.  * include image name or type). */
  178.     Tk_ImageType *typePtr; /* Pointer to our type record (not used). */
  179.     Tk_ImageMaster master; /* Token for image, to be used by us in
  180.  * later callbacks. */
  181.     ClientData *clientDataPtr; /* Store manager's token for image here;
  182.  * it will be returned in later callbacks. */
  183. {
  184.     BitmapMaster *masterPtr;
  185.     masterPtr = (BitmapMaster *) ckalloc(sizeof(BitmapMaster));
  186.     masterPtr->tkMaster = master;
  187.     masterPtr->interp = interp;
  188.     masterPtr->imageCmd = Tcl_CreateObjCommand(interp, name, ImgBmapCmd,
  189.     (ClientData) masterPtr, ImgBmapCmdDeletedProc);
  190.     masterPtr->width = masterPtr->height = 0;
  191.     masterPtr->data = NULL;
  192.     masterPtr->maskData = NULL;
  193.     masterPtr->fgUid = NULL;
  194.     masterPtr->bgUid = NULL;
  195.     masterPtr->fileString = NULL;
  196.     masterPtr->dataString = NULL;
  197.     masterPtr->maskFileString = NULL;
  198.     masterPtr->maskDataString = NULL;
  199.     masterPtr->instancePtr = NULL;
  200.     if (ImgBmapConfigureMaster(masterPtr, argc, argv, 0) != TCL_OK) {
  201. ImgBmapDelete((ClientData) masterPtr);
  202. return TCL_ERROR;
  203.     }
  204.     *clientDataPtr = (ClientData) masterPtr;
  205.     return TCL_OK;
  206. }
  207. /*
  208.  *----------------------------------------------------------------------
  209.  *
  210.  * ImgBmapConfigureMaster --
  211.  *
  212.  * This procedure is called when a bitmap image is created or
  213.  * reconfigured.  It process configuration options and resets
  214.  * any instances of the image.
  215.  *
  216.  * Results:
  217.  * A standard Tcl return value.  If TCL_ERROR is returned then
  218.  * an error message is left in the masterPtr->interp's result.
  219.  *
  220.  * Side effects:
  221.  * Existing instances of the image will be redisplayed to match
  222.  * the new configuration options.
  223.  *
  224.  *----------------------------------------------------------------------
  225.  */
  226. static int
  227. ImgBmapConfigureMaster(masterPtr, objc, objv, flags)
  228.     BitmapMaster *masterPtr; /* Pointer to data structure describing
  229.  * overall bitmap image to (reconfigure). */
  230.     int objc; /* Number of entries in objv. */
  231.     Tcl_Obj *CONST objv[]; /* Pairs of configuration options for image. */
  232.     int flags; /* Flags to pass to Tk_ConfigureWidget,
  233.  * such as TK_CONFIG_ARGV_ONLY. */
  234. {
  235.     BitmapInstance *instancePtr;
  236.     int maskWidth, maskHeight, dummy1, dummy2;
  237.     CONST char **argv = (CONST char **) ckalloc((objc+1) * sizeof(char *));
  238.     for (dummy1 = 0; dummy1 < objc; dummy1++) {
  239. argv[dummy1]=Tcl_GetString(objv[dummy1]);
  240.     }
  241.     argv[objc] = NULL;
  242.     if (Tk_ConfigureWidget(masterPtr->interp, Tk_MainWindow(masterPtr->interp),
  243.     configSpecs, objc, argv, (char *) masterPtr, flags)
  244.     != TCL_OK) {
  245. ckfree((char *) argv);
  246. return TCL_ERROR;
  247.     }
  248.     ckfree((char *) argv);
  249.     /*
  250.      * Parse the bitmap and/or mask to create binary data.  Make sure that
  251.      * the bitmap and mask have the same dimensions.
  252.      */
  253.     if (masterPtr->data != NULL) {
  254. ckfree(masterPtr->data);
  255. masterPtr->data = NULL;
  256.     }
  257.     if ((masterPtr->fileString != NULL) || (masterPtr->dataString != NULL)) {
  258. masterPtr->data = TkGetBitmapData(masterPtr->interp,
  259. masterPtr->dataString, masterPtr->fileString,
  260. &masterPtr->width, &masterPtr->height, &dummy1, &dummy2);
  261. if (masterPtr->data == NULL) {
  262.     return TCL_ERROR;
  263. }
  264.     }
  265.     if (masterPtr->maskData != NULL) {
  266. ckfree(masterPtr->maskData);
  267. masterPtr->maskData = NULL;
  268.     }
  269.     if ((masterPtr->maskFileString != NULL)
  270.     || (masterPtr->maskDataString != NULL)) {
  271. if (masterPtr->data == NULL) {
  272.     Tcl_SetResult(masterPtr->interp, "can't have mask without bitmap",
  273.     TCL_STATIC);
  274.     return TCL_ERROR;
  275. }
  276. masterPtr->maskData = TkGetBitmapData(masterPtr->interp,
  277. masterPtr->maskDataString, masterPtr->maskFileString,
  278. &maskWidth, &maskHeight, &dummy1, &dummy2);
  279. if (masterPtr->maskData == NULL) {
  280.     return TCL_ERROR;
  281. }
  282. if ((maskWidth != masterPtr->width)
  283. || (maskHeight != masterPtr->height)) {
  284.     ckfree(masterPtr->maskData);
  285.     masterPtr->maskData = NULL;
  286.     Tcl_SetResult(masterPtr->interp,
  287.     "bitmap and mask have different sizes", TCL_STATIC);
  288.     return TCL_ERROR;
  289. }
  290.     }
  291.     /*
  292.      * Cycle through all of the instances of this image, regenerating
  293.      * the information for each instance.  Then force the image to be
  294.      * redisplayed everywhere that it is used.
  295.      */
  296.     for (instancePtr = masterPtr->instancePtr; instancePtr != NULL;
  297.     instancePtr = instancePtr->nextPtr) {
  298. ImgBmapConfigureInstance(instancePtr);
  299.     }
  300.     Tk_ImageChanged(masterPtr->tkMaster, 0, 0, masterPtr->width,
  301.     masterPtr->height, masterPtr->width, masterPtr->height);
  302.     return TCL_OK;
  303. }
  304. /*
  305.  *----------------------------------------------------------------------
  306.  *
  307.  * ImgBmapConfigureInstance --
  308.  *
  309.  * This procedure is called to create displaying information for
  310.  * a bitmap image instance based on the configuration information
  311.  * in the master.  It is invoked both when new instances are
  312.  * created and when the master is reconfigured.
  313.  *
  314.  * Results:
  315.  * None.
  316.  *
  317.  * Side effects:
  318.  * Generates errors via Tcl_BackgroundError if there are problems
  319.  * in setting up the instance.
  320.  *
  321.  *----------------------------------------------------------------------
  322.  */
  323. static void
  324. ImgBmapConfigureInstance(instancePtr)
  325.     BitmapInstance *instancePtr; /* Instance to reconfigure. */
  326. {
  327.     BitmapMaster *masterPtr = instancePtr->masterPtr;
  328.     XColor *colorPtr;
  329.     XGCValues gcValues;
  330.     GC gc;
  331.     unsigned int mask;
  332.     Pixmap oldBitmap, oldMask;
  333.     /*
  334.      * For each of the options in masterPtr, translate the string
  335.      * form into an internal form appropriate for instancePtr.
  336.      */
  337.     if (*masterPtr->bgUid != 0) {
  338. colorPtr = Tk_GetColor(masterPtr->interp, instancePtr->tkwin,
  339. masterPtr->bgUid);
  340. if (colorPtr == NULL) {
  341.     goto error;
  342. }
  343.     } else {
  344. colorPtr = NULL;
  345.     }
  346.     if (instancePtr->bg != NULL) {
  347. Tk_FreeColor(instancePtr->bg);
  348.     }
  349.     instancePtr->bg = colorPtr;
  350.     colorPtr = Tk_GetColor(masterPtr->interp, instancePtr->tkwin,
  351.     masterPtr->fgUid);
  352.     if (colorPtr == NULL) {
  353. goto error;
  354.     }
  355.     if (instancePtr->fg != NULL) {
  356. Tk_FreeColor(instancePtr->fg);
  357.     }
  358.     instancePtr->fg = colorPtr;
  359.     oldMask = instancePtr->mask;
  360.     instancePtr->mask = None;
  361.     /*
  362.      * Careful: We have to allocate new Pixmaps before deleting the old ones.
  363.      * Otherwise, The XID allocator will always return the same XID for the
  364.      * new Pixmaps as was used for the old Pixmaps. And that will prevent the
  365.      * data and/or mask from changing in the GC below.
  366.      */
  367.     oldBitmap = instancePtr->bitmap;
  368.     instancePtr->bitmap = None;
  369.     oldMask = instancePtr->mask;
  370.     instancePtr->mask = None;
  371.     if (masterPtr->data != NULL) {
  372. instancePtr->bitmap = XCreateBitmapFromData(
  373. Tk_Display(instancePtr->tkwin),
  374. RootWindowOfScreen(Tk_Screen(instancePtr->tkwin)),
  375. masterPtr->data, (unsigned) masterPtr->width,
  376. (unsigned) masterPtr->height);
  377.     }
  378.     if (masterPtr->maskData != NULL) {
  379. instancePtr->mask = XCreateBitmapFromData(
  380. Tk_Display(instancePtr->tkwin),
  381. RootWindowOfScreen(Tk_Screen(instancePtr->tkwin)),
  382. masterPtr->maskData, (unsigned) masterPtr->width,
  383. (unsigned) masterPtr->height);
  384.     }
  385.     if (oldMask != None) {
  386. Tk_FreePixmap(Tk_Display(instancePtr->tkwin), oldMask);
  387.     }
  388.     if (oldBitmap != None) {
  389. Tk_FreePixmap(Tk_Display(instancePtr->tkwin), oldBitmap);
  390.     }
  391.     if (masterPtr->data != NULL) {
  392. gcValues.foreground = instancePtr->fg->pixel;
  393. gcValues.graphics_exposures = False;
  394. mask = GCForeground|GCGraphicsExposures;
  395. if (instancePtr->bg != NULL) {
  396.     gcValues.background = instancePtr->bg->pixel;
  397.     mask |= GCBackground;
  398.     if (instancePtr->mask != None) {
  399. gcValues.clip_mask = instancePtr->mask;
  400. mask |= GCClipMask;
  401.     }
  402. } else {
  403.     gcValues.clip_mask = instancePtr->bitmap;
  404.     mask |= GCClipMask;
  405. }
  406. gc = Tk_GetGC(instancePtr->tkwin, mask, &gcValues);
  407.     } else {
  408. gc = None;
  409.     }
  410.     if (instancePtr->gc != None) {
  411. Tk_FreeGC(Tk_Display(instancePtr->tkwin), instancePtr->gc);
  412.     }
  413.     instancePtr->gc = gc;
  414.     return;
  415.     error:
  416.     /*
  417.      * An error occurred: clear the graphics context in the instance to
  418.      * make it clear that this instance cannot be displayed.  Then report
  419.      * the error.
  420.      */
  421.     if (instancePtr->gc != None) {
  422. Tk_FreeGC(Tk_Display(instancePtr->tkwin), instancePtr->gc);
  423.     }
  424.     instancePtr->gc = None;
  425.     Tcl_AddErrorInfo(masterPtr->interp, "n    (while configuring image "");
  426.     Tcl_AddErrorInfo(masterPtr->interp, Tk_NameOfImage(masterPtr->tkMaster));
  427.     Tcl_AddErrorInfo(masterPtr->interp, "")");
  428.     Tcl_BackgroundError(masterPtr->interp);
  429. }
  430. /*
  431.  *----------------------------------------------------------------------
  432.  *
  433.  * TkGetBitmapData --
  434.  *
  435.  * Given a file name or ASCII string, this procedure parses the
  436.  * file or string contents to produce binary data for a bitmap.
  437.  *
  438.  * Results:
  439.  * If the bitmap description was parsed successfully then the
  440.  * return value is a malloc-ed array containing the bitmap data.
  441.  * The dimensions of the data are stored in *widthPtr and
  442.  * *heightPtr.  *hotXPtr and *hotYPtr are set to the bitmap
  443.  * hotspot if one is defined, otherwise they are set to -1, -1.
  444.  * If an error occurred, NULL is returned and an error message is
  445.  * left in the interp's result.
  446.  *
  447.  * Side effects:
  448.  * A bitmap is created.
  449.  *
  450.  *----------------------------------------------------------------------
  451.  */
  452. char *
  453. TkGetBitmapData(interp, string, fileName, widthPtr, heightPtr,
  454. hotXPtr, hotYPtr)
  455.     Tcl_Interp *interp; /* For reporting errors, or NULL. */
  456.     char *string; /* String describing bitmap.  May
  457.  * be NULL. */
  458.     char *fileName; /* Name of file containing bitmap
  459.  * description.  Used only if string
  460.  * is NULL.  Must not be NULL if
  461.  * string is NULL. */
  462.     int *widthPtr, *heightPtr; /* Dimensions of bitmap get returned
  463.  * here. */
  464.     int *hotXPtr, *hotYPtr; /* Position of hot spot or -1,-1. */
  465. {
  466.     int width, height, numBytes, hotX, hotY;
  467.     CONST char *expandedFileName;
  468.     char *p, *end;
  469.     ParseInfo pi;
  470.     char *data = NULL;
  471.     Tcl_DString buffer;
  472.     pi.string = string;
  473.     if (string == NULL) {
  474.         if ((interp != NULL) && Tcl_IsSafe(interp)) {
  475.             Tcl_AppendResult(interp, "can't get bitmap data from a file in a",
  476.                     " safe interpreter", (char *) NULL);
  477.             return NULL;
  478.         }
  479. expandedFileName = Tcl_TranslateFileName(interp, fileName, &buffer);
  480. if (expandedFileName == NULL) {
  481.     return NULL;
  482. }
  483. pi.chan = Tcl_OpenFileChannel(interp, expandedFileName, "r", 0);
  484. Tcl_DStringFree(&buffer);
  485. if (pi.chan == NULL) {
  486.     if (interp != NULL) {
  487. Tcl_ResetResult(interp);
  488. Tcl_AppendResult(interp, "couldn't read bitmap file "",
  489. fileName, "": ", Tcl_PosixError(interp),
  490. (char *) NULL);
  491.     }
  492.     return NULL;
  493. }
  494.         if (Tcl_SetChannelOption(interp, pi.chan, "-translation", "binary")
  495. != TCL_OK) {
  496.             return NULL;
  497.         }
  498.         if (Tcl_SetChannelOption(interp, pi.chan, "-encoding", "binary")
  499. != TCL_OK) {
  500.             return NULL;
  501.         }
  502.     } else {
  503. pi.chan = NULL;
  504.     }
  505.     /*
  506.      * Parse the lines that define the dimensions of the bitmap,
  507.      * plus the first line that defines the bitmap data (it declares
  508.      * the name of a data variable but doesn't include any actual
  509.      * data).  These lines look something like the following:
  510.      *
  511.      * #define foo_width 16
  512.      * #define foo_height 16
  513.      * #define foo_x_hot 3
  514.      * #define foo_y_hot 3
  515.      * static char foo_bits[] = {
  516.      *
  517.      * The x_hot and y_hot lines may or may not be present.  It's
  518.      * important to check for "char" in the last line, in order to
  519.      * reject old X10-style bitmaps that used shorts.
  520.      */
  521.     width = 0;
  522.     height = 0;
  523.     hotX = -1;
  524.     hotY = -1;
  525.     while (1) {
  526. if (NextBitmapWord(&pi) != TCL_OK) {
  527.     goto error;
  528. }
  529. if ((pi.wordLength >= 6) && (pi.word[pi.wordLength-6] == '_')
  530. && (strcmp(pi.word+pi.wordLength-6, "_width") == 0)) {
  531.     if (NextBitmapWord(&pi) != TCL_OK) {
  532. goto error;
  533.     }
  534.     width = strtol(pi.word, &end, 0);
  535.     if ((end == pi.word) || (*end != 0)) {
  536. goto error;
  537.     }
  538. } else if ((pi.wordLength >= 7) && (pi.word[pi.wordLength-7] == '_')
  539. && (strcmp(pi.word+pi.wordLength-7, "_height") == 0)) {
  540.     if (NextBitmapWord(&pi) != TCL_OK) {
  541. goto error;
  542.     }
  543.     height = strtol(pi.word, &end, 0);
  544.     if ((end == pi.word) || (*end != 0)) {
  545. goto error;
  546.     }
  547. } else if ((pi.wordLength >= 6) && (pi.word[pi.wordLength-6] == '_')
  548. && (strcmp(pi.word+pi.wordLength-6, "_x_hot") == 0)) {
  549.     if (NextBitmapWord(&pi) != TCL_OK) {
  550. goto error;
  551.     }
  552.     hotX = strtol(pi.word, &end, 0);
  553.     if ((end == pi.word) || (*end != 0)) {
  554. goto error;
  555.     }
  556. } else if ((pi.wordLength >= 6) && (pi.word[pi.wordLength-6] == '_')
  557. && (strcmp(pi.word+pi.wordLength-6, "_y_hot") == 0)) {
  558.     if (NextBitmapWord(&pi) != TCL_OK) {
  559. goto error;
  560.     }
  561.     hotY = strtol(pi.word, &end, 0);
  562.     if ((end == pi.word) || (*end != 0)) {
  563. goto error;
  564.     }
  565. } else if ((pi.word[0] == 'c') && (strcmp(pi.word, "char") == 0)) {
  566.     while (1) {
  567. if (NextBitmapWord(&pi) != TCL_OK) {
  568.     goto error;
  569. }
  570. if ((pi.word[0] == '{') && (pi.word[1] == 0)) {
  571.     goto getData;
  572. }
  573.     }
  574. } else if ((pi.word[0] == '{') && (pi.word[1] == 0)) {
  575.     if (interp != NULL) {
  576. Tcl_AppendResult(interp, "format error in bitmap data; ",
  577. "looks like it's an obsolete X10 bitmap file",
  578. (char *) NULL);
  579.     }
  580.     goto errorCleanup;
  581. }
  582.     }
  583.     /*
  584.      * Now we've read everything but the data.  Allocate an array
  585.      * and read in the data.
  586.      */
  587.     getData:
  588.     if ((width <= 0) || (height <= 0)) {
  589. goto error;
  590.     }
  591.     numBytes = ((width+7)/8) * height;
  592.     data = (char *) ckalloc((unsigned) numBytes);
  593.     for (p = data; numBytes > 0; p++, numBytes--) {
  594. if (NextBitmapWord(&pi) != TCL_OK) {
  595.     goto error;
  596. }
  597. *p = (char) strtol(pi.word, &end, 0);
  598. if (end == pi.word) {
  599.     goto error;
  600. }
  601.     }
  602.     /*
  603.      * All done.  Clean up and return.
  604.      */
  605.     if (pi.chan != NULL) {
  606. Tcl_Close(NULL, pi.chan);
  607.     }
  608.     *widthPtr = width;
  609.     *heightPtr = height;
  610.     *hotXPtr = hotX;
  611.     *hotYPtr = hotY;
  612.     return data;
  613.     error:
  614.     if (interp != NULL) {
  615. Tcl_SetResult(interp, "format error in bitmap data", TCL_STATIC);
  616.     }
  617.     
  618.     errorCleanup:
  619.     if (data != NULL) {
  620. ckfree(data);
  621.     }
  622.     if (pi.chan != NULL) {
  623. Tcl_Close(NULL, pi.chan);
  624.     }
  625.     return NULL;
  626. }
  627. /*
  628.  *----------------------------------------------------------------------
  629.  *
  630.  * NextBitmapWord --
  631.  *
  632.  * This procedure retrieves the next word of information (stuff
  633.  * between commas or white space) from a bitmap description.
  634.  *
  635.  * Results:
  636.  * Returns TCL_OK if all went well.  In this case the next word,
  637.  * and its length, will be availble in *parseInfoPtr.  If the end
  638.  * of the bitmap description was reached then TCL_ERROR is returned.
  639.  *
  640.  * Side effects:
  641.  * None.
  642.  *
  643.  *----------------------------------------------------------------------
  644.  */
  645. static int
  646. NextBitmapWord(parseInfoPtr)
  647.     ParseInfo *parseInfoPtr; /* Describes what we're reading
  648.  * and where we are in it. */
  649. {
  650.     char *src, *dst;
  651.     int c;
  652.     parseInfoPtr->wordLength = 0;
  653.     dst = parseInfoPtr->word;
  654.     if (parseInfoPtr->string != NULL) {
  655. for (src = parseInfoPtr->string; isspace(UCHAR(*src)) || (*src == ',');
  656. src++) {
  657.     if (*src == 0) {
  658. return TCL_ERROR;
  659.     }
  660. }
  661. for ( ; !isspace(UCHAR(*src)) && (*src != ',') && (*src != 0); src++) {
  662.     *dst = *src;
  663.     dst++;
  664.     parseInfoPtr->wordLength++;
  665.     if (parseInfoPtr->wordLength > MAX_WORD_LENGTH) {
  666. return TCL_ERROR;
  667.     }
  668. }
  669. parseInfoPtr->string = src;
  670.     } else {
  671. for (c = GetByte(parseInfoPtr->chan); isspace(UCHAR(c)) || (c == ',');
  672. c = GetByte(parseInfoPtr->chan)) {
  673.     if (c == EOF) {
  674. return TCL_ERROR;
  675.     }
  676. }
  677. for ( ; !isspace(UCHAR(c)) && (c != ',') && (c != EOF);
  678. c = GetByte(parseInfoPtr->chan)) {
  679.     *dst = c;
  680.     dst++;
  681.     parseInfoPtr->wordLength++;
  682.     if (parseInfoPtr->wordLength > MAX_WORD_LENGTH) {
  683. return TCL_ERROR;
  684.     }
  685. }
  686.     }
  687.     if (parseInfoPtr->wordLength == 0) {
  688. return TCL_ERROR;
  689.     }
  690.     parseInfoPtr->word[parseInfoPtr->wordLength] = 0;
  691.     return TCL_OK;
  692. }
  693. /*
  694.  *--------------------------------------------------------------
  695.  *
  696.  * ImgBmapCmd --
  697.  *
  698.  * This procedure is invoked to process the Tcl command
  699.  * that corresponds to an image managed by this module.
  700.  * See the user documentation for details on what it does.
  701.  *
  702.  * Results:
  703.  * A standard Tcl result.
  704.  *
  705.  * Side effects:
  706.  * See the user documentation.
  707.  *
  708.  *--------------------------------------------------------------
  709.  */
  710. static int
  711. ImgBmapCmd(clientData, interp, objc, objv)
  712.     ClientData clientData; /* Information about the image master. */
  713.     Tcl_Interp *interp; /* Current interpreter. */
  714.     int objc; /* Number of arguments. */
  715.     Tcl_Obj *CONST objv[]; /* Argument objects. */
  716. {
  717.     static CONST char *bmapOptions[] = {"cget", "configure", (char *) NULL};
  718.     BitmapMaster *masterPtr = (BitmapMaster *) clientData;
  719.     int code, index;
  720.     if (objc < 2) {
  721. Tcl_WrongNumArgs(interp, 1, objv, "option ?arg arg ...?");
  722. return TCL_ERROR;
  723.     }
  724.     if (Tcl_GetIndexFromObj(interp, objv[1], bmapOptions, "option", 0,
  725.     &index) != TCL_OK) {
  726. return TCL_ERROR;
  727.     }
  728.     switch (index) {
  729.       case 0: {
  730. if (objc != 3) {
  731.     Tcl_WrongNumArgs(interp, 2, objv, "option");
  732.     return TCL_ERROR;
  733. }
  734. return Tk_ConfigureValue(interp, Tk_MainWindow(interp), configSpecs,
  735. (char *) masterPtr, Tcl_GetString(objv[2]), 0);
  736.       }
  737.       case 1: {
  738. if (objc == 2) {
  739.     code = Tk_ConfigureInfo(interp, Tk_MainWindow(interp),
  740.     configSpecs, (char *) masterPtr, (char *) NULL, 0);
  741. } else if (objc == 3) {
  742.     code = Tk_ConfigureInfo(interp, Tk_MainWindow(interp),
  743.     configSpecs, (char *) masterPtr,
  744.     Tcl_GetString(objv[2]), 0);
  745. } else {
  746.     code = ImgBmapConfigureMaster(masterPtr, objc-2, objv+2,
  747.     TK_CONFIG_ARGV_ONLY);
  748. }
  749. return code;
  750.       }
  751.       default: {
  752. panic("bad const entries to bmapOptions in ImgBmapCmd");
  753.       }
  754.     }
  755.     return TCL_OK;
  756. }
  757. /*
  758.  *----------------------------------------------------------------------
  759.  *
  760.  * ImgBmapGet --
  761.  *
  762.  * This procedure is called for each use of a bitmap image in a
  763.  * widget.
  764.  *
  765.  * Results:
  766.  * The return value is a token for the instance, which is passed
  767.  * back to us in calls to ImgBmapDisplay and ImgBmapFree.
  768.  *
  769.  * Side effects:
  770.  * A data structure is set up for the instance (or, an existing
  771.  * instance is re-used for the new one).
  772.  *
  773.  *----------------------------------------------------------------------
  774.  */
  775. static ClientData
  776. ImgBmapGet(tkwin, masterData)
  777.     Tk_Window tkwin; /* Window in which the instance will be
  778.  * used. */
  779.     ClientData masterData; /* Pointer to our master structure for the
  780.  * image. */
  781. {
  782.     BitmapMaster *masterPtr = (BitmapMaster *) masterData;
  783.     BitmapInstance *instancePtr;
  784.     /*
  785.      * See if there is already an instance for this window.  If so
  786.      * then just re-use it.
  787.      */
  788.     for (instancePtr = masterPtr->instancePtr; instancePtr != NULL;
  789.     instancePtr = instancePtr->nextPtr) {
  790. if (instancePtr->tkwin == tkwin) {
  791.     instancePtr->refCount++;
  792.     return (ClientData) instancePtr;
  793. }
  794.     }
  795.     /*
  796.      * The image isn't already in use in this window.  Make a new
  797.      * instance of the image.
  798.      */
  799.     instancePtr = (BitmapInstance *) ckalloc(sizeof(BitmapInstance));
  800.     instancePtr->refCount = 1;
  801.     instancePtr->masterPtr = masterPtr;
  802.     instancePtr->tkwin = tkwin;
  803.     instancePtr->fg = NULL;
  804.     instancePtr->bg = NULL;
  805.     instancePtr->bitmap = None;
  806.     instancePtr->mask = None;
  807.     instancePtr->gc = None;
  808.     instancePtr->nextPtr = masterPtr->instancePtr;
  809.     masterPtr->instancePtr = instancePtr;
  810.     ImgBmapConfigureInstance(instancePtr);
  811.     /*
  812.      * If this is the first instance, must set the size of the image.
  813.      */
  814.     if (instancePtr->nextPtr == NULL) {
  815. Tk_ImageChanged(masterPtr->tkMaster, 0, 0, 0, 0, masterPtr->width,
  816. masterPtr->height);
  817.     }
  818.     return (ClientData) instancePtr;
  819. }
  820. /*
  821.  *----------------------------------------------------------------------
  822.  *
  823.  * ImgBmapDisplay --
  824.  *
  825.  * This procedure is invoked to draw a bitmap image.
  826.  *
  827.  * Results:
  828.  * None.
  829.  *
  830.  * Side effects:
  831.  * A portion of the image gets rendered in a pixmap or window.
  832.  *
  833.  *----------------------------------------------------------------------
  834.  */
  835. static void
  836. ImgBmapDisplay(clientData, display, drawable, imageX, imageY, width,
  837. height, drawableX, drawableY)
  838.     ClientData clientData; /* Pointer to BitmapInstance structure for
  839.  * for instance to be displayed. */
  840.     Display *display; /* Display on which to draw image. */
  841.     Drawable drawable; /* Pixmap or window in which to draw image. */
  842.     int imageX, imageY; /* Upper-left corner of region within image
  843.  * to draw. */
  844.     int width, height; /* Dimensions of region within image to draw. */
  845.     int drawableX, drawableY; /* Coordinates within drawable that
  846.  * correspond to imageX and imageY. */
  847. {
  848.     BitmapInstance *instancePtr = (BitmapInstance *) clientData;
  849.     int masking;
  850.     /*
  851.      * If there's no graphics context, it means that an error occurred
  852.      * while creating the image instance so it can't be displayed.
  853.      */
  854.     if (instancePtr->gc == None) {
  855. return;
  856.     }
  857.     /*
  858.      * If masking is in effect, must modify the mask origin within
  859.      * the graphics context to line up with the image's origin.
  860.      * Then draw the image and reset the clip origin, if there's
  861.      * a mask.
  862.      */
  863.     masking = (instancePtr->mask != None) || (instancePtr->bg == NULL);
  864.     if (masking) {
  865. XSetClipOrigin(display, instancePtr->gc, drawableX - imageX,
  866. drawableY - imageY);
  867.     }
  868.     XCopyPlane(display, instancePtr->bitmap, drawable, instancePtr->gc,
  869.     imageX, imageY, (unsigned) width, (unsigned) height,
  870.     drawableX, drawableY, 1);
  871.     if (masking) {
  872. XSetClipOrigin(display, instancePtr->gc, 0, 0);
  873.     }
  874. }
  875. /*
  876.  *----------------------------------------------------------------------
  877.  *
  878.  * ImgBmapFree --
  879.  *
  880.  * This procedure is called when a widget ceases to use a
  881.  * particular instance of an image.
  882.  *
  883.  * Results:
  884.  * None.
  885.  *
  886.  * Side effects:
  887.  * Internal data structures get cleaned up.
  888.  *
  889.  *----------------------------------------------------------------------
  890.  */
  891. static void
  892. ImgBmapFree(clientData, display)
  893.     ClientData clientData; /* Pointer to BitmapInstance structure for
  894.  * for instance to be displayed. */
  895.     Display *display; /* Display containing window that used image. */
  896. {
  897.     BitmapInstance *instancePtr = (BitmapInstance *) clientData;
  898.     BitmapInstance *prevPtr;
  899.     instancePtr->refCount--;
  900.     if (instancePtr->refCount > 0) {
  901. return;
  902.     }
  903.     /*
  904.      * There are no more uses of the image within this widget.  Free
  905.      * the instance structure.
  906.      */
  907.     if (instancePtr->fg != NULL) {
  908. Tk_FreeColor(instancePtr->fg);
  909.     }
  910.     if (instancePtr->bg != NULL) {
  911. Tk_FreeColor(instancePtr->bg);
  912.     }
  913.     if (instancePtr->bitmap != None) {
  914. Tk_FreePixmap(display, instancePtr->bitmap);
  915.     }
  916.     if (instancePtr->mask != None) {
  917. Tk_FreePixmap(display, instancePtr->mask);
  918.     }
  919.     if (instancePtr->gc != None) {
  920. Tk_FreeGC(display, instancePtr->gc);
  921.     }
  922.     if (instancePtr->masterPtr->instancePtr == instancePtr) {
  923. instancePtr->masterPtr->instancePtr = instancePtr->nextPtr;
  924.     } else {
  925. for (prevPtr = instancePtr->masterPtr->instancePtr;
  926. prevPtr->nextPtr != instancePtr; prevPtr = prevPtr->nextPtr) {
  927.     /* Empty loop body */
  928. }
  929. prevPtr->nextPtr = instancePtr->nextPtr;
  930.     }
  931.     ckfree((char *) instancePtr);
  932. }
  933. /*
  934.  *----------------------------------------------------------------------
  935.  *
  936.  * ImgBmapDelete --
  937.  *
  938.  * This procedure is called by the image code to delete the
  939.  * master structure for an image.
  940.  *
  941.  * Results:
  942.  * None.
  943.  *
  944.  * Side effects:
  945.  * Resources associated with the image get freed.
  946.  *
  947.  *----------------------------------------------------------------------
  948.  */
  949. static void
  950. ImgBmapDelete(masterData)
  951.     ClientData masterData; /* Pointer to BitmapMaster structure for
  952.  * image.  Must not have any more instances. */
  953. {
  954.     BitmapMaster *masterPtr = (BitmapMaster *) masterData;
  955.     if (masterPtr->instancePtr != NULL) {
  956. panic("tried to delete bitmap image when instances still exist");
  957.     }
  958.     masterPtr->tkMaster = NULL;
  959.     if (masterPtr->imageCmd != NULL) {
  960. Tcl_DeleteCommandFromToken(masterPtr->interp, masterPtr->imageCmd);
  961.     }
  962.     if (masterPtr->data != NULL) {
  963. ckfree(masterPtr->data);
  964.     }
  965.     if (masterPtr->maskData != NULL) {
  966. ckfree(masterPtr->maskData);
  967.     }
  968.     Tk_FreeOptions(configSpecs, (char *) masterPtr, (Display *) NULL, 0);
  969.     ckfree((char *) masterPtr);
  970. }
  971. /*
  972.  *----------------------------------------------------------------------
  973.  *
  974.  * ImgBmapCmdDeletedProc --
  975.  *
  976.  * This procedure is invoked when the image command for an image
  977.  * is deleted.  It deletes the image.
  978.  *
  979.  * Results:
  980.  * None.
  981.  *
  982.  * Side effects:
  983.  * The image is deleted.
  984.  *
  985.  *----------------------------------------------------------------------
  986.  */
  987. static void
  988. ImgBmapCmdDeletedProc(clientData)
  989.     ClientData clientData; /* Pointer to BitmapMaster structure for
  990.  * image. */
  991. {
  992.     BitmapMaster *masterPtr = (BitmapMaster *) clientData;
  993.     masterPtr->imageCmd = NULL;
  994.     if (masterPtr->tkMaster != NULL) {
  995. Tk_DeleteImage(masterPtr->interp, Tk_NameOfImage(masterPtr->tkMaster));
  996.     }
  997. }
  998. /*
  999.  *----------------------------------------------------------------------
  1000.  *
  1001.  * GetByte --
  1002.  *
  1003.  * Get the next byte from the open channel.
  1004.  *
  1005.  * Results:
  1006.  * The next byte or EOF.
  1007.  *
  1008.  * Side effects:
  1009.  * We read from the channel.
  1010.  *
  1011.  *----------------------------------------------------------------------
  1012.  */
  1013. static int
  1014. GetByte(chan)
  1015.     Tcl_Channel chan; /* The channel we read from. */
  1016. {
  1017.     char buffer;
  1018.     int size;
  1019.     size = Tcl_Read(chan, &buffer, 1);
  1020.     if (size <= 0) {
  1021. return EOF;
  1022.     } else {
  1023. return buffer;
  1024.     }
  1025. }
  1026. /*
  1027.  *----------------------------------------------------------------------
  1028.  *
  1029.  * ImgBmapPsImagemask --
  1030.  *
  1031.  * This procedure generates postscript suitable for rendering a
  1032.  *      single bitmap of an image.  A single bitmap image might contain both
  1033.  *      a foreground and a background bitmap.  This routine is called once
  1034.  *      for each such bitmap in a bitmap image.
  1035.  *
  1036.  *      Prior to invoking this routine, the following setup has occurred:
  1037.  *
  1038.  *    1.  The postscript foreground color has been set to the color
  1039.  *        used to render the bitmap.
  1040.  *
  1041.  *    2.  The origin of the postscript coordinate system is set to
  1042.  *             the lower left corner of the bitmap.
  1043.  *
  1044.  *    3.  The postscript coordinate system has been scaled so that
  1045.  *        the entire bitmap is one unit squared.
  1046.  *
  1047.  *  Some postscript implementations cannot handle bitmap strings
  1048.  * longer than about 60k characters.  If the bitmap data is that big
  1049.  * or bigger, then we render it by splitting it into several smaller
  1050.  * bitmaps.
  1051.  *
  1052.  * Results:
  1053.  * Returns TCL_OK on success.  Returns TCL_ERROR and leaves and error
  1054.  * message in interp->result if there is a problem.
  1055.  *
  1056.  * Side effects:
  1057.  * Postscript code is appended to interp->result.
  1058.  *
  1059.  *----------------------------------------------------------------------
  1060.  */
  1061. static int
  1062. ImgBmapPsImagemask(interp, width, height, data)
  1063.     Tcl_Interp *interp;       /* Append postscript to this interpreter */
  1064.     int width, height;        /* Width and height of the bitmap in pixels */
  1065.     char *data;               /* Data for the bitmap */
  1066. {
  1067.     int i, j, nBytePerRow;
  1068.     char buffer[200];
  1069.     /* 
  1070.      * The bit order of bitmaps in Tk is the opposite of the bit order that
  1071.      * postscript uses.  (In Tk, the least significant bit is on the right
  1072.      * side of the bitmap and in postscript the least significant bit is shown
  1073.      * on the left.)  The following array is used to reverse the order of bits
  1074.      * within a byte so that the bits will be in the order postscript expects.
  1075.      */
  1076.     static unsigned char bit_reverse[] = {
  1077.        0, 128, 64, 192, 32, 160,  96, 224, 16, 144, 80, 208, 48, 176, 112, 240,
  1078.        8, 136, 72, 200, 40, 168, 104, 232, 24, 152, 88, 216, 56, 184, 120, 248,
  1079.        4, 132, 68, 196, 36, 164, 100, 228, 20, 148, 84, 212, 52, 180, 116, 244,
  1080.       12, 140, 76, 204, 44, 172, 108, 236, 28, 156, 92, 220, 60, 188, 124, 252,
  1081.        2, 130, 66, 194, 34, 162,  98, 226, 18, 146, 82, 210, 50, 178, 114, 242,
  1082.       10, 138, 74, 202, 42, 170, 106, 234, 26, 154, 90, 218, 58, 186, 122, 250,
  1083.        6, 134, 70, 198, 38, 166, 102, 230, 22, 150, 86, 214, 54, 182, 118, 246,
  1084.       14, 142, 78, 206, 46, 174, 110, 238, 30, 158, 94, 222, 62, 190, 126, 254,
  1085.        1, 129, 65, 193, 33, 161,  97, 225, 17, 145, 81, 209, 49, 177, 113, 241,
  1086.        9, 137, 73, 201, 41, 169, 105, 233, 25, 153, 89, 217, 57, 185, 121, 249,
  1087.        5, 133, 69, 197, 37, 165, 101, 229, 21, 149, 85, 213, 53, 181, 117, 245,
  1088.       13, 141, 77, 205, 45, 173, 109, 237, 29, 157, 93, 221, 61, 189, 125, 253,
  1089.        3, 131, 67, 195, 35, 163,  99, 227, 19, 147, 83, 211, 51, 179, 115, 243,
  1090.       11, 139, 75, 203, 43, 171, 107, 235, 27, 155, 91, 219, 59, 187, 123, 251,
  1091.        7, 135, 71, 199, 39, 167, 103, 231, 23, 151, 87, 215, 55, 183, 119, 247,
  1092.       15, 143, 79, 207, 47, 175, 111, 239, 31, 159, 95, 223, 63, 191, 127, 255,
  1093.     };
  1094.     if (width*height > 60000) {
  1095. Tcl_ResetResult(interp);
  1096. Tcl_AppendResult(interp, "unable to generate postscript for bitmaps "
  1097. "larger than 60000 pixels", NULL);
  1098. return TCL_ERROR;
  1099.     }
  1100.     sprintf(buffer, "0 0 moveto %d %d true [%d 0 0 %d 0 %d] {<n",
  1101.       width, height, width, -height, height);
  1102.     Tcl_AppendResult(interp, buffer, NULL);
  1103.     nBytePerRow = (width+7)/8;
  1104.     for(i=0; i<height; i++){
  1105.       for(j=0; j<nBytePerRow; j++){
  1106.         sprintf(buffer, " %02x", bit_reverse[0xff & data[i*nBytePerRow + j]]);
  1107.         Tcl_AppendResult(interp, buffer, NULL);
  1108.       }
  1109.       Tcl_AppendResult(interp, "n", NULL);
  1110.     }
  1111.     Tcl_AppendResult(interp, ">} imagemask n", NULL);
  1112.     return TCL_OK;
  1113. }
  1114. /*
  1115.  *----------------------------------------------------------------------
  1116.  *
  1117.  * ImgBmapPostscript --
  1118.  *
  1119.  * This procedure generates postscript for rendering a bitmap image.
  1120.  *
  1121.  * Results:
  1122.  * On success, this routine writes postscript code into interp->result
  1123.  *      and returns TCL_OK  TCL_ERROR is returned and an error
  1124.  *      message is left in interp->result if anything goes wrong.
  1125.  *
  1126.  * Side effects:
  1127.  * None.
  1128.  *
  1129.  *----------------------------------------------------------------------
  1130.  */
  1131. static int
  1132. ImgBmapPostscript(clientData, interp, tkwin, psinfo, x, y, width, height,
  1133. prepass)
  1134.     ClientData clientData;
  1135.     Tcl_Interp *interp;
  1136.     Tk_Window tkwin;
  1137.     Tk_PostscriptInfo psinfo;
  1138.     int x, y, width, height, prepass;
  1139. {
  1140.     BitmapMaster *masterPtr = (BitmapMaster *) clientData;
  1141.     char buffer[200];
  1142.     if (prepass) {
  1143. return TCL_OK;
  1144.     }
  1145.     /*
  1146.      * There is nothing to do for bitmaps with zero width or height
  1147.      */
  1148.     if( width<=0 || height<=0 || masterPtr->width<=0 || masterPtr->height<=0 ){
  1149. return TCL_OK;
  1150.     }
  1151.     /*
  1152.      * Translate the origin of the coordinate system to be the lower-left
  1153.      * corner of the bitmap and adjust the scale of the coordinate system
  1154.      * so that entire bitmap covers one square unit of the page.
  1155.      * The calling function put a "gsave" into the postscript and
  1156.      * will add a "grestore" at after this routine returns, so it is safe
  1157.      * to make whatever changes are necessary here.
  1158.      */
  1159.     if( x!=0 || y!=0 ){
  1160. sprintf(buffer, "%d %d moveton", x, y);
  1161. Tcl_AppendResult(interp, buffer, NULL);
  1162.     }
  1163.     if( width!=1 || height!=1 ){
  1164. sprintf(buffer, "%d %d scalen", width, height);
  1165.   Tcl_AppendResult(interp, buffer, NULL);
  1166.     }
  1167.     /*
  1168.      * Color the background, if there is one.  This step is skipped if the
  1169.      * background is transparent.  If the background is not transparent and
  1170.      * there is no background mask, then color the complete rectangle that
  1171.      * encloses the bitmap.  If there is a background mask, then only apply
  1172.      * color to the bits specified by the mask.
  1173.      */
  1174.     if ((masterPtr->bgUid != NULL) && (masterPtr->bgUid[0] != '00')) {
  1175. XColor color;
  1176. XParseColor(Tk_Display(tkwin), Tk_Colormap(tkwin), masterPtr->bgUid,
  1177. &color);
  1178. if (Tk_PostscriptColor(interp, psinfo, &color) != TCL_OK) {
  1179.     return TCL_ERROR;
  1180. }
  1181. if (masterPtr->maskData == NULL) {
  1182.     Tcl_AppendResult(interp,
  1183. "0 0 moveto 1 0 rlineto 0 1 rlineto -1 0 rlineto "
  1184. "closepath filln", NULL);
  1185. } else if (ImgBmapPsImagemask(interp, masterPtr->width,
  1186.      masterPtr->height, masterPtr->maskData) != TCL_OK) {
  1187.     return TCL_ERROR;
  1188. }
  1189.     }
  1190.     /*
  1191.      * Draw the bitmap foreground, assuming there is one.
  1192.      */
  1193.     if ( (masterPtr->fgUid != NULL) && (masterPtr->data != NULL) ) {
  1194. XColor color;
  1195. XParseColor(Tk_Display(tkwin), Tk_Colormap(tkwin), masterPtr->fgUid,
  1196. &color);
  1197. if (Tk_PostscriptColor(interp, psinfo, &color) != TCL_OK) {
  1198.     return TCL_ERROR;
  1199. }
  1200. if (ImgBmapPsImagemask(interp, masterPtr->width, masterPtr->height,
  1201. masterPtr->data) != TCL_OK) {
  1202.     return TCL_ERROR;
  1203. }
  1204.     }
  1205.     return TCL_OK;
  1206. }