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

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * tkRectOval.c --
  3.  *
  4.  * This file implements rectangle and oval items for canvas
  5.  * widgets.
  6.  *
  7.  * Copyright (c) 1991-1994 The Regents of the University of California.
  8.  * Copyright (c) 1994-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: tkRectOval.c,v 1.10.2.2 2006/10/16 15:35:50 das Exp $
  14.  */
  15. #include <stdio.h>
  16. #include "tk.h"
  17. #include "tkInt.h"
  18. #include "tkPort.h"
  19. #include "tkCanvas.h"
  20. /*
  21.  * The structure below defines the record for each rectangle/oval item.
  22.  */
  23. typedef struct RectOvalItem  {
  24.     Tk_Item header; /* Generic stuff that's the same for all
  25.  * types.  MUST BE FIRST IN STRUCTURE. */
  26.     Tk_Outline outline; /* Outline structure */
  27.     double bbox[4]; /* Coordinates of bounding box for rectangle
  28.  * or oval (x1, y1, x2, y2).  Item includes
  29.  * x1 and x2 but not y1 and y2. */
  30.     Tk_TSOffset tsoffset;
  31.     XColor *fillColor; /* Color for filling rectangle/oval. */
  32.     XColor *activeFillColor; /* Color for filling rectangle/oval if state is active. */
  33.     XColor *disabledFillColor; /* Color for filling rectangle/oval if state is disabled. */
  34.     Pixmap fillStipple; /* Stipple bitmap for filling item. */
  35.     Pixmap activeFillStipple; /* Stipple bitmap for filling item if state is active. */
  36.     Pixmap disabledFillStipple; /* Stipple bitmap for filling item if state is disabled. */
  37.     GC fillGC; /* Graphics context for filling item. */
  38. } RectOvalItem;
  39. /*
  40.  * Information used for parsing configuration specs:
  41.  */
  42. static Tk_CustomOption stateOption = {
  43.     (Tk_OptionParseProc *) TkStateParseProc,
  44.     TkStatePrintProc, (ClientData) 2
  45. };
  46. static Tk_CustomOption tagsOption = {
  47.     (Tk_OptionParseProc *) Tk_CanvasTagsParseProc,
  48.     Tk_CanvasTagsPrintProc, (ClientData) NULL
  49. };
  50. static Tk_CustomOption dashOption = {
  51.     (Tk_OptionParseProc *) TkCanvasDashParseProc,
  52.     TkCanvasDashPrintProc, (ClientData) NULL
  53. };
  54. static Tk_CustomOption offsetOption = {
  55.     (Tk_OptionParseProc *) TkOffsetParseProc,
  56.     TkOffsetPrintProc, (ClientData) TK_OFFSET_RELATIVE
  57. };
  58. static Tk_CustomOption pixelOption = {
  59.     (Tk_OptionParseProc *) TkPixelParseProc,
  60.     TkPixelPrintProc, (ClientData) NULL
  61. };
  62. static Tk_ConfigSpec configSpecs[] = {
  63.     {TK_CONFIG_CUSTOM, "-activedash", (char *) NULL, (char *) NULL,
  64. (char *) NULL, Tk_Offset(RectOvalItem, outline.activeDash),
  65. TK_CONFIG_NULL_OK, &dashOption},
  66.     {TK_CONFIG_COLOR, "-activefill", (char *) NULL, (char *) NULL,
  67. (char *) NULL, Tk_Offset(RectOvalItem, activeFillColor),
  68. TK_CONFIG_NULL_OK},
  69.     {TK_CONFIG_COLOR, "-activeoutline", (char *) NULL, (char *) NULL,
  70. (char *) NULL, Tk_Offset(RectOvalItem, outline.activeColor),
  71. TK_CONFIG_NULL_OK},
  72.     {TK_CONFIG_BITMAP, "-activeoutlinestipple", (char *) NULL, (char *) NULL,
  73. (char *) NULL, Tk_Offset(RectOvalItem, outline.activeStipple),
  74. TK_CONFIG_NULL_OK},
  75.     {TK_CONFIG_BITMAP, "-activestipple", (char *) NULL, (char *) NULL,
  76. (char *) NULL, Tk_Offset(RectOvalItem, activeFillStipple),
  77. TK_CONFIG_NULL_OK},
  78.     {TK_CONFIG_CUSTOM, "-activewidth", (char *) NULL, (char *) NULL,
  79. "0.0", Tk_Offset(RectOvalItem, outline.activeWidth),
  80. TK_CONFIG_DONT_SET_DEFAULT, &pixelOption},
  81.     {TK_CONFIG_CUSTOM, "-dash", (char *) NULL, (char *) NULL,
  82. (char *) NULL, Tk_Offset(RectOvalItem, outline.dash),
  83. TK_CONFIG_NULL_OK, &dashOption},
  84.     {TK_CONFIG_PIXELS, "-dashoffset", (char *) NULL, (char *) NULL,
  85. "0", Tk_Offset(RectOvalItem, outline.offset),
  86. TK_CONFIG_DONT_SET_DEFAULT},
  87.     {TK_CONFIG_CUSTOM, "-disableddash", (char *) NULL, (char *) NULL,
  88. (char *) NULL, Tk_Offset(RectOvalItem, outline.disabledDash),
  89. TK_CONFIG_NULL_OK, &dashOption},
  90.     {TK_CONFIG_COLOR, "-disabledfill", (char *) NULL, (char *) NULL,
  91. (char *) NULL, Tk_Offset(RectOvalItem, disabledFillColor),
  92. TK_CONFIG_NULL_OK},
  93.     {TK_CONFIG_COLOR, "-disabledoutline", (char *) NULL, (char *) NULL,
  94. (char *) NULL, Tk_Offset(RectOvalItem, outline.disabledColor),
  95. TK_CONFIG_NULL_OK},
  96.     {TK_CONFIG_BITMAP, "-disabledoutlinestipple", (char *) NULL, (char *) NULL,
  97. (char *) NULL, Tk_Offset(RectOvalItem, outline.disabledStipple),
  98. TK_CONFIG_NULL_OK},
  99.     {TK_CONFIG_BITMAP, "-disabledstipple", (char *) NULL, (char *) NULL,
  100. (char *) NULL, Tk_Offset(RectOvalItem, disabledFillStipple),
  101. TK_CONFIG_NULL_OK},
  102.     {TK_CONFIG_PIXELS, "-disabledwidth", (char *) NULL, (char *) NULL,
  103. "0.0", Tk_Offset(RectOvalItem, outline.disabledWidth),
  104. TK_CONFIG_DONT_SET_DEFAULT, &pixelOption},
  105.     {TK_CONFIG_COLOR, "-fill", (char *) NULL, (char *) NULL,
  106. (char *) NULL, Tk_Offset(RectOvalItem, fillColor), TK_CONFIG_NULL_OK},
  107.     {TK_CONFIG_CUSTOM, "-offset", (char *) NULL, (char *) NULL,
  108. "0,0", Tk_Offset(RectOvalItem, tsoffset),
  109. TK_CONFIG_DONT_SET_DEFAULT, &offsetOption},
  110.     {TK_CONFIG_COLOR, "-outline", (char *) NULL, (char *) NULL,
  111. "black", Tk_Offset(RectOvalItem, outline.color), TK_CONFIG_NULL_OK},
  112.     {TK_CONFIG_CUSTOM, "-outlineoffset", (char *) NULL, (char *) NULL,
  113. "0,0", Tk_Offset(RectOvalItem, outline.tsoffset),
  114. TK_CONFIG_DONT_SET_DEFAULT, &offsetOption},
  115.     {TK_CONFIG_BITMAP, "-outlinestipple", (char *) NULL, (char *) NULL,
  116. (char *) NULL, Tk_Offset(RectOvalItem, outline.stipple),
  117. TK_CONFIG_NULL_OK},
  118.     {TK_CONFIG_CUSTOM, "-state", (char *) NULL, (char *) NULL,
  119. (char *) NULL, Tk_Offset(Tk_Item, state),TK_CONFIG_NULL_OK,
  120. &stateOption},
  121.     {TK_CONFIG_BITMAP, "-stipple", (char *) NULL, (char *) NULL,
  122. (char *) NULL, Tk_Offset(RectOvalItem, fillStipple), TK_CONFIG_NULL_OK},
  123.     {TK_CONFIG_CUSTOM, "-tags", (char *) NULL, (char *) NULL,
  124. (char *) NULL, 0, TK_CONFIG_NULL_OK, &tagsOption},
  125.     {TK_CONFIG_CUSTOM, "-width", (char *) NULL, (char *) NULL,
  126. "1.0", Tk_Offset(RectOvalItem, outline.width),
  127. TK_CONFIG_DONT_SET_DEFAULT, &pixelOption},
  128.     {TK_CONFIG_END, (char *) NULL, (char *) NULL, (char *) NULL,
  129. (char *) NULL, 0, 0}
  130. };
  131. /*
  132.  * Prototypes for procedures defined in this file:
  133.  */
  134. static void ComputeRectOvalBbox _ANSI_ARGS_((Tk_Canvas canvas,
  135.     RectOvalItem *rectOvalPtr));
  136. static int ConfigureRectOval _ANSI_ARGS_((Tcl_Interp *interp,
  137.     Tk_Canvas canvas, Tk_Item *itemPtr, int objc,
  138.     Tcl_Obj *CONST objv[], int flags));
  139. static int CreateRectOval _ANSI_ARGS_((Tcl_Interp *interp,
  140.     Tk_Canvas canvas, struct Tk_Item *itemPtr,
  141.     int objc, Tcl_Obj *CONST objv[]));
  142. static void DeleteRectOval _ANSI_ARGS_((Tk_Canvas canvas,
  143.     Tk_Item *itemPtr, Display *display));
  144. static void DisplayRectOval _ANSI_ARGS_((Tk_Canvas canvas,
  145.     Tk_Item *itemPtr, Display *display, Drawable dst,
  146.     int x, int y, int width, int height));
  147. static int OvalToArea _ANSI_ARGS_((Tk_Canvas canvas,
  148.     Tk_Item *itemPtr, double *areaPtr));
  149. static double OvalToPoint _ANSI_ARGS_((Tk_Canvas canvas,
  150.     Tk_Item *itemPtr, double *pointPtr));
  151. static int RectOvalCoords _ANSI_ARGS_((Tcl_Interp *interp,
  152.     Tk_Canvas canvas, Tk_Item *itemPtr, int objc,
  153.     Tcl_Obj *CONST objv[]));
  154. static int RectOvalToPostscript _ANSI_ARGS_((Tcl_Interp *interp,
  155.     Tk_Canvas canvas, Tk_Item *itemPtr, int prepass));
  156. static int RectToArea _ANSI_ARGS_((Tk_Canvas canvas,
  157.     Tk_Item *itemPtr, double *areaPtr));
  158. static double RectToPoint _ANSI_ARGS_((Tk_Canvas canvas,
  159.     Tk_Item *itemPtr, double *pointPtr));
  160. static void ScaleRectOval _ANSI_ARGS_((Tk_Canvas canvas,
  161.     Tk_Item *itemPtr, double originX, double originY,
  162.     double scaleX, double scaleY));
  163. static void TranslateRectOval _ANSI_ARGS_((Tk_Canvas canvas,
  164.     Tk_Item *itemPtr, double deltaX, double deltaY));
  165. /*
  166.  * The structures below defines the rectangle and oval item types
  167.  * by means of procedures that can be invoked by generic item code.
  168.  */
  169. Tk_ItemType tkRectangleType = {
  170.     "rectangle", /* name */
  171.     sizeof(RectOvalItem), /* itemSize */
  172.     CreateRectOval, /* createProc */
  173.     configSpecs, /* configSpecs */
  174.     ConfigureRectOval, /* configureProc */
  175.     RectOvalCoords, /* coordProc */
  176.     DeleteRectOval, /* deleteProc */
  177.     DisplayRectOval, /* displayProc */
  178.     TK_CONFIG_OBJS, /* flags */
  179.     RectToPoint, /* pointProc */
  180.     RectToArea, /* areaProc */
  181.     RectOvalToPostscript, /* postscriptProc */
  182.     ScaleRectOval, /* scaleProc */
  183.     TranslateRectOval, /* translateProc */
  184.     (Tk_ItemIndexProc *) NULL, /* indexProc */
  185.     (Tk_ItemCursorProc *) NULL, /* icursorProc */
  186.     (Tk_ItemSelectionProc *) NULL, /* selectionProc */
  187.     (Tk_ItemInsertProc *) NULL, /* insertProc */
  188.     (Tk_ItemDCharsProc *) NULL, /* dTextProc */
  189.     (Tk_ItemType *) NULL, /* nextPtr */
  190. };
  191. Tk_ItemType tkOvalType = {
  192.     "oval", /* name */
  193.     sizeof(RectOvalItem), /* itemSize */
  194.     CreateRectOval, /* createProc */
  195.     configSpecs, /* configSpecs */
  196.     ConfigureRectOval, /* configureProc */
  197.     RectOvalCoords, /* coordProc */
  198.     DeleteRectOval, /* deleteProc */
  199.     DisplayRectOval, /* displayProc */
  200.     TK_CONFIG_OBJS, /* flags */
  201.     OvalToPoint, /* pointProc */
  202.     OvalToArea, /* areaProc */
  203.     RectOvalToPostscript, /* postscriptProc */
  204.     ScaleRectOval, /* scaleProc */
  205.     TranslateRectOval, /* translateProc */
  206.     (Tk_ItemIndexProc *) NULL, /* indexProc */
  207.     (Tk_ItemCursorProc *) NULL, /* cursorProc */
  208.     (Tk_ItemSelectionProc *) NULL, /* selectionProc */
  209.     (Tk_ItemInsertProc *) NULL, /* insertProc */
  210.     (Tk_ItemDCharsProc *) NULL, /* dTextProc */
  211.     (Tk_ItemType *) NULL, /* nextPtr */
  212. };
  213. /*
  214.  *--------------------------------------------------------------
  215.  *
  216.  * CreateRectOval --
  217.  *
  218.  * This procedure is invoked to create a new rectangle
  219.  * or oval item in a canvas.
  220.  *
  221.  * Results:
  222.  * A standard Tcl return value.  If an error occurred in
  223.  * creating the item, then an error message is left in
  224.  * the interp's result;  in this case itemPtr is left uninitialized,
  225.  * so it can be safely freed by the caller.
  226.  *
  227.  * Side effects:
  228.  * A new rectangle or oval item is created.
  229.  *
  230.  *--------------------------------------------------------------
  231.  */
  232. static int
  233. CreateRectOval(interp, canvas, itemPtr, objc, objv)
  234.     Tcl_Interp *interp; /* For error reporting. */
  235.     Tk_Canvas canvas; /* Canvas to hold new item. */
  236.     Tk_Item *itemPtr; /* Record to hold new item;  header
  237.  * has been initialized by caller. */
  238.     int objc; /* Number of arguments in objv. */
  239.     Tcl_Obj *CONST objv[]; /* Arguments describing rectangle. */
  240. {
  241.     RectOvalItem *rectOvalPtr = (RectOvalItem *) itemPtr;
  242.     int i;
  243.     if (objc == 0) {
  244. panic("canvas did not pass any coordsn");
  245.     }
  246.     /*
  247.      * Carry out initialization that is needed in order to clean
  248.      * up after errors during the the remainder of this procedure.
  249.      */
  250.     Tk_CreateOutline(&(rectOvalPtr->outline));
  251.     rectOvalPtr->tsoffset.flags = 0;
  252.     rectOvalPtr->tsoffset.xoffset = 0;
  253.     rectOvalPtr->tsoffset.yoffset = 0;
  254.     rectOvalPtr->fillColor = NULL;
  255.     rectOvalPtr->activeFillColor = NULL;
  256.     rectOvalPtr->disabledFillColor = NULL;
  257.     rectOvalPtr->fillStipple = None;
  258.     rectOvalPtr->activeFillStipple = None;
  259.     rectOvalPtr->disabledFillStipple = None;
  260.     rectOvalPtr->fillGC = None;
  261.     /*
  262.      * Process the arguments to fill in the item record.
  263.      */
  264.     for (i = 1; i < objc; i++) {
  265. char *arg = Tcl_GetString(objv[i]);
  266. if ((arg[0] == '-') && (arg[1] >= 'a') && (arg[1] <= 'z')) {
  267.     break;
  268. }
  269.     }
  270.     if ((RectOvalCoords(interp, canvas, itemPtr, i, objv) != TCL_OK)) {
  271. goto error;
  272.     }
  273.     if (ConfigureRectOval(interp, canvas, itemPtr, objc-i, objv+i, 0)
  274.     == TCL_OK) {
  275. return TCL_OK;
  276.     }
  277.     error:
  278.     DeleteRectOval(canvas, itemPtr, Tk_Display(Tk_CanvasTkwin(canvas)));
  279.     return TCL_ERROR;
  280. }
  281. /*
  282.  *--------------------------------------------------------------
  283.  *
  284.  * RectOvalCoords --
  285.  *
  286.  * This procedure is invoked to process the "coords" widget
  287.  * command on rectangles and ovals.  See the user documentation
  288.  * for details on what it does.
  289.  *
  290.  * Results:
  291.  * Returns TCL_OK or TCL_ERROR, and sets the interp's result.
  292.  *
  293.  * Side effects:
  294.  * The coordinates for the given item may be changed.
  295.  *
  296.  *--------------------------------------------------------------
  297.  */
  298. static int
  299. RectOvalCoords(interp, canvas, itemPtr, objc, objv)
  300.     Tcl_Interp *interp; /* Used for error reporting. */
  301.     Tk_Canvas canvas; /* Canvas containing item. */
  302.     Tk_Item *itemPtr; /* Item whose coordinates are to be
  303.  * read or modified. */
  304.     int objc; /* Number of coordinates supplied in
  305.  * objv. */
  306.     Tcl_Obj *CONST objv[]; /* Array of coordinates: x1, y1,
  307.  * x2, y2, ... */
  308. {
  309.     RectOvalItem *rectOvalPtr = (RectOvalItem *) itemPtr;
  310.     if (objc == 0) {
  311. Tcl_Obj *obj = Tcl_NewObj();
  312. Tcl_Obj *subobj = Tcl_NewDoubleObj(rectOvalPtr->bbox[0]);
  313. Tcl_ListObjAppendElement(interp, obj, subobj);
  314. subobj = Tcl_NewDoubleObj(rectOvalPtr->bbox[1]);
  315. Tcl_ListObjAppendElement(interp, obj, subobj);
  316. subobj = Tcl_NewDoubleObj(rectOvalPtr->bbox[2]);
  317. Tcl_ListObjAppendElement(interp, obj, subobj);
  318. subobj = Tcl_NewDoubleObj(rectOvalPtr->bbox[3]);
  319. Tcl_ListObjAppendElement(interp, obj, subobj);
  320. Tcl_SetObjResult(interp, obj);
  321.     } else if ((objc == 1)||(objc == 4)) {
  322.   if (objc==1) {
  323.     if (Tcl_ListObjGetElements(interp, objv[0], &objc,
  324.     (Tcl_Obj ***) &objv) != TCL_OK) {
  325. return TCL_ERROR;
  326.     } else if (objc != 4) {
  327. char buf[64 + TCL_INTEGER_SPACE];
  328. sprintf(buf, "wrong # coordinates: expected 0 or 4, got %d", objc);
  329. Tcl_SetResult(interp, buf, TCL_VOLATILE);
  330. return TCL_ERROR;
  331.     }
  332. }
  333. if ((Tk_CanvasGetCoordFromObj(interp, canvas, objv[0],
  334.       &rectOvalPtr->bbox[0]) != TCL_OK)
  335. || (Tk_CanvasGetCoordFromObj(interp, canvas, objv[1],
  336.     &rectOvalPtr->bbox[1]) != TCL_OK)
  337. || (Tk_CanvasGetCoordFromObj(interp, canvas, objv[2],
  338. &rectOvalPtr->bbox[2]) != TCL_OK)
  339. || (Tk_CanvasGetCoordFromObj(interp, canvas, objv[3],
  340. &rectOvalPtr->bbox[3]) != TCL_OK)) {
  341.     return TCL_ERROR;
  342. }
  343. ComputeRectOvalBbox(canvas, rectOvalPtr);
  344.     } else {
  345. char buf[64 + TCL_INTEGER_SPACE];
  346. sprintf(buf, "wrong # coordinates: expected 0 or 4, got %d", objc);
  347. Tcl_SetResult(interp, buf, TCL_VOLATILE);
  348. return TCL_ERROR;
  349.     }
  350.     return TCL_OK;
  351. }
  352. /*
  353.  *--------------------------------------------------------------
  354.  *
  355.  * ConfigureRectOval --
  356.  *
  357.  * This procedure is invoked to configure various aspects
  358.  * of a rectangle or oval item, such as its border and
  359.  * background colors.
  360.  *
  361.  * Results:
  362.  * A standard Tcl result code.  If an error occurs, then
  363.  * an error message is left in the interp's result.
  364.  *
  365.  * Side effects:
  366.  * Configuration information, such as colors and stipple
  367.  * patterns, may be set for itemPtr.
  368.  *
  369.  *--------------------------------------------------------------
  370.  */
  371. static int
  372. ConfigureRectOval(interp, canvas, itemPtr, objc, objv, flags)
  373.     Tcl_Interp *interp; /* Used for error reporting. */
  374.     Tk_Canvas canvas; /* Canvas containing itemPtr. */
  375.     Tk_Item *itemPtr; /* Rectangle item to reconfigure. */
  376.     int objc; /* Number of elements in objv.  */
  377.     Tcl_Obj *CONST objv[]; /* Arguments describing things to configure. */
  378.     int flags; /* Flags to pass to Tk_ConfigureWidget. */
  379. {
  380.     RectOvalItem *rectOvalPtr = (RectOvalItem *) itemPtr;
  381.     XGCValues gcValues;
  382.     GC newGC;
  383.     unsigned long mask;
  384.     Tk_Window tkwin;
  385.     Tk_TSOffset *tsoffset;
  386.     XColor *color;
  387.     Pixmap stipple;
  388.     Tk_State state;
  389.     tkwin = Tk_CanvasTkwin(canvas);
  390.     if (TCL_OK != Tk_ConfigureWidget(interp, tkwin, configSpecs, objc,
  391.     (CONST char **) objv, (char *) rectOvalPtr, flags|TK_CONFIG_OBJS)) {
  392. return TCL_ERROR;
  393.     }
  394.     state = itemPtr->state;
  395.     /*
  396.      * A few of the options require additional processing, such as
  397.      * graphics contexts.
  398.      */
  399.     if (rectOvalPtr->outline.activeWidth > rectOvalPtr->outline.width ||
  400.     rectOvalPtr->outline.activeDash.number != 0 ||
  401.     rectOvalPtr->outline.activeColor != NULL ||
  402.     rectOvalPtr->outline.activeStipple != None ||
  403.     rectOvalPtr->activeFillColor != NULL ||
  404.     rectOvalPtr->activeFillStipple != None) {
  405. itemPtr->redraw_flags |= TK_ITEM_STATE_DEPENDANT;
  406.     } else {
  407. itemPtr->redraw_flags &= ~TK_ITEM_STATE_DEPENDANT;
  408.     }
  409.     tsoffset = &rectOvalPtr->outline.tsoffset;
  410.     flags = tsoffset->flags;
  411.     if (flags & TK_OFFSET_LEFT) {
  412. tsoffset->xoffset = (int) (rectOvalPtr->bbox[0] + 0.5);
  413.     } else if (flags & TK_OFFSET_CENTER) {
  414. tsoffset->xoffset = (int) ((rectOvalPtr->bbox[0]+rectOvalPtr->bbox[2]+1)/2);
  415.     } else if (flags & TK_OFFSET_RIGHT) {
  416. tsoffset->xoffset = (int) (rectOvalPtr->bbox[2] + 0.5);
  417.     }
  418.     if (flags & TK_OFFSET_TOP) {
  419. tsoffset->yoffset = (int) (rectOvalPtr->bbox[1] + 0.5);
  420.     } else if (flags & TK_OFFSET_MIDDLE) {
  421. tsoffset->yoffset = (int) ((rectOvalPtr->bbox[1]+rectOvalPtr->bbox[3]+1)/2);
  422.     } else if (flags & TK_OFFSET_BOTTOM) {
  423. tsoffset->yoffset = (int) (rectOvalPtr->bbox[2] + 0.5);
  424.     }
  425.     /*
  426.      * Configure the outline graphics context.  If mask is non-zero,
  427.      * the gc has changed and must be reallocated, provided that the
  428.      * new settings specify a valid outline (non-zero width and non-NULL
  429.      * color)
  430.      */
  431.     mask = Tk_ConfigOutlineGC(&gcValues, canvas, itemPtr,
  432.      &(rectOvalPtr->outline));
  433.     if (mask && 
  434.     rectOvalPtr->outline.width != 0 && 
  435.     rectOvalPtr->outline.color != NULL) {
  436. gcValues.cap_style = CapProjecting;
  437. mask |= GCCapStyle;
  438. newGC = Tk_GetGC(tkwin, mask, &gcValues);
  439.     } else {
  440. newGC = None;
  441.     }
  442.     if (rectOvalPtr->outline.gc != None) {
  443. Tk_FreeGC(Tk_Display(tkwin), rectOvalPtr->outline.gc);
  444.     }
  445.     rectOvalPtr->outline.gc = newGC;
  446.     if(state == TK_STATE_NULL) {
  447. state = ((TkCanvas *)canvas)->canvas_state;
  448.     }
  449.     if (state==TK_STATE_HIDDEN) {
  450. ComputeRectOvalBbox(canvas, rectOvalPtr);
  451. return TCL_OK;
  452.     }
  453.     color = rectOvalPtr->fillColor;
  454.     stipple = rectOvalPtr->fillStipple;
  455.     if (((TkCanvas *)canvas)->currentItemPtr == itemPtr) {
  456. if (rectOvalPtr->activeFillColor!=NULL) {
  457.     color = rectOvalPtr->activeFillColor;
  458. }
  459. if (rectOvalPtr->activeFillStipple!=None) {
  460.     stipple = rectOvalPtr->activeFillStipple;
  461. }
  462.     } else if (state==TK_STATE_DISABLED) {
  463. if (rectOvalPtr->disabledFillColor!=NULL) {
  464.     color = rectOvalPtr->disabledFillColor;
  465. }
  466. if (rectOvalPtr->disabledFillStipple!=None) {
  467.     stipple = rectOvalPtr->disabledFillStipple;
  468. }
  469.     }
  470.     if (color == NULL) {
  471. newGC = None;
  472.     } else {
  473. gcValues.foreground = color->pixel;
  474. if (stipple != None) {
  475.     gcValues.stipple = stipple;
  476.     gcValues.fill_style = FillStippled;
  477.     mask = GCForeground|GCStipple|GCFillStyle;
  478. } else {
  479.     mask = GCForeground;
  480. }
  481. #ifdef MAC_OSX_TK
  482. /*
  483.  * Mac OS X CG drawing needs access to the outline linewidth
  484.  * even for fills (as linewidth controls antialiasing).
  485.  */
  486. gcValues.line_width = rectOvalPtr->outline.gc != None ?
  487. rectOvalPtr->outline.gc->line_width : 0;
  488. mask |= GCLineWidth;
  489. #endif
  490. newGC = Tk_GetGC(tkwin, mask, &gcValues);
  491.     }
  492.     if (rectOvalPtr->fillGC != None) {
  493. Tk_FreeGC(Tk_Display(tkwin), rectOvalPtr->fillGC);
  494.     }
  495.     rectOvalPtr->fillGC = newGC;
  496.     tsoffset = &rectOvalPtr->tsoffset;
  497.     flags = tsoffset->flags;
  498.     if (flags & TK_OFFSET_LEFT) {
  499. tsoffset->xoffset = (int) (rectOvalPtr->bbox[0] + 0.5);
  500.     } else if (flags & TK_OFFSET_CENTER) {
  501. tsoffset->xoffset = (int) ((rectOvalPtr->bbox[0]+rectOvalPtr->bbox[2]+1)/2);
  502.     } else if (flags & TK_OFFSET_RIGHT) {
  503. tsoffset->xoffset = (int) (rectOvalPtr->bbox[2] + 0.5);
  504.     }
  505.     if (flags & TK_OFFSET_TOP) {
  506. tsoffset->yoffset = (int) (rectOvalPtr->bbox[1] + 0.5);
  507.     } else if (flags & TK_OFFSET_MIDDLE) {
  508. tsoffset->yoffset = (int) ((rectOvalPtr->bbox[1]+rectOvalPtr->bbox[3]+1)/2);
  509.     } else if (flags & TK_OFFSET_BOTTOM) {
  510. tsoffset->yoffset = (int) (rectOvalPtr->bbox[3] + 0.5);
  511.     }
  512.     ComputeRectOvalBbox(canvas, rectOvalPtr);
  513.     return TCL_OK;
  514. }
  515. /*
  516.  *--------------------------------------------------------------
  517.  *
  518.  * DeleteRectOval --
  519.  *
  520.  * This procedure is called to clean up the data structure
  521.  * associated with a rectangle or oval item.
  522.  *
  523.  * Results:
  524.  * None.
  525.  *
  526.  * Side effects:
  527.  * Resources associated with itemPtr are released.
  528.  *
  529.  *--------------------------------------------------------------
  530.  */
  531. static void
  532. DeleteRectOval(canvas, itemPtr, display)
  533.     Tk_Canvas canvas; /* Info about overall widget. */
  534.     Tk_Item *itemPtr; /* Item that is being deleted. */
  535.     Display *display; /* Display containing window for
  536.  * canvas. */
  537. {
  538.     RectOvalItem *rectOvalPtr = (RectOvalItem *) itemPtr;
  539.     Tk_DeleteOutline(display, &(rectOvalPtr->outline));
  540.     if (rectOvalPtr->fillColor != NULL) {
  541. Tk_FreeColor(rectOvalPtr->fillColor);
  542.     }
  543.     if (rectOvalPtr->activeFillColor != NULL) {
  544. Tk_FreeColor(rectOvalPtr->activeFillColor);
  545.     }
  546.     if (rectOvalPtr->disabledFillColor != NULL) {
  547. Tk_FreeColor(rectOvalPtr->disabledFillColor);
  548.     }
  549.     if (rectOvalPtr->fillStipple != None) {
  550. Tk_FreeBitmap(display, rectOvalPtr->fillStipple);
  551.     }
  552.     if (rectOvalPtr->activeFillStipple != None) {
  553. Tk_FreeBitmap(display, rectOvalPtr->activeFillStipple);
  554.     }
  555.     if (rectOvalPtr->disabledFillStipple != None) {
  556. Tk_FreeBitmap(display, rectOvalPtr->disabledFillStipple);
  557.     }
  558.     if (rectOvalPtr->fillGC != None) {
  559. Tk_FreeGC(display, rectOvalPtr->fillGC);
  560.     }
  561. }
  562. /*
  563.  *--------------------------------------------------------------
  564.  *
  565.  * ComputeRectOvalBbox --
  566.  *
  567.  * This procedure is invoked to compute the bounding box of
  568.  * all the pixels that may be drawn as part of a rectangle
  569.  * or oval.
  570.  *
  571.  * Results:
  572.  * None.
  573.  *
  574.  * Side effects:
  575.  * The fields x1, y1, x2, and y2 are updated in the header
  576.  * for itemPtr.
  577.  *
  578.  *--------------------------------------------------------------
  579.  */
  580. /* ARGSUSED */
  581. static void
  582. ComputeRectOvalBbox(canvas, rectOvalPtr)
  583.     Tk_Canvas canvas; /* Canvas that contains item. */
  584.     RectOvalItem *rectOvalPtr; /* Item whose bbox is to be
  585.  * recomputed. */
  586. {
  587.     int bloat, tmp;
  588.     double dtmp, width;
  589.     Tk_State state = rectOvalPtr->header.state;
  590.     if(state == TK_STATE_NULL) {
  591. state = ((TkCanvas *)canvas)->canvas_state;
  592.     }
  593.     width = rectOvalPtr->outline.width;
  594.     if (state==TK_STATE_HIDDEN) {
  595. rectOvalPtr->header.x1 = rectOvalPtr->header.y1 =
  596. rectOvalPtr->header.x2 = rectOvalPtr->header.y2 = -1;
  597. return;
  598.     }
  599.     if (((TkCanvas *)canvas)->currentItemPtr == (Tk_Item *)rectOvalPtr) {
  600. if (rectOvalPtr->outline.activeWidth>width) {
  601.     width = rectOvalPtr->outline.activeWidth;
  602. }
  603.     } else if (state==TK_STATE_DISABLED) {
  604. if (rectOvalPtr->outline.disabledWidth>0) {
  605.     width = rectOvalPtr->outline.disabledWidth;
  606. }
  607.     }
  608.     /*
  609.      * Make sure that the first coordinates are the lowest ones.
  610.      */
  611.     if (rectOvalPtr->bbox[1] > rectOvalPtr->bbox[3]) {
  612. double tmp;
  613. tmp = rectOvalPtr->bbox[3];
  614. rectOvalPtr->bbox[3] = rectOvalPtr->bbox[1];
  615. rectOvalPtr->bbox[1] = tmp;
  616.     }
  617.     if (rectOvalPtr->bbox[0] > rectOvalPtr->bbox[2]) {
  618. double tmp;
  619. tmp = rectOvalPtr->bbox[2];
  620. rectOvalPtr->bbox[2] = rectOvalPtr->bbox[0];
  621. rectOvalPtr->bbox[0] = tmp;
  622.     }
  623.     if (rectOvalPtr->outline.gc == None) {
  624. /*
  625.  * The Win32 switch was added for 8.3 to solve a problem
  626.  * with ovals leaving traces on bottom and right of 1 pixel.
  627.  * This may not be the correct place to solve it, but it works.
  628.  */
  629. #ifdef __WIN32__
  630. bloat = 1;
  631. #else
  632. bloat = 0;
  633. #endif
  634.     } else {
  635. #ifdef MAC_OSX_TK
  636. /* Mac OS X CoreGraphics needs correct rounding here 
  637.  * otherwise it will draw outside the bounding box.
  638.  * Probably correct on other platforms as well? */
  639. bloat = (int) (width+1.5)/2;
  640. #else
  641. bloat = (int) (width+1)/2;
  642. #endif
  643.     }
  644.     /*
  645.      * Special note:  the rectangle is always drawn at least 1x1 in
  646.      * size, so round up the upper coordinates to be at least 1 unit
  647.      * greater than the lower ones.
  648.      */
  649.     tmp = (int) ((rectOvalPtr->bbox[0] >= 0) ? rectOvalPtr->bbox[0] + .5
  650.     : rectOvalPtr->bbox[0] - .5);
  651.     rectOvalPtr->header.x1 = tmp - bloat;
  652.     tmp = (int) ((rectOvalPtr->bbox[1] >= 0) ? rectOvalPtr->bbox[1] + .5
  653.     : rectOvalPtr->bbox[1] - .5);
  654.     rectOvalPtr->header.y1 = tmp - bloat;
  655.     dtmp = rectOvalPtr->bbox[2];
  656.     if (dtmp < (rectOvalPtr->bbox[0] + 1)) {
  657. dtmp = rectOvalPtr->bbox[0] + 1;
  658.     }
  659.     tmp = (int) ((dtmp >= 0) ? dtmp + .5 : dtmp - .5);
  660.     rectOvalPtr->header.x2 = tmp + bloat;
  661.     dtmp = rectOvalPtr->bbox[3];
  662.     if (dtmp < (rectOvalPtr->bbox[1] + 1)) {
  663. dtmp = rectOvalPtr->bbox[1] + 1;
  664.     }
  665.     tmp = (int) ((dtmp >= 0) ? dtmp + .5 : dtmp - .5);
  666.     rectOvalPtr->header.y2 = tmp + bloat;
  667. }
  668. /*
  669.  *--------------------------------------------------------------
  670.  *
  671.  * DisplayRectOval --
  672.  *
  673.  * This procedure is invoked to draw a rectangle or oval
  674.  * item in a given drawable.
  675.  *
  676.  * Results:
  677.  * None.
  678.  *
  679.  * Side effects:
  680.  * ItemPtr is drawn in drawable using the transformation
  681.  * information in canvas.
  682.  *
  683.  *--------------------------------------------------------------
  684.  */
  685. static void
  686. DisplayRectOval(canvas, itemPtr, display, drawable, x, y, width, height)
  687.     Tk_Canvas canvas; /* Canvas that contains item. */
  688.     Tk_Item *itemPtr; /* Item to be displayed. */
  689.     Display *display; /* Display on which to draw item. */
  690.     Drawable drawable; /* Pixmap or window in which to draw
  691.  * item. */
  692.     int x, y, width, height; /* Describes region of canvas that
  693.  * must be redisplayed (not used). */
  694. {
  695.     RectOvalItem *rectOvalPtr = (RectOvalItem *) itemPtr;
  696.     short x1, y1, x2, y2;
  697.     Pixmap fillStipple;
  698.     Tk_State state = itemPtr->state;
  699.     /*
  700.      * Compute the screen coordinates of the bounding box for the item.
  701.      * Make sure that the bbox is at least one pixel large, since some
  702.      * X servers will die if it isn't.
  703.      */
  704.     Tk_CanvasDrawableCoords(canvas, rectOvalPtr->bbox[0], rectOvalPtr->bbox[1],
  705.     &x1, &y1);
  706.     Tk_CanvasDrawableCoords(canvas, rectOvalPtr->bbox[2], rectOvalPtr->bbox[3],
  707.     &x2, &y2);
  708.     if (x2 <= x1) {
  709. x2 = x1+1;
  710.     }
  711.     if (y2 <= y1) {
  712. y2 = y1+1;
  713.     }
  714.     /*
  715.      * Display filled part first (if wanted), then outline.  If we're
  716.      * stippling, then modify the stipple offset in the GC.  Be sure to
  717.      * reset the offset when done, since the GC is supposed to be
  718.      * read-only.
  719.      */
  720.     if(state == TK_STATE_NULL) {
  721. state = ((TkCanvas *)canvas)->canvas_state;
  722.     }
  723.     fillStipple = rectOvalPtr->fillStipple;
  724.     if (((TkCanvas *)canvas)->currentItemPtr == (Tk_Item *)rectOvalPtr) {
  725. if (rectOvalPtr->activeFillStipple!=None) {
  726.     fillStipple = rectOvalPtr->activeFillStipple;
  727. }
  728.     } else if (state==TK_STATE_DISABLED) {
  729. if (rectOvalPtr->disabledFillStipple!=None) {
  730.     fillStipple = rectOvalPtr->disabledFillStipple;
  731. }
  732.     }
  733.     if (rectOvalPtr->fillGC != None) {
  734. if (fillStipple != None) {
  735.     Tk_TSOffset *tsoffset;
  736.     int w=0; int h=0;
  737.     tsoffset = &rectOvalPtr->tsoffset;
  738.     if (tsoffset) {
  739. int flags = tsoffset->flags;
  740. if (flags & (TK_OFFSET_CENTER|TK_OFFSET_MIDDLE)) {
  741.     Tk_SizeOfBitmap(display, fillStipple, &w, &h);
  742.     if (flags & TK_OFFSET_CENTER) {
  743. w /= 2;
  744.     } else {
  745. w = 0;
  746.     }
  747.     if (flags & TK_OFFSET_MIDDLE) {
  748. h /= 2;
  749.     } else {
  750. h = 0;
  751.     }
  752. }
  753. tsoffset->xoffset -= w;
  754. tsoffset->yoffset -= h;
  755.     }
  756.     Tk_CanvasSetOffset(canvas, rectOvalPtr->fillGC, tsoffset);
  757.     if (tsoffset) {
  758. tsoffset->xoffset += w;
  759. tsoffset->yoffset += h;
  760.     }
  761. }
  762. if (rectOvalPtr->header.typePtr == &tkRectangleType) {
  763.     XFillRectangle(display, drawable, rectOvalPtr->fillGC,
  764.     x1, y1, (unsigned int) (x2-x1), (unsigned int) (y2-y1));
  765. } else {
  766.     XFillArc(display, drawable, rectOvalPtr->fillGC,
  767.     x1, y1, (unsigned) (x2-x1), (unsigned) (y2-y1),
  768.     0, 360*64);
  769. }
  770. if (fillStipple != None) {
  771.     XSetTSOrigin(display, rectOvalPtr->fillGC, 0, 0);
  772. }
  773.     }
  774.     if (rectOvalPtr->outline.gc != None) {
  775. Tk_ChangeOutlineGC(canvas, itemPtr, &(rectOvalPtr->outline));
  776. if (rectOvalPtr->header.typePtr == &tkRectangleType) {
  777.     XDrawRectangle(display, drawable, rectOvalPtr->outline.gc,
  778.     x1, y1, (unsigned) (x2-x1), (unsigned) (y2-y1));
  779. } else {
  780.     XDrawArc(display, drawable, rectOvalPtr->outline.gc,
  781.     x1, y1, (unsigned) (x2-x1), (unsigned) (y2-y1), 0, 360*64);
  782. }
  783. Tk_ResetOutlineGC(canvas, itemPtr, &(rectOvalPtr->outline));
  784.     }
  785. }
  786. /*
  787.  *--------------------------------------------------------------
  788.  *
  789.  * RectToPoint --
  790.  *
  791.  * Computes the distance from a given point to a given
  792.  * rectangle, in canvas units.
  793.  *
  794.  * Results:
  795.  * The return value is 0 if the point whose x and y coordinates
  796.  * are coordPtr[0] and coordPtr[1] is inside the rectangle.  If the
  797.  * point isn't inside the rectangle then the return value is the
  798.  * distance from the point to the rectangle.  If itemPtr is filled,
  799.  * then anywhere in the interior is considered "inside"; if
  800.  * itemPtr isn't filled, then "inside" means only the area
  801.  * occupied by the outline.
  802.  *
  803.  * Side effects:
  804.  * None.
  805.  *
  806.  *--------------------------------------------------------------
  807.  */
  808. /* ARGSUSED */
  809. static double
  810. RectToPoint(canvas, itemPtr, pointPtr)
  811.     Tk_Canvas canvas; /* Canvas containing item. */
  812.     Tk_Item *itemPtr; /* Item to check against point. */
  813.     double *pointPtr; /* Pointer to x and y coordinates. */
  814. {
  815.     RectOvalItem *rectPtr = (RectOvalItem *) itemPtr;
  816.     double xDiff, yDiff, x1, y1, x2, y2, inc, tmp;
  817.     double width;
  818.     Tk_State state = itemPtr->state;
  819.     if(state == TK_STATE_NULL) {
  820. state = ((TkCanvas *)canvas)->canvas_state;
  821.     }
  822.     width = rectPtr->outline.width;
  823.     if (((TkCanvas *)canvas)->currentItemPtr == itemPtr) {
  824. if (rectPtr->outline.activeWidth>width) {
  825.     width = rectPtr->outline.activeWidth;
  826. }
  827.     } else if (state==TK_STATE_DISABLED) {
  828. if (rectPtr->outline.disabledWidth>0) {
  829.     width = rectPtr->outline.disabledWidth;
  830. }
  831.     }
  832.     /*
  833.      * Generate a new larger rectangle that includes the border
  834.      * width, if there is one.
  835.      */
  836.     x1 = rectPtr->bbox[0];
  837.     y1 = rectPtr->bbox[1];
  838.     x2 = rectPtr->bbox[2];
  839.     y2 = rectPtr->bbox[3];
  840.     if (rectPtr->outline.gc != None) {
  841. inc = width/2.0;
  842. x1 -= inc;
  843. y1 -= inc;
  844. x2 += inc;
  845. y2 += inc;
  846.     }
  847.     /*
  848.      * If the point is inside the rectangle, handle specially:
  849.      * distance is 0 if rectangle is filled, otherwise compute
  850.      * distance to nearest edge of rectangle and subtract width
  851.      * of edge.
  852.      */
  853.     if ((pointPtr[0] >= x1) && (pointPtr[0] < x2)
  854. && (pointPtr[1] >= y1) && (pointPtr[1] < y2)) {
  855. if ((rectPtr->fillGC != None) || (rectPtr->outline.gc == None)) {
  856.     return 0.0;
  857. }
  858. xDiff = pointPtr[0] - x1;
  859. tmp = x2 - pointPtr[0];
  860. if (tmp < xDiff) {
  861.     xDiff = tmp;
  862. }
  863. yDiff = pointPtr[1] - y1;
  864. tmp = y2 - pointPtr[1];
  865. if (tmp < yDiff) {
  866.     yDiff = tmp;
  867. }
  868. if (yDiff < xDiff) {
  869.     xDiff = yDiff;
  870. }
  871. xDiff -= width;
  872. if (xDiff < 0.0) {
  873.     return 0.0;
  874. }
  875. return xDiff;
  876.     }
  877.     /*
  878.      * Point is outside rectangle.
  879.      */
  880.     if (pointPtr[0] < x1) {
  881. xDiff = x1 - pointPtr[0];
  882.     } else if (pointPtr[0] > x2)  {
  883. xDiff = pointPtr[0] - x2;
  884.     } else {
  885. xDiff = 0;
  886.     }
  887.     if (pointPtr[1] < y1) {
  888. yDiff = y1 - pointPtr[1];
  889.     } else if (pointPtr[1] > y2)  {
  890. yDiff = pointPtr[1] - y2;
  891.     } else {
  892. yDiff = 0;
  893.     }
  894.     return hypot(xDiff, yDiff);
  895. }
  896. /*
  897.  *--------------------------------------------------------------
  898.  *
  899.  * OvalToPoint --
  900.  *
  901.  * Computes the distance from a given point to a given
  902.  * oval, in canvas units.
  903.  *
  904.  * Results:
  905.  * The return value is 0 if the point whose x and y coordinates
  906.  * are coordPtr[0] and coordPtr[1] is inside the oval.  If the
  907.  * point isn't inside the oval then the return value is the
  908.  * distance from the point to the oval.  If itemPtr is filled,
  909.  * then anywhere in the interior is considered "inside"; if
  910.  * itemPtr isn't filled, then "inside" means only the area
  911.  * occupied by the outline.
  912.  *
  913.  * Side effects:
  914.  * None.
  915.  *
  916.  *--------------------------------------------------------------
  917.  */
  918. /* ARGSUSED */
  919. static double
  920. OvalToPoint(canvas, itemPtr, pointPtr)
  921.     Tk_Canvas canvas; /* Canvas containing item. */
  922.     Tk_Item *itemPtr; /* Item to check against point. */
  923.     double *pointPtr; /* Pointer to x and y coordinates. */
  924. {
  925.     RectOvalItem *ovalPtr = (RectOvalItem *) itemPtr;
  926.     double width;
  927.     int filled;
  928.     Tk_State state = itemPtr->state;
  929.     if(state == TK_STATE_NULL) {
  930. state = ((TkCanvas *)canvas)->canvas_state;
  931.     }
  932.     width = (double) ovalPtr->outline.width;
  933.     if (((TkCanvas *)canvas)->currentItemPtr == itemPtr) {
  934. if (ovalPtr->outline.activeWidth>width) {
  935.     width = (double) ovalPtr->outline.activeWidth;
  936. }
  937.     } else if (state==TK_STATE_DISABLED) {
  938. if (ovalPtr->outline.disabledWidth>0) {
  939.     width = (double) ovalPtr->outline.disabledWidth;
  940. }
  941.     }
  942.     filled = ovalPtr->fillGC != None;
  943.     if (ovalPtr->outline.gc == None) {
  944. width = 0.0;
  945. filled = 1;
  946.     }
  947.     return TkOvalToPoint(ovalPtr->bbox, width, filled, pointPtr);
  948. }
  949. /*
  950.  *--------------------------------------------------------------
  951.  *
  952.  * RectToArea --
  953.  *
  954.  * This procedure is called to determine whether an item
  955.  * lies entirely inside, entirely outside, or overlapping
  956.  * a given rectangle.
  957.  *
  958.  * Results:
  959.  * -1 is returned if the item is entirely outside the area
  960.  * given by rectPtr, 0 if it overlaps, and 1 if it is entirely
  961.  * inside the given area.
  962.  *
  963.  * Side effects:
  964.  * None.
  965.  *
  966.  *--------------------------------------------------------------
  967.  */
  968. /* ARGSUSED */
  969. static int
  970. RectToArea(canvas, itemPtr, areaPtr)
  971.     Tk_Canvas canvas; /* Canvas containing item. */
  972.     Tk_Item *itemPtr; /* Item to check against rectangle. */
  973.     double *areaPtr; /* Pointer to array of four coordinates
  974.  * (x1, y1, x2, y2) describing rectangular
  975.  * area.  */
  976. {
  977.     RectOvalItem *rectPtr = (RectOvalItem *) itemPtr;
  978.     double halfWidth;
  979.     double width;
  980.     Tk_State state = itemPtr->state;
  981.     if(state == TK_STATE_NULL) {
  982. state = ((TkCanvas *)canvas)->canvas_state;
  983.     }
  984.     width = rectPtr->outline.width;
  985.     if (((TkCanvas *)canvas)->currentItemPtr == itemPtr) {
  986. if (rectPtr->outline.activeWidth>width) {
  987.     width = rectPtr->outline.activeWidth;
  988. }
  989.     } else if (state==TK_STATE_DISABLED) {
  990. if (rectPtr->outline.disabledWidth>0) {
  991.     width = rectPtr->outline.disabledWidth;
  992. }
  993.     }
  994.     halfWidth = width/2.0;
  995.     if (rectPtr->outline.gc == None) {
  996. halfWidth = 0.0;
  997.     }
  998.     if ((areaPtr[2] <= (rectPtr->bbox[0] - halfWidth))
  999.     || (areaPtr[0] >= (rectPtr->bbox[2] + halfWidth))
  1000.     || (areaPtr[3] <= (rectPtr->bbox[1] - halfWidth))
  1001.     || (areaPtr[1] >= (rectPtr->bbox[3] + halfWidth))) {
  1002. return -1;
  1003.     }
  1004.     if ((rectPtr->fillGC == None) && (rectPtr->outline.gc != None)
  1005.     && (areaPtr[0] >= (rectPtr->bbox[0] + halfWidth))
  1006.     && (areaPtr[1] >= (rectPtr->bbox[1] + halfWidth))
  1007.     && (areaPtr[2] <= (rectPtr->bbox[2] - halfWidth))
  1008.     && (areaPtr[3] <= (rectPtr->bbox[3] - halfWidth))) {
  1009. return -1;
  1010.     }
  1011.     if ((areaPtr[0] <= (rectPtr->bbox[0] - halfWidth))
  1012.     && (areaPtr[1] <= (rectPtr->bbox[1] - halfWidth))
  1013.     && (areaPtr[2] >= (rectPtr->bbox[2] + halfWidth))
  1014.     && (areaPtr[3] >= (rectPtr->bbox[3] + halfWidth))) {
  1015. return 1;
  1016.     }
  1017.     return 0;
  1018. }
  1019. /*
  1020.  *--------------------------------------------------------------
  1021.  *
  1022.  * OvalToArea --
  1023.  *
  1024.  * This procedure is called to determine whether an item
  1025.  * lies entirely inside, entirely outside, or overlapping
  1026.  * a given rectangular area.
  1027.  *
  1028.  * Results:
  1029.  * -1 is returned if the item is entirely outside the area
  1030.  * given by rectPtr, 0 if it overlaps, and 1 if it is entirely
  1031.  * inside the given area.
  1032.  *
  1033.  * Side effects:
  1034.  * None.
  1035.  *
  1036.  *--------------------------------------------------------------
  1037.  */
  1038. /* ARGSUSED */
  1039. static int
  1040. OvalToArea(canvas, itemPtr, areaPtr)
  1041.     Tk_Canvas canvas; /* Canvas containing item. */
  1042.     Tk_Item *itemPtr; /* Item to check against oval. */
  1043.     double *areaPtr; /* Pointer to array of four coordinates
  1044.  * (x1, y1, x2, y2) describing rectangular
  1045.  * area.  */
  1046. {
  1047.     RectOvalItem *ovalPtr = (RectOvalItem *) itemPtr;
  1048.     double oval[4], halfWidth;
  1049.     int result;
  1050.     double width;
  1051.     Tk_State state = itemPtr->state;
  1052.     if(state == TK_STATE_NULL) {
  1053. state = ((TkCanvas *)canvas)->canvas_state;
  1054.     }
  1055.     width = ovalPtr->outline.width;
  1056.     if (((TkCanvas *)canvas)->currentItemPtr == itemPtr) {
  1057. if (ovalPtr->outline.activeWidth>width) {
  1058.     width = ovalPtr->outline.activeWidth;
  1059. }
  1060.     } else if (state==TK_STATE_DISABLED) {
  1061. if (ovalPtr->outline.disabledWidth>0) {
  1062.     width = ovalPtr->outline.disabledWidth;
  1063. }
  1064.     }
  1065.     /*
  1066.      * Expand the oval to include the width of the outline, if any.
  1067.      */
  1068.     halfWidth = width/2.0;
  1069.     if (ovalPtr->outline.gc == None) {
  1070. halfWidth = 0.0;
  1071.     }
  1072.     oval[0] = ovalPtr->bbox[0] - halfWidth;
  1073.     oval[1] = ovalPtr->bbox[1] - halfWidth;
  1074.     oval[2] = ovalPtr->bbox[2] + halfWidth;
  1075.     oval[3] = ovalPtr->bbox[3] + halfWidth;
  1076.     result = TkOvalToArea(oval, areaPtr);
  1077.     /*
  1078.      * If the rectangle appears to overlap the oval and the oval
  1079.      * isn't filled, do one more check to see if perhaps all four
  1080.      * of the rectangle's corners are totally inside the oval's
  1081.      * unfilled center, in which case we should return "outside".
  1082.      */
  1083.     if ((result == 0) && (ovalPtr->outline.gc != None)
  1084.     && (ovalPtr->fillGC == None)) {
  1085. double centerX, centerY, height;
  1086. double xDelta1, yDelta1, xDelta2, yDelta2;
  1087. centerX = (ovalPtr->bbox[0] + ovalPtr->bbox[2])/2.0;
  1088. centerY = (ovalPtr->bbox[1] + ovalPtr->bbox[3])/2.0;
  1089. width = (ovalPtr->bbox[2] - ovalPtr->bbox[0])/2.0 - halfWidth;
  1090. height = (ovalPtr->bbox[3] - ovalPtr->bbox[1])/2.0 - halfWidth;
  1091. xDelta1 = (areaPtr[0] - centerX)/width;
  1092. xDelta1 *= xDelta1;
  1093. yDelta1 = (areaPtr[1] - centerY)/height;
  1094. yDelta1 *= yDelta1;
  1095. xDelta2 = (areaPtr[2] - centerX)/width;
  1096. xDelta2 *= xDelta2;
  1097. yDelta2 = (areaPtr[3] - centerY)/height;
  1098. yDelta2 *= yDelta2;
  1099. if (((xDelta1 + yDelta1) < 1.0)
  1100. && ((xDelta1 + yDelta2) < 1.0)
  1101. && ((xDelta2 + yDelta1) < 1.0)
  1102. && ((xDelta2 + yDelta2) < 1.0)) {
  1103.     return -1;
  1104. }
  1105.     }
  1106.     return result;
  1107. }
  1108. /*
  1109.  *--------------------------------------------------------------
  1110.  *
  1111.  * ScaleRectOval --
  1112.  *
  1113.  * This procedure is invoked to rescale a rectangle or oval
  1114.  * item.
  1115.  *
  1116.  * Results:
  1117.  * None.
  1118.  *
  1119.  * Side effects:
  1120.  * The rectangle or oval referred to by itemPtr is rescaled
  1121.  * so that the following transformation is applied to all
  1122.  * point coordinates:
  1123.  * x' = originX + scaleX*(x-originX)
  1124.  * y' = originY + scaleY*(y-originY)
  1125.  *
  1126.  *--------------------------------------------------------------
  1127.  */
  1128. static void
  1129. ScaleRectOval(canvas, itemPtr, originX, originY, scaleX, scaleY)
  1130.     Tk_Canvas canvas; /* Canvas containing rectangle. */
  1131.     Tk_Item *itemPtr; /* Rectangle to be scaled. */
  1132.     double originX, originY; /* Origin about which to scale rect. */
  1133.     double scaleX; /* Amount to scale in X direction. */
  1134.     double scaleY; /* Amount to scale in Y direction. */
  1135. {
  1136.     RectOvalItem *rectOvalPtr = (RectOvalItem *) itemPtr;
  1137.     rectOvalPtr->bbox[0] = originX + scaleX*(rectOvalPtr->bbox[0] - originX);
  1138.     rectOvalPtr->bbox[1] = originY + scaleY*(rectOvalPtr->bbox[1] - originY);
  1139.     rectOvalPtr->bbox[2] = originX + scaleX*(rectOvalPtr->bbox[2] - originX);
  1140.     rectOvalPtr->bbox[3] = originY + scaleY*(rectOvalPtr->bbox[3] - originY);
  1141.     ComputeRectOvalBbox(canvas, rectOvalPtr);
  1142. }
  1143. /*
  1144.  *--------------------------------------------------------------
  1145.  *
  1146.  * TranslateRectOval --
  1147.  *
  1148.  * This procedure is called to move a rectangle or oval by a
  1149.  * given amount.
  1150.  *
  1151.  * Results:
  1152.  * None.
  1153.  *
  1154.  * Side effects:
  1155.  * The position of the rectangle or oval is offset by
  1156.  * (xDelta, yDelta), and the bounding box is updated in the
  1157.  * generic part of the item structure.
  1158.  *
  1159.  *--------------------------------------------------------------
  1160.  */
  1161. static void
  1162. TranslateRectOval(canvas, itemPtr, deltaX, deltaY)
  1163.     Tk_Canvas canvas; /* Canvas containing item. */
  1164.     Tk_Item *itemPtr; /* Item that is being moved. */
  1165.     double deltaX, deltaY; /* Amount by which item is to be
  1166.  * moved. */
  1167. {
  1168.     RectOvalItem *rectOvalPtr = (RectOvalItem *) itemPtr;
  1169.     rectOvalPtr->bbox[0] += deltaX;
  1170.     rectOvalPtr->bbox[1] += deltaY;
  1171.     rectOvalPtr->bbox[2] += deltaX;
  1172.     rectOvalPtr->bbox[3] += deltaY;
  1173.     ComputeRectOvalBbox(canvas, rectOvalPtr);
  1174. }
  1175. /*
  1176.  *--------------------------------------------------------------
  1177.  *
  1178.  * RectOvalToPostscript --
  1179.  *
  1180.  * This procedure is called to generate Postscript for
  1181.  * rectangle and oval items.
  1182.  *
  1183.  * Results:
  1184.  * The return value is a standard Tcl result.  If an error
  1185.  * occurs in generating Postscript then an error message is
  1186.  * left in the interp's result, replacing whatever used to be there.
  1187.  * If no error occurs, then Postscript for the rectangle is
  1188.  * appended to the result.
  1189.  *
  1190.  * Side effects:
  1191.  * None.
  1192.  *
  1193.  *--------------------------------------------------------------
  1194.  */
  1195. static int
  1196. RectOvalToPostscript(interp, canvas, itemPtr, prepass)
  1197.     Tcl_Interp *interp; /* Interpreter for error reporting. */
  1198.     Tk_Canvas canvas; /* Information about overall canvas. */
  1199.     Tk_Item *itemPtr; /* Item for which Postscript is
  1200.  * wanted. */
  1201.     int prepass; /* 1 means this is a prepass to
  1202.  * collect font information;  0 means
  1203.  * final Postscript is being created. */
  1204. {
  1205.     char pathCmd[500];
  1206.     RectOvalItem *rectOvalPtr = (RectOvalItem *) itemPtr;
  1207.     double y1, y2;
  1208.     XColor *color;
  1209.     XColor *fillColor;
  1210.     Pixmap fillStipple;
  1211.     Tk_State state = itemPtr->state;
  1212.     y1 = Tk_CanvasPsY(canvas, rectOvalPtr->bbox[1]);
  1213.     y2 = Tk_CanvasPsY(canvas, rectOvalPtr->bbox[3]);
  1214.     /*
  1215.      * Generate a string that creates a path for the rectangle or oval.
  1216.      * This is the only part of the procedure's code that is type-
  1217.      * specific.
  1218.      */
  1219.     if (rectOvalPtr->header.typePtr == &tkRectangleType) {
  1220. sprintf(pathCmd, "%.15g %.15g moveto %.15g 0 rlineto 0 %.15g rlineto %.15g 0 rlineto closepathn",
  1221. rectOvalPtr->bbox[0], y1,
  1222. rectOvalPtr->bbox[2]-rectOvalPtr->bbox[0], y2-y1,
  1223. rectOvalPtr->bbox[0]-rectOvalPtr->bbox[2]);
  1224.     } else {
  1225. sprintf(pathCmd, "matrix currentmatrixn%.15g %.15g translate %.15g %.15g scale 1 0 moveto 0 0 1 0 360 arcnsetmatrixn",
  1226. (rectOvalPtr->bbox[0] + rectOvalPtr->bbox[2])/2, (y1 + y2)/2,
  1227. (rectOvalPtr->bbox[2] - rectOvalPtr->bbox[0])/2, (y1 - y2)/2);
  1228.     }
  1229.     if(state == TK_STATE_NULL) {
  1230. state = ((TkCanvas *)canvas)->canvas_state;
  1231.     }
  1232.     color = rectOvalPtr->outline.color;
  1233.     fillColor = rectOvalPtr->fillColor;
  1234.     fillStipple = rectOvalPtr->fillStipple;
  1235.     if (((TkCanvas *)canvas)->currentItemPtr == itemPtr) {
  1236. if (rectOvalPtr->outline.activeColor!=NULL) {
  1237.     color = rectOvalPtr->outline.activeColor;
  1238. }
  1239. if (rectOvalPtr->activeFillColor!=NULL) {
  1240.     fillColor = rectOvalPtr->activeFillColor;
  1241. }
  1242. if (rectOvalPtr->activeFillStipple!=None) {
  1243.     fillStipple = rectOvalPtr->activeFillStipple;
  1244. }
  1245.     } else if (state==TK_STATE_DISABLED) {
  1246. if (rectOvalPtr->outline.disabledColor!=NULL) {
  1247.     color = rectOvalPtr->outline.disabledColor;
  1248. }
  1249. if (rectOvalPtr->disabledFillColor!=NULL) {
  1250.     fillColor = rectOvalPtr->disabledFillColor;
  1251. }
  1252. if (rectOvalPtr->disabledFillStipple!=None) {
  1253.     fillStipple = rectOvalPtr->disabledFillStipple;
  1254. }
  1255.     }
  1256.     /*
  1257.      * First draw the filled area of the rectangle.
  1258.      */
  1259.     if (fillColor != NULL) {
  1260. Tcl_AppendResult(interp, pathCmd, (char *) NULL);
  1261. if (Tk_CanvasPsColor(interp, canvas, fillColor)
  1262. != TCL_OK) {
  1263.     return TCL_ERROR;
  1264. }
  1265. if (fillStipple != None) {
  1266.     Tcl_AppendResult(interp, "clip ", (char *) NULL);
  1267.     if (Tk_CanvasPsStipple(interp, canvas, fillStipple)
  1268.     != TCL_OK) {
  1269. return TCL_ERROR;
  1270.     }
  1271.     if (color != NULL) {
  1272. Tcl_AppendResult(interp, "grestore gsaven", (char *) NULL);
  1273.     }
  1274. } else {
  1275.     Tcl_AppendResult(interp, "filln", (char *) NULL);
  1276. }
  1277.     }
  1278.     /*
  1279.      * Now draw the outline, if there is one.
  1280.      */
  1281.     if (color != NULL) {
  1282. Tcl_AppendResult(interp, pathCmd, "0 setlinejoin 2 setlinecapn",
  1283. (char *) NULL);
  1284. if (Tk_CanvasPsOutline(canvas, itemPtr,
  1285. &(rectOvalPtr->outline))!= TCL_OK) {
  1286.     return TCL_ERROR;
  1287. }
  1288.     }
  1289.     return TCL_OK;
  1290. }