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