Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 1 | /************************************************************************ |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 2 | |
| 3 | Copyright 1987, 1998 The Open Group |
| 4 | |
| 5 | Permission to use, copy, modify, distribute, and sell this software and its |
| 6 | documentation for any purpose is hereby granted without fee, provided that |
| 7 | the above copyright notice appear in all copies and that both that |
| 8 | copyright notice and this permission notice appear in supporting |
| 9 | documentation. |
| 10 | |
| 11 | The above copyright notice and this permission notice shall be included in |
| 12 | all copies or substantial portions of the Software. |
| 13 | |
| 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 17 | OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN |
| 18 | AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 19 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 20 | |
| 21 | Except as contained in this notice, the name of The Open Group shall not be |
| 22 | used in advertising or otherwise to promote the sale, use or other dealings |
| 23 | in this Software without prior written authorization from The Open Group. |
| 24 | |
| 25 | |
| 26 | Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts. |
| 27 | |
| 28 | All Rights Reserved |
| 29 | |
Pierre Ossman | 3157ed9 | 2016-05-13 16:00:10 +0200 | [diff] [blame] | 30 | Permission to use, copy, modify, and distribute this software and its |
| 31 | documentation for any purpose and without fee is hereby granted, |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 32 | provided that the above copyright notice appear in all copies and that |
Pierre Ossman | 3157ed9 | 2016-05-13 16:00:10 +0200 | [diff] [blame] | 33 | both that copyright notice and this permission notice appear in |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 34 | supporting documentation, and that the name of Digital not be |
| 35 | used in advertising or publicity pertaining to distribution of the |
Pierre Ossman | 3157ed9 | 2016-05-13 16:00:10 +0200 | [diff] [blame] | 36 | software without specific, written prior permission. |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 37 | |
| 38 | DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING |
| 39 | ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL |
| 40 | DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR |
| 41 | ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, |
| 42 | WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 43 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 44 | SOFTWARE. |
| 45 | |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 46 | ************************************************************************/ |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 47 | |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 48 | #ifndef _X11_XREGION_H_ |
| 49 | #define _X11_XREGION_H_ |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 50 | |
| 51 | typedef struct { |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 52 | short x1, x2, y1, y2; |
| 53 | } Box, BOX, BoxRec, *BoxPtr; |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 54 | |
| 55 | typedef struct { |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 56 | short x, y, width, height; |
| 57 | }RECTANGLE, RectangleRec, *RectanglePtr; |
| 58 | |
| 59 | #define TRUE 1 |
| 60 | #define FALSE 0 |
| 61 | #define MAXSHORT 32767 |
| 62 | #define MINSHORT -MAXSHORT |
| 63 | #ifndef MAX |
| 64 | #define MAX(a,b) (((a) > (b)) ? (a) : (b)) |
| 65 | #endif |
| 66 | #ifndef MIN |
| 67 | #define MIN(a,b) (((a) < (b)) ? (a) : (b)) |
| 68 | #endif |
| 69 | |
| 70 | |
Pierre Ossman | 3157ed9 | 2016-05-13 16:00:10 +0200 | [diff] [blame] | 71 | /* |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 72 | * clip region |
| 73 | */ |
| 74 | |
| 75 | typedef struct _XRegion { |
| 76 | long size; |
| 77 | long numRects; |
| 78 | BOX *rects; |
| 79 | BOX extents; |
| 80 | } REGION; |
| 81 | |
Pierre Ossman | 3157ed9 | 2016-05-13 16:00:10 +0200 | [diff] [blame] | 82 | /* Xutil.h contains the declaration: |
| 83 | * typedef struct _XRegion *Region; |
| 84 | */ |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 85 | |
| 86 | /* 1 if two BOXs overlap. |
| 87 | * 0 if two BOXs do not overlap. |
Pierre Ossman | 3157ed9 | 2016-05-13 16:00:10 +0200 | [diff] [blame] | 88 | * Remember, x2 and y2 are not in the region |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 89 | */ |
| 90 | #define EXTENTCHECK(r1, r2) \ |
| 91 | ((r1)->x2 > (r2)->x1 && \ |
| 92 | (r1)->x1 < (r2)->x2 && \ |
| 93 | (r1)->y2 > (r2)->y1 && \ |
| 94 | (r1)->y1 < (r2)->y2) |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 95 | |
| 96 | /* |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 97 | * update region extents |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 98 | */ |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 99 | #define EXTENTS(r,idRect){\ |
| 100 | if((r)->x1 < (idRect)->extents.x1)\ |
| 101 | (idRect)->extents.x1 = (r)->x1;\ |
| 102 | if((r)->y1 < (idRect)->extents.y1)\ |
| 103 | (idRect)->extents.y1 = (r)->y1;\ |
| 104 | if((r)->x2 > (idRect)->extents.x2)\ |
| 105 | (idRect)->extents.x2 = (r)->x2;\ |
| 106 | if((r)->y2 > (idRect)->extents.y2)\ |
| 107 | (idRect)->extents.y2 = (r)->y2;\ |
| 108 | } |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 109 | |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 110 | /* |
| 111 | * Check to see if there is enough memory in the present region. |
| 112 | */ |
| 113 | #define MEMCHECK(reg, rect, firstrect){\ |
| 114 | if ((reg)->numRects >= ((reg)->size - 1)){\ |
Pierre Ossman | 3157ed9 | 2016-05-13 16:00:10 +0200 | [diff] [blame] | 115 | BoxPtr tmpRect = Xrealloc ((firstrect), \ |
| 116 | (2 * (sizeof(BOX)) * ((reg)->size))); \ |
| 117 | if (tmpRect == NULL) \ |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 118 | return(0);\ |
Pierre Ossman | 3157ed9 | 2016-05-13 16:00:10 +0200 | [diff] [blame] | 119 | (firstrect) = tmpRect; \ |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 120 | (reg)->size *= 2;\ |
| 121 | (rect) = &(firstrect)[(reg)->numRects];\ |
| 122 | }\ |
| 123 | } |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 124 | |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 125 | /* this routine checks to see if the previous rectangle is the same |
| 126 | * or subsumes the new rectangle to add. |
| 127 | */ |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 128 | |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 129 | #define CHECK_PREVIOUS(Reg, R, Rx1, Ry1, Rx2, Ry2)\ |
| 130 | (!(((Reg)->numRects > 0)&&\ |
| 131 | ((R-1)->y1 == (Ry1)) &&\ |
| 132 | ((R-1)->y2 == (Ry2)) &&\ |
| 133 | ((R-1)->x1 <= (Rx1)) &&\ |
| 134 | ((R-1)->x2 >= (Rx2)))) |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 135 | |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 136 | /* add a rectangle to the given Region */ |
| 137 | #define ADDRECT(reg, r, rx1, ry1, rx2, ry2){\ |
| 138 | if (((rx1) < (rx2)) && ((ry1) < (ry2)) &&\ |
| 139 | CHECK_PREVIOUS((reg), (r), (rx1), (ry1), (rx2), (ry2))){\ |
| 140 | (r)->x1 = (rx1);\ |
| 141 | (r)->y1 = (ry1);\ |
| 142 | (r)->x2 = (rx2);\ |
| 143 | (r)->y2 = (ry2);\ |
| 144 | EXTENTS((r), (reg));\ |
| 145 | (reg)->numRects++;\ |
| 146 | (r)++;\ |
| 147 | }\ |
| 148 | } |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 149 | |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 150 | |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 151 | |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 152 | /* add a rectangle to the given Region */ |
| 153 | #define ADDRECTNOX(reg, r, rx1, ry1, rx2, ry2){\ |
| 154 | if ((rx1 < rx2) && (ry1 < ry2) &&\ |
| 155 | CHECK_PREVIOUS((reg), (r), (rx1), (ry1), (rx2), (ry2))){\ |
| 156 | (r)->x1 = (rx1);\ |
| 157 | (r)->y1 = (ry1);\ |
| 158 | (r)->x2 = (rx2);\ |
| 159 | (r)->y2 = (ry2);\ |
| 160 | (reg)->numRects++;\ |
| 161 | (r)++;\ |
| 162 | }\ |
| 163 | } |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 164 | |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 165 | #define EMPTY_REGION(pReg) pReg->numRects = 0 |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 166 | |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 167 | #define REGION_NOT_EMPTY(pReg) pReg->numRects |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 168 | |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 169 | #define INBOX(r, x, y) \ |
| 170 | ( ( ((r).x2 > x)) && \ |
| 171 | ( ((r).x1 <= x)) && \ |
| 172 | ( ((r).y2 > y)) && \ |
| 173 | ( ((r).y1 <= y)) ) |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 174 | |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 175 | /* |
| 176 | * number of points to buffer before sending them off |
| 177 | * to scanlines() : Must be an even number |
| 178 | */ |
| 179 | #define NUMPTSTOBUFFER 200 |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 180 | |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 181 | /* |
| 182 | * used to allocate buffers for points and link |
| 183 | * the buffers together |
| 184 | */ |
| 185 | typedef struct _POINTBLOCK { |
| 186 | XPoint pts[NUMPTSTOBUFFER]; |
| 187 | struct _POINTBLOCK *next; |
| 188 | } POINTBLOCK; |
syuri | 843bf67 | 2008-09-19 09:55:50 +0000 | [diff] [blame] | 189 | |
Pierre Ossman | 88903f2 | 2016-05-13 15:53:25 +0200 | [diff] [blame] | 190 | #endif /* _X11_XREGION_H_ */ |