• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/tcl-105/tk84/tk/generic/

Lines Matching refs:header

25     Tk_Item header;		/* Generic stuff that's the same for all
175 Tk_Item *itemPtr; /* Record to hold new item; header
487 * The fields x1, y1, x2, and y2 are updated in the header
503 Tk_State state = bmapPtr->header.state;
523 bmapPtr->header.x1 = bmapPtr->header.x2 = x;
524 bmapPtr->header.y1 = bmapPtr->header.y2 = y;
568 * Store the information in the item header.
571 bmapPtr->header.x1 = x;
572 bmapPtr->header.y1 = y;
573 bmapPtr->header.x2 = x + width;
574 bmapPtr->header.y2 = y + height;
633 if (x > bmapPtr->header.x1) {
634 bmapX = x - bmapPtr->header.x1;
635 bmapWidth = bmapPtr->header.x2 - x;
638 if ((x+width) < bmapPtr->header.x2) {
639 bmapWidth = x + width - bmapPtr->header.x1;
641 bmapWidth = bmapPtr->header.x2 - bmapPtr->header.x1;
644 if (y > bmapPtr->header.y1) {
645 bmapY = y - bmapPtr->header.y1;
646 bmapHeight = bmapPtr->header.y2 - y;
649 if ((y+height) < bmapPtr->header.y2) {
650 bmapHeight = y + height - bmapPtr->header.y1;
652 bmapHeight = bmapPtr->header.y2 - bmapPtr->header.y1;
656 (double) (bmapPtr->header.x1 + bmapX),
657 (double) (bmapPtr->header.y1 + bmapY),
706 x1 = bmapPtr->header.x1;
707 y1 = bmapPtr->header.y1;
708 x2 = bmapPtr->header.x2;
709 y2 = bmapPtr->header.y2;
766 if ((rectPtr[2] <= bmapPtr->header.x1)
767 || (rectPtr[0] >= bmapPtr->header.x2)
768 || (rectPtr[3] <= bmapPtr->header.y1)
769 || (rectPtr[1] >= bmapPtr->header.y2)) {
772 if ((rectPtr[0] <= bmapPtr->header.x1)
773 && (rectPtr[1] <= bmapPtr->header.y1)
774 && (rectPtr[2] >= bmapPtr->header.x2)
775 && (rectPtr[3] >= bmapPtr->header.y2)) {