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

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * tkImage.c --
  3.  *
  4.  * This file contains code that allows images to be
  5.  * nested inside text widgets.  It also implements the "image"
  6.  * widget command for texts.
  7.  *
  8.  * Copyright (c) 1997 Sun Microsystems, Inc.
  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: tkTextImage.c,v 1.5 2002/08/05 04:30:40 dgp Exp $
  14.  */
  15. #include "tk.h"
  16. #include "tkText.h"
  17. #include "tkPort.h"
  18. /*
  19.  * Definitions for alignment values:
  20.  */
  21. #define ALIGN_BOTTOM 0
  22. #define ALIGN_CENTER 1
  23. #define ALIGN_TOP 2
  24. #define ALIGN_BASELINE 3
  25. /*
  26.  * Macro that determines the size of an embedded image segment:
  27.  */
  28. #define EI_SEG_SIZE ((unsigned) (Tk_Offset(TkTextSegment, body) 
  29. + sizeof(TkTextEmbImage)))
  30. /*
  31.  * Prototypes for procedures defined in this file:
  32.  */
  33. static int AlignParseProc _ANSI_ARGS_((ClientData clientData,
  34.     Tcl_Interp *interp, Tk_Window tkwin,
  35.     CONST char *value, char *widgRec, int offset));
  36. static char * AlignPrintProc _ANSI_ARGS_((ClientData clientData,
  37.     Tk_Window tkwin, char *widgRec, int offset,
  38.     Tcl_FreeProc **freeProcPtr));
  39. static TkTextSegment * EmbImageCleanupProc _ANSI_ARGS_((TkTextSegment *segPtr,
  40.     TkTextLine *linePtr));
  41. static void EmbImageCheckProc _ANSI_ARGS_((TkTextSegment *segPtr,
  42.     TkTextLine *linePtr));
  43. static void EmbImageBboxProc _ANSI_ARGS_((TkTextDispChunk *chunkPtr,
  44.     int index, int y, int lineHeight, int baseline,
  45.     int *xPtr, int *yPtr, int *widthPtr,
  46.     int *heightPtr));
  47. static int EmbImageConfigure _ANSI_ARGS_((TkText *textPtr,
  48.     TkTextSegment *eiPtr, int argc, CONST char **argv));
  49. static int EmbImageDeleteProc _ANSI_ARGS_((TkTextSegment *segPtr,
  50.     TkTextLine *linePtr, int treeGone));
  51. static void EmbImageDisplayProc _ANSI_ARGS_((
  52.     TkTextDispChunk *chunkPtr, int x, int y,
  53.     int lineHeight, int baseline, Display *display,
  54.     Drawable dst, int screenY));
  55. static int EmbImageLayoutProc _ANSI_ARGS_((TkText *textPtr,
  56.     TkTextIndex *indexPtr, TkTextSegment *segPtr,
  57.     int offset, int maxX, int maxChars,
  58.     int noCharsYet, TkWrapMode wrapMode,
  59.     TkTextDispChunk *chunkPtr));
  60. static void EmbImageProc _ANSI_ARGS_((ClientData clientData,
  61.     int x, int y, int width, int height,
  62.     int imageWidth, int imageHeight));
  63. /*
  64.  * The following structure declares the "embedded image" segment type.
  65.  */
  66. static Tk_SegType tkTextEmbImageType = {
  67.     "image", /* name */
  68.     0, /* leftGravity */
  69.     (Tk_SegSplitProc *) NULL, /* splitProc */
  70.     EmbImageDeleteProc, /* deleteProc */
  71.     EmbImageCleanupProc, /* cleanupProc */
  72.     (Tk_SegLineChangeProc *) NULL, /* lineChangeProc */
  73.     EmbImageLayoutProc, /* layoutProc */
  74.     EmbImageCheckProc /* checkProc */
  75. };
  76. /*
  77.  * Information used for parsing image configuration options:
  78.  */
  79. static Tk_CustomOption alignOption = {AlignParseProc, AlignPrintProc,
  80. (ClientData) NULL};
  81. static Tk_ConfigSpec configSpecs[] = {
  82.     {TK_CONFIG_CUSTOM, "-align", (char *) NULL, (char *) NULL,
  83. "center", 0, TK_CONFIG_DONT_SET_DEFAULT, &alignOption},
  84.     {TK_CONFIG_PIXELS, "-padx", (char *) NULL, (char *) NULL,
  85. "0", Tk_Offset(TkTextEmbImage, padX),
  86. TK_CONFIG_DONT_SET_DEFAULT},
  87.     {TK_CONFIG_PIXELS, "-pady", (char *) NULL, (char *) NULL,
  88. "0", Tk_Offset(TkTextEmbImage, padY),
  89. TK_CONFIG_DONT_SET_DEFAULT},
  90.     {TK_CONFIG_STRING, "-image", (char *) NULL, (char *) NULL,
  91. (char *) NULL, Tk_Offset(TkTextEmbImage, imageString),
  92. TK_CONFIG_DONT_SET_DEFAULT|TK_CONFIG_NULL_OK},
  93.     {TK_CONFIG_STRING, "-name", (char *) NULL, (char *) NULL,
  94. (char *) NULL, Tk_Offset(TkTextEmbImage, imageName),
  95. TK_CONFIG_DONT_SET_DEFAULT|TK_CONFIG_NULL_OK},
  96.     {TK_CONFIG_END, (char *) NULL, (char *) NULL, (char *) NULL,
  97. (char *) NULL, 0, 0}
  98. };
  99. /*
  100.  *--------------------------------------------------------------
  101.  *
  102.  * TkTextImageCmd --
  103.  *
  104.  * This procedure implements the "image" widget command
  105.  * for text widgets.  See the user documentation for details
  106.  * on what it does.
  107.  *
  108.  * Results:
  109.  * A standard Tcl result or error.
  110.  *
  111.  * Side effects:
  112.  * See the user documentation.
  113.  *
  114.  *--------------------------------------------------------------
  115.  */
  116. int
  117. TkTextImageCmd(textPtr, interp, argc, argv)
  118.     register TkText *textPtr; /* Information about text widget. */
  119.     Tcl_Interp *interp; /* Current interpreter. */
  120.     int argc; /* Number of arguments. */
  121.     CONST char **argv; /* Argument strings.  Someone else has already
  122.  * parsed this command enough to know that
  123.  * argv[1] is "image". */
  124. {
  125.     size_t length;
  126.     register TkTextSegment *eiPtr;
  127.     if (argc < 3) {
  128. Tcl_AppendResult(interp, "wrong # args: should be "",
  129. argv[0], " image option ?arg arg ...?"", (char *) NULL);
  130. return TCL_ERROR;
  131.     }
  132.     length = strlen(argv[2]);
  133.     if ((strncmp(argv[2], "cget", length) == 0) && (length >= 2)) {
  134. TkTextIndex index;
  135. TkTextSegment *eiPtr;
  136. if (argc != 5) {
  137.     Tcl_AppendResult(interp, "wrong # args: should be "",
  138.     argv[0], " image cget index option"",
  139.     (char *) NULL);
  140.     return TCL_ERROR;
  141. }
  142. if (TkTextGetIndex(interp, textPtr, argv[3], &index) != TCL_OK) {
  143.     return TCL_ERROR;
  144. }
  145. eiPtr = TkTextIndexToSeg(&index, (int *) NULL);
  146. if (eiPtr->typePtr != &tkTextEmbImageType) {
  147.     Tcl_AppendResult(interp, "no embedded image at index "",
  148.     argv[3], """, (char *) NULL);
  149.     return TCL_ERROR;
  150. }
  151. return Tk_ConfigureValue(interp, textPtr->tkwin, configSpecs,
  152. (char *) &eiPtr->body.ei, argv[4], 0);
  153.     } else if ((strncmp(argv[2], "configure", length) == 0) && (length >= 2)) {
  154. TkTextIndex index;
  155. TkTextSegment *eiPtr;
  156. if (argc < 4) {
  157.     Tcl_AppendResult(interp, "wrong # args: should be "",
  158.     argv[0], " image configure index ?option value ...?"",
  159.     (char *) NULL);
  160.     return TCL_ERROR;
  161. }
  162. if (TkTextGetIndex(interp, textPtr, argv[3], &index) != TCL_OK) {
  163.     return TCL_ERROR;
  164. }
  165. eiPtr = TkTextIndexToSeg(&index, (int *) NULL);
  166. if (eiPtr->typePtr != &tkTextEmbImageType) {
  167.     Tcl_AppendResult(interp, "no embedded image at index "",
  168.     argv[3], """, (char *) NULL);
  169.     return TCL_ERROR;
  170. }
  171. if (argc == 4) {
  172.     return Tk_ConfigureInfo(interp, textPtr->tkwin, configSpecs,
  173.     (char *) &eiPtr->body.ei, (char *) NULL, 0);
  174. } else if (argc == 5) {
  175.     return Tk_ConfigureInfo(interp, textPtr->tkwin, configSpecs,
  176.     (char *) &eiPtr->body.ei, argv[4], 0);
  177. } else {
  178.     TkTextChanged(textPtr, &index, &index);
  179.     return EmbImageConfigure(textPtr, eiPtr, argc-4, argv+4);
  180. }
  181.     } else if ((strncmp(argv[2], "create", length) == 0) && (length >= 2)) {
  182. TkTextIndex index;
  183. int lineIndex;
  184. /*
  185.  * Add a new image.  Find where to put the new image, and
  186.  * mark that position for redisplay.
  187.  */
  188. if (argc < 4) {
  189.     Tcl_AppendResult(interp, "wrong # args: should be "",
  190.     argv[0], " image create index ?option value ...?"",
  191.     (char *) NULL);
  192.     return TCL_ERROR;
  193. }
  194. if (TkTextGetIndex(interp, textPtr, argv[3], &index) != TCL_OK) {
  195.     return TCL_ERROR;
  196. }
  197. /*
  198.  * Don't allow insertions on the last (dummy) line of the text.
  199.  */
  200.     
  201. lineIndex = TkBTreeLineIndex(index.linePtr);
  202. if (lineIndex == TkBTreeNumLines(textPtr->tree)) {
  203.     lineIndex--;
  204.     TkTextMakeByteIndex(textPtr->tree, lineIndex, 1000000, &index);
  205. }
  206. /*
  207.  * Create the new image segment and initialize it.
  208.  */
  209. eiPtr = (TkTextSegment *) ckalloc(EI_SEG_SIZE);
  210. eiPtr->typePtr = &tkTextEmbImageType;
  211. eiPtr->size = 1;
  212. eiPtr->body.ei.textPtr = textPtr;
  213. eiPtr->body.ei.linePtr = NULL;
  214. eiPtr->body.ei.imageName = NULL;
  215. eiPtr->body.ei.imageString = NULL;
  216. eiPtr->body.ei.name = NULL;
  217. eiPtr->body.ei.image = NULL;
  218. eiPtr->body.ei.align = ALIGN_CENTER;
  219. eiPtr->body.ei.padX = eiPtr->body.ei.padY = 0;
  220. eiPtr->body.ei.chunkCount = 0;
  221. /*
  222.  * Link the segment into the text widget, then configure it (delete
  223.  * it again if the configuration fails).
  224.  */
  225. TkTextChanged(textPtr, &index, &index);
  226. TkBTreeLinkSegment(eiPtr, &index);
  227. if (EmbImageConfigure(textPtr, eiPtr, argc-4, argv+4) != TCL_OK) {
  228.     TkTextIndex index2;
  229.     TkTextIndexForwChars(&index, 1, &index2);
  230.     TkBTreeDeleteChars(&index, &index2);
  231.     return TCL_ERROR;
  232. }
  233.     } else if (strncmp(argv[2], "names", length) == 0) {
  234. Tcl_HashSearch search;
  235. Tcl_HashEntry *hPtr;
  236. if (argc != 3) {
  237.     Tcl_AppendResult(interp, "wrong # args: should be "",
  238.     argv[0], " image names"", (char *) NULL);
  239.     return TCL_ERROR;
  240. }
  241. for (hPtr = Tcl_FirstHashEntry(&textPtr->imageTable, &search);
  242. hPtr != NULL; hPtr = Tcl_NextHashEntry(&search)) {
  243.     Tcl_AppendElement(interp,
  244.     Tcl_GetHashKey(&textPtr->markTable, hPtr));
  245. }
  246.     } else {
  247. Tcl_AppendResult(interp, "bad image option "", argv[2],
  248. "": must be cget, configure, create, or names",
  249. (char *) NULL);
  250. return TCL_ERROR;
  251.     }
  252.     return TCL_OK;
  253. }
  254. /*
  255.  *--------------------------------------------------------------
  256.  *
  257.  * EmbImageConfigure --
  258.  *
  259.  * This procedure is called to handle configuration options
  260.  * for an embedded image, using an argc/argv list.
  261.  *
  262.  * Results:
  263.  * The return value is a standard Tcl result.  If TCL_ERROR is
  264.  * returned, then the interp's result contains an error message..
  265.  *
  266.  * Side effects:
  267.  * Configuration information for the embedded image changes,
  268.  * such as alignment, or name of the image.
  269.  *
  270.  *--------------------------------------------------------------
  271.  */
  272. static int
  273. EmbImageConfigure(textPtr, eiPtr, argc, argv)
  274.     TkText *textPtr; /* Information about text widget that
  275.  * contains embedded image. */
  276.     TkTextSegment *eiPtr; /* Embedded image to be configured. */
  277.     int argc; /* Number of strings in argv. */
  278.     CONST char **argv; /* Array of strings describing configuration
  279.  * options. */
  280. {
  281.     Tk_Image image;
  282.     Tcl_DString newName;
  283.     Tcl_HashEntry *hPtr;
  284.     Tcl_HashSearch search;
  285.     int new;
  286.     char *name;
  287.     int count = 0; /* The counter for picking a unique name */
  288.     int conflict = 0; /* True if we have a name conflict */
  289.     unsigned int len; /* length of image name */
  290.     if (Tk_ConfigureWidget(textPtr->interp, textPtr->tkwin, configSpecs,
  291.     argc, argv, (char *) &eiPtr->body.ei,TK_CONFIG_ARGV_ONLY)
  292.     != TCL_OK) {
  293. return TCL_ERROR;
  294.     }
  295.     /*
  296.      * Create the image.  Save the old image around and don't free it
  297.      * until after the new one is allocated.  This keeps the reference
  298.      * count from going to zero so the image doesn't have to be recreated
  299.      * if it hasn't changed.
  300.      */
  301.     if (eiPtr->body.ei.imageString != NULL) {
  302. image = Tk_GetImage(textPtr->interp, textPtr->tkwin, eiPtr->body.ei.imageString,
  303. EmbImageProc, (ClientData) eiPtr);
  304. if (image == NULL) {
  305.     return TCL_ERROR;
  306. }
  307.     } else {
  308. image = NULL;
  309.     }
  310.     if (eiPtr->body.ei.image != NULL) {
  311. Tk_FreeImage(eiPtr->body.ei.image);
  312.     }
  313.     eiPtr->body.ei.image = image;
  314.     if (eiPtr->body.ei.name != NULL) {
  315.      return TCL_OK;
  316.     }
  317.     /* 
  318.      * Find a unique name for this image.  Use imageName (or imageString)
  319.      * if available, otherwise tack on a #nn and use it.  If a name is already
  320.      * associated with this image, delete the name.
  321.      */
  322.     name = eiPtr->body.ei.imageName;
  323.     if (name == NULL) {
  324.      name = eiPtr->body.ei.imageString;
  325.     }
  326.     if (name == NULL) {
  327.         Tcl_AppendResult(textPtr->interp,"Either a "-name" ",
  328. "or a "-image" argument must be provided ",
  329. "to the "image create" subcommand.",
  330. (char *) NULL);
  331. return TCL_ERROR;
  332.     }
  333.     len = strlen(name);
  334.     for (hPtr = Tcl_FirstHashEntry(&textPtr->imageTable, &search);
  335.     hPtr != NULL; hPtr = Tcl_NextHashEntry(&search)) {
  336. char *haveName = Tcl_GetHashKey(&textPtr->imageTable, hPtr);
  337. if (strncmp(name, haveName, len) == 0) {
  338.     new = 0;
  339.     sscanf(haveName+len,"#%d",&new);
  340.     if (new > count) {
  341. count = new;
  342.     }
  343.     if (len == (int) strlen(haveName)) {
  344.      conflict = 1;
  345.     }
  346. }
  347.     }
  348.     Tcl_DStringInit(&newName);
  349.     Tcl_DStringAppend(&newName,name, -1);
  350.     if (conflict) {
  351.      char buf[4 + TCL_INTEGER_SPACE];
  352. sprintf(buf, "#%d",count+1);
  353. Tcl_DStringAppend(&newName,buf, -1);
  354.     }
  355.     name = Tcl_DStringValue(&newName);
  356.     hPtr = Tcl_CreateHashEntry(&textPtr->imageTable, name, &new);
  357.     Tcl_SetHashValue(hPtr, eiPtr);
  358.     Tcl_AppendResult(textPtr->interp, name , (char *) NULL);
  359.     eiPtr->body.ei.name = ckalloc((unsigned) Tcl_DStringLength(&newName)+1);
  360.     strcpy(eiPtr->body.ei.name,name);
  361.     Tcl_DStringFree(&newName);
  362.     return TCL_OK;
  363. }
  364. /*
  365.  *--------------------------------------------------------------
  366.  *
  367.  * AlignParseProc --
  368.  *
  369.  * This procedure is invoked by Tk_ConfigureWidget during
  370.  * option processing to handle "-align" options for embedded
  371.  * images.
  372.  *
  373.  * Results:
  374.  * A standard Tcl return value.
  375.  *
  376.  * Side effects:
  377.  * The alignment for the embedded image may change.
  378.  *
  379.  *--------------------------------------------------------------
  380.  */
  381. /* ARGSUSED */
  382. static int
  383. AlignParseProc(clientData, interp, tkwin, value, widgRec, offset)
  384.     ClientData clientData; /* Not used.*/
  385.     Tcl_Interp *interp; /* Used for reporting errors. */
  386.     Tk_Window tkwin; /* Window for text widget. */
  387.     CONST char *value; /* Value of option. */
  388.     char *widgRec; /* Pointer to TkTextEmbWindow
  389.  * structure. */
  390.     int offset; /* Offset into item (ignored). */
  391. {
  392.     register TkTextEmbImage *embPtr = (TkTextEmbImage *) widgRec;
  393.     if (strcmp(value, "baseline") == 0) {
  394. embPtr->align = ALIGN_BASELINE;
  395.     } else if (strcmp(value, "bottom") == 0) {
  396. embPtr->align = ALIGN_BOTTOM;
  397.     } else if (strcmp(value, "center") == 0) {
  398. embPtr->align = ALIGN_CENTER;
  399.     } else if (strcmp(value, "top") == 0) {
  400. embPtr->align = ALIGN_TOP;
  401.     } else {
  402. Tcl_AppendResult(interp, "bad alignment "", value,
  403. "": must be baseline, bottom, center, or top",
  404. (char *) NULL);
  405. return TCL_ERROR;
  406.     }
  407.     return TCL_OK;
  408. }
  409. /*
  410.  *--------------------------------------------------------------
  411.  *
  412.  * AlignPrintProc --
  413.  *
  414.  * This procedure is invoked by the Tk configuration code
  415.  * to produce a printable string for the "-align" configuration
  416.  * option for embedded images.
  417.  *
  418.  * Results:
  419.  * The return value is a string describing the embedded
  420.  * images's current alignment.
  421.  *
  422.  * Side effects:
  423.  * None.
  424.  *
  425.  *--------------------------------------------------------------
  426.  */
  427. /* ARGSUSED */
  428. static char *
  429. AlignPrintProc(clientData, tkwin, widgRec, offset, freeProcPtr)
  430.     ClientData clientData; /* Ignored. */
  431.     Tk_Window tkwin; /* Window for text widget. */
  432.     char *widgRec; /* Pointer to TkTextEmbImage
  433.  * structure. */
  434.     int offset; /* Ignored. */
  435.     Tcl_FreeProc **freeProcPtr; /* Pointer to variable to fill in with
  436.  * information about how to reclaim
  437.  * storage for return string. */
  438. {
  439.     switch (((TkTextEmbImage *) widgRec)->align) {
  440. case ALIGN_BASELINE:
  441.     return "baseline";
  442. case ALIGN_BOTTOM:
  443.     return "bottom";
  444. case ALIGN_CENTER:
  445.     return "center";
  446. case ALIGN_TOP:
  447.     return "top";
  448. default:
  449.     return "??";
  450.     }
  451. }
  452. /*
  453.  *--------------------------------------------------------------
  454.  *
  455.  * EmbImageDeleteProc --
  456.  *
  457.  * This procedure is invoked by the text B-tree code whenever
  458.  * an embedded image lies in a range of characters being deleted.
  459.  *
  460.  * Results:
  461.  * Returns 0 to indicate that the deletion has been accepted.
  462.  *
  463.  * Side effects:
  464.  * The embedded image is deleted, if it exists, and any resources
  465.  * associated with it are released.
  466.  *
  467.  *--------------------------------------------------------------
  468.  */
  469. /* ARGSUSED */
  470. static int
  471. EmbImageDeleteProc(eiPtr, linePtr, treeGone)
  472.     TkTextSegment *eiPtr; /* Segment being deleted. */
  473.     TkTextLine *linePtr; /* Line containing segment. */
  474.     int treeGone; /* Non-zero means the entire tree is
  475.  * being deleted, so everything must
  476.  * get cleaned up. */
  477. {
  478.     Tcl_HashEntry *hPtr;
  479.     if (eiPtr->body.ei.image != NULL) {
  480. hPtr = Tcl_FindHashEntry(&eiPtr->body.ei.textPtr->imageTable,
  481. eiPtr->body.ei.name);
  482. if (hPtr != NULL) {
  483.     /*
  484.      * (It's possible for there to be no hash table entry for this
  485.      * image, if an error occurred while creating the image segment
  486.      * but before the image got added to the table)
  487.      */
  488.     Tcl_DeleteHashEntry(hPtr);
  489. }
  490. Tk_FreeImage(eiPtr->body.ei.image);
  491.     }
  492.     Tk_FreeOptions(configSpecs, (char *) &eiPtr->body.ei,
  493.     eiPtr->body.ei.textPtr->display, 0);
  494.     if (eiPtr->body.ei.name != NULL) {
  495. ckfree(eiPtr->body.ei.name);
  496.     }
  497.     ckfree((char *) eiPtr);
  498.     return 0;
  499. }
  500. /*
  501.  *--------------------------------------------------------------
  502.  *
  503.  * EmbImageCleanupProc --
  504.  *
  505.  * This procedure is invoked by the B-tree code whenever a
  506.  * segment containing an embedded image is moved from one
  507.  * line to another.
  508.  *
  509.  * Results:
  510.  * None.
  511.  *
  512.  * Side effects:
  513.  * The linePtr field of the segment gets updated.
  514.  *
  515.  *--------------------------------------------------------------
  516.  */
  517. static TkTextSegment *
  518. EmbImageCleanupProc(eiPtr, linePtr)
  519.     TkTextSegment *eiPtr; /* Mark segment that's being moved. */
  520.     TkTextLine *linePtr; /* Line that now contains segment. */
  521. {
  522.     eiPtr->body.ei.linePtr = linePtr;
  523.     return eiPtr;
  524. }
  525. /*
  526.  *--------------------------------------------------------------
  527.  *
  528.  * EmbImageLayoutProc --
  529.  *
  530.  * This procedure is the "layoutProc" for embedded image
  531.  * segments.
  532.  *
  533.  * Results:
  534.  * 1 is returned to indicate that the segment should be
  535.  * displayed.  The chunkPtr structure is filled in.
  536.  *
  537.  * Side effects:
  538.  * None, except for filling in chunkPtr.
  539.  *
  540.  *--------------------------------------------------------------
  541.  */
  542. /*ARGSUSED*/
  543. static int
  544. EmbImageLayoutProc(textPtr, indexPtr, eiPtr, offset, maxX, maxChars,
  545. noCharsYet, wrapMode, chunkPtr)
  546.     TkText *textPtr; /* Text widget being layed out. */
  547.     TkTextIndex *indexPtr; /* Identifies first character in chunk. */
  548.     TkTextSegment *eiPtr; /* Segment corresponding to indexPtr. */
  549.     int offset; /* Offset within segPtr corresponding to
  550.  * indexPtr (always 0). */
  551.     int maxX; /* Chunk must not occupy pixels at this
  552.  * position or higher. */
  553.     int maxChars; /* Chunk must not include more than this
  554.  * many characters. */
  555.     int noCharsYet; /* Non-zero means no characters have been
  556.  * assigned to this line yet. */
  557.     TkWrapMode wrapMode; /* Wrap mode to use for line: TEXT_WRAPMODE_CHAR,
  558.  * TEXT_WRAPMODE_NONE, or TEXT_WRAPMODE_WORD. */
  559.     register TkTextDispChunk *chunkPtr;
  560. /* Structure to fill in with information
  561.  * about this chunk.  The x field has already
  562.  * been set by the caller. */
  563. {
  564.     int width, height;
  565.     if (offset != 0) {
  566. panic("Non-zero offset in EmbImageLayoutProc");
  567.     }
  568.     /*
  569.      * See if there's room for this image on this line.
  570.      */
  571.     if (eiPtr->body.ei.image == NULL) {
  572. width = 0;
  573. height = 0;
  574.     } else {
  575. Tk_SizeOfImage(eiPtr->body.ei.image, &width, &height);
  576. width += 2*eiPtr->body.ei.padX;
  577. height += 2*eiPtr->body.ei.padY;
  578.     }
  579.     if ((width > (maxX - chunkPtr->x))
  580.     && !noCharsYet && (textPtr->wrapMode != TEXT_WRAPMODE_NONE)) {
  581. return 0;
  582.     }
  583.     /*
  584.      * Fill in the chunk structure.
  585.      */
  586.     chunkPtr->displayProc = EmbImageDisplayProc;
  587.     chunkPtr->undisplayProc = (Tk_ChunkUndisplayProc *) NULL;
  588.     chunkPtr->measureProc = (Tk_ChunkMeasureProc *) NULL;
  589.     chunkPtr->bboxProc = EmbImageBboxProc;
  590.     chunkPtr->numBytes = 1;
  591.     if (eiPtr->body.ei.align == ALIGN_BASELINE) {
  592. chunkPtr->minAscent = height - eiPtr->body.ei.padY;
  593. chunkPtr->minDescent = eiPtr->body.ei.padY;
  594. chunkPtr->minHeight = 0;
  595.     } else {
  596. chunkPtr->minAscent = 0;
  597. chunkPtr->minDescent = 0;
  598. chunkPtr->minHeight = height;
  599.     }
  600.     chunkPtr->width = width;
  601.     chunkPtr->breakIndex = -1;
  602.     chunkPtr->breakIndex = 1;
  603.     chunkPtr->clientData = (ClientData) eiPtr;
  604.     eiPtr->body.ei.chunkCount += 1;
  605.     return 1;
  606. }
  607. /*
  608.  *--------------------------------------------------------------
  609.  *
  610.  * EmbImageCheckProc --
  611.  *
  612.  * This procedure is invoked by the B-tree code to perform
  613.  * consistency checks on embedded images.
  614.  *
  615.  * Results:
  616.  * None.
  617.  *
  618.  * Side effects:
  619.  * The procedure panics if it detects anything wrong with
  620.  * the embedded image.
  621.  *
  622.  *--------------------------------------------------------------
  623.  */
  624. static void
  625. EmbImageCheckProc(eiPtr, linePtr)
  626.     TkTextSegment *eiPtr; /* Segment to check. */
  627.     TkTextLine *linePtr; /* Line containing segment. */
  628. {
  629.     if (eiPtr->nextPtr == NULL) {
  630. panic("EmbImageCheckProc: embedded image is last segment in line");
  631.     }
  632.     if (eiPtr->size != 1) {
  633. panic("EmbImageCheckProc: embedded image has size %d", eiPtr->size);
  634.     }
  635. }
  636. /*
  637.  *--------------------------------------------------------------
  638.  *
  639.  * EmbImageDisplayProc --
  640.  *
  641.  * This procedure is invoked by the text displaying code
  642.  * when it is time to actually draw an embedded image
  643.  * chunk on the screen.
  644.  *
  645.  * Results:
  646.  * None.
  647.  *
  648.  * Side effects:
  649.  * The embedded image gets moved to the correct location
  650.  * and drawn onto the display.
  651.  *
  652.  *--------------------------------------------------------------
  653.  */
  654. static void
  655. EmbImageDisplayProc(chunkPtr, x, y, lineHeight, baseline, display, dst, screenY)
  656.     TkTextDispChunk *chunkPtr; /* Chunk that is to be drawn. */
  657.     int x; /* X-position in dst at which to
  658.  * draw this chunk (differs from
  659.  * the x-position in the chunk because
  660.  * of scrolling). */
  661.     int y; /* Top of rectangular bounding box
  662.  * for line: tells where to draw this
  663.  * chunk in dst (x-position is in
  664.  * the chunk itself). */
  665.     int lineHeight; /* Total height of line. */
  666.     int baseline; /* Offset of baseline from y. */
  667.     Display *display; /* Display to use for drawing. */
  668.     Drawable dst; /* Pixmap or window in which to draw */
  669.     int screenY; /* Y-coordinate in text window that
  670.  * corresponds to y. */
  671. {
  672.     TkTextSegment *eiPtr = (TkTextSegment *) chunkPtr->clientData;
  673.     int lineX, imageX, imageY, width, height;
  674.     Tk_Image image;
  675.     image = eiPtr->body.ei.image;
  676.     if (image == NULL) {
  677. return;
  678.     }
  679.     if ((x + chunkPtr->width) <= 0) {
  680. return;
  681.     }
  682.     /*
  683.      * Compute the image's location and size in the text widget, taking
  684.      * into account the align value for the image.
  685.      */
  686.     EmbImageBboxProc(chunkPtr, 0, y, lineHeight, baseline, &lineX,
  687.     &imageY, &width, &height);
  688.     imageX = lineX - chunkPtr->x + x;
  689.     Tk_RedrawImage(image, 0, 0, width, height, dst,
  690.     imageX, imageY);
  691. }
  692. /*
  693.  *--------------------------------------------------------------
  694.  *
  695.  * EmbImageBboxProc --
  696.  *
  697.  * This procedure is called to compute the bounding box of
  698.  * the area occupied by an embedded image.
  699.  *
  700.  * Results:
  701.  * There is no return value.  *xPtr and *yPtr are filled in
  702.  * with the coordinates of the upper left corner of the
  703.  * image, and *widthPtr and *heightPtr are filled in with
  704.  * the dimensions of the image in pixels.  Note:  not all
  705.  * of the returned bbox is necessarily visible on the screen
  706.  * (the rightmost part might be off-screen to the right,
  707.  * and the bottommost part might be off-screen to the bottom).
  708.  *
  709.  * Side effects:
  710.  * None.
  711.  *
  712.  *--------------------------------------------------------------
  713.  */
  714. static void
  715. EmbImageBboxProc(chunkPtr, index, y, lineHeight, baseline, xPtr, yPtr,
  716. widthPtr, heightPtr)
  717.     TkTextDispChunk *chunkPtr; /* Chunk containing desired char. */
  718.     int index; /* Index of desired character within
  719.  * the chunk. */
  720.     int y; /* Topmost pixel in area allocated
  721.  * for this line. */
  722.     int lineHeight; /* Total height of line. */
  723.     int baseline; /* Location of line's baseline, in
  724.  * pixels measured down from y. */
  725.     int *xPtr, *yPtr; /* Gets filled in with coords of
  726.  * character's upper-left pixel. */
  727.     int *widthPtr; /* Gets filled in with width of
  728.  * character, in pixels. */
  729.     int *heightPtr; /* Gets filled in with height of
  730.  * character, in pixels. */
  731. {
  732.     TkTextSegment *eiPtr = (TkTextSegment *) chunkPtr->clientData;
  733.     Tk_Image image;
  734.     image = eiPtr->body.ei.image;
  735.     if (image != NULL) {
  736. Tk_SizeOfImage(image, widthPtr, heightPtr);
  737.     } else {
  738. *widthPtr = 0;
  739. *heightPtr = 0;
  740.     }
  741.     *xPtr = chunkPtr->x + eiPtr->body.ei.padX;
  742.     switch (eiPtr->body.ei.align) {
  743. case ALIGN_BOTTOM:
  744.     *yPtr = y + (lineHeight - *heightPtr - eiPtr->body.ei.padY);
  745.     break;
  746. case ALIGN_CENTER:
  747.     *yPtr = y + (lineHeight - *heightPtr)/2;
  748.     break;
  749. case ALIGN_TOP:
  750.     *yPtr = y + eiPtr->body.ei.padY;
  751.     break;
  752. case ALIGN_BASELINE:
  753.     *yPtr = y + (baseline - *heightPtr);
  754.     break;
  755.     }
  756. }
  757. /*
  758.  *--------------------------------------------------------------
  759.  *
  760.  * TkTextImageIndex --
  761.  *
  762.  * Given the name of an embedded image within a text widget,
  763.  * returns an index corresponding to the image's position
  764.  * in the text.
  765.  *
  766.  * Results:
  767.  * The return value is 1 if there is an embedded image by
  768.  * the given name in the text widget, 0 otherwise.  If the
  769.  * image exists, *indexPtr is filled in with its index.
  770.  *
  771.  * Side effects:
  772.  * None.
  773.  *
  774.  *--------------------------------------------------------------
  775.  */
  776. int
  777. TkTextImageIndex(textPtr, name, indexPtr)
  778.     TkText *textPtr; /* Text widget containing image. */
  779.     CONST char *name; /* Name of image. */
  780.     TkTextIndex *indexPtr; /* Index information gets stored here. */
  781. {
  782.     Tcl_HashEntry *hPtr;
  783.     TkTextSegment *eiPtr;
  784.     hPtr = Tcl_FindHashEntry(&textPtr->imageTable, name);
  785.     if (hPtr == NULL) {
  786. return 0;
  787.     }
  788.     eiPtr = (TkTextSegment *) Tcl_GetHashValue(hPtr);
  789.     indexPtr->tree = textPtr->tree;
  790.     indexPtr->linePtr = eiPtr->body.ei.linePtr;
  791.     indexPtr->byteIndex = TkTextSegToOffset(eiPtr, indexPtr->linePtr);
  792.     return 1;
  793. }
  794. /*
  795.  *--------------------------------------------------------------
  796.  *
  797.  * EmbImageProc --
  798.  *
  799.  * This procedure is called by the image code whenever an
  800.  * image or its contents changes.
  801.  *
  802.  * Results:
  803.  * None.
  804.  *
  805.  * Side effects:
  806.  * The image will be redisplayed.
  807.  *
  808.  *--------------------------------------------------------------
  809.  */
  810. static void
  811. EmbImageProc(clientData, x, y, width, height, imgWidth, imgHeight)
  812.     ClientData clientData;              /* Pointer to widget record. */
  813.     int x, y;                           /* Upper left pixel (within image)
  814.                                          * that must be redisplayed. */
  815.     int width, height;                  /* Dimensions of area to redisplay
  816.                                          * (may be <= 0). */
  817.     int imgWidth, imgHeight;            /* New dimensions of image. */
  818. {
  819.     TkTextSegment *eiPtr = (TkTextSegment *) clientData;
  820.     TkTextIndex index;
  821.     index.tree = eiPtr->body.ei.textPtr->tree;
  822.     index.linePtr = eiPtr->body.ei.linePtr;
  823.     index.byteIndex = TkTextSegToOffset(eiPtr, eiPtr->body.ei.linePtr);
  824.     TkTextChanged(eiPtr->body.ei.textPtr, &index, &index);
  825. }