Ardour  8.7-14-g57a6773833
gdkregion-generic.h
Go to the documentation of this file.
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 
49 
50 /*
51  * clip region
52  */
53 
54 struct _GdkRegion
55 {
56  long size;
57  long numRects;
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 #define GROWREGION(reg, nRects) { \
87  if ((nRects) == 0) { \
88  if ((reg)->rects != &(reg)->extents) { \
89  g_free ((reg)->rects); \
90  (reg)->rects = &(reg)->extents; \
91  } \
92  } \
93  else if ((reg)->rects == &(reg)->extents) { \
94  (reg)->rects = g_new (GdkRegionBox, (nRects)); \
95  (reg)->rects[0] = (reg)->extents; \
96  } \
97  else \
98  (reg)->rects = g_renew (GdkRegionBox, (reg)->rects, (nRects)); \
99  (reg)->size = (nRects); \
100  }
101 
102 /*
103  * Check to see if there is enough memory in the present region.
104  */
105 #define MEMCHECK(reg, rect, firstrect){ \
106  if ((reg)->numRects >= ((reg)->size - 1)) { \
107  GROWREGION(reg,2*(reg)->size); \
108  (rect) = &(firstrect)[(reg)->numRects]; \
109  } \
110  }
111 
112 /* this routine checks to see if the previous rectangle is the same
113  * or subsumes the new rectangle to add.
114  */
115 
116 #define CHECK_PREVIOUS(Reg, R, Rx1, Ry1, Rx2, Ry2)\
117  (!(((Reg)->numRects > 0)&&\
118  ((R-1)->y1 == (Ry1)) &&\
119  ((R-1)->y2 == (Ry2)) &&\
120  ((R-1)->x1 <= (Rx1)) &&\
121  ((R-1)->x2 >= (Rx2))))
122 
123 /* add a rectangle to the given Region */
124 #define ADDRECT(reg, r, rx1, ry1, rx2, ry2){\
125  if (((rx1) < (rx2)) && ((ry1) < (ry2)) &&\
126  CHECK_PREVIOUS((reg), (r), (rx1), (ry1), (rx2), (ry2))){\
127  (r)->x1 = (rx1);\
128  (r)->y1 = (ry1);\
129  (r)->x2 = (rx2);\
130  (r)->y2 = (ry2);\
131  EXTENTS((r), (reg));\
132  (reg)->numRects++;\
133  (r)++;\
134  }\
135  }
136 
137 
138 
139 /* add a rectangle to the given Region */
140 #define ADDRECTNOX(reg, r, rx1, ry1, rx2, ry2){\
141  if ((rx1 < rx2) && (ry1 < ry2) &&\
142  CHECK_PREVIOUS((reg), (r), (rx1), (ry1), (rx2), (ry2))){\
143  (r)->x1 = (rx1);\
144  (r)->y1 = (ry1);\
145  (r)->x2 = (rx2);\
146  (r)->y2 = (ry2);\
147  (reg)->numRects++;\
148  (r)++;\
149  }\
150  }
151 
152 #define EMPTY_REGION(pReg) pReg->numRects = 0
153 
154 #define REGION_NOT_EMPTY(pReg) pReg->numRects
155 
156 #define INBOX(r, x, y) \
157  ( ( ((r).x2 > x)) && \
158  ( ((r).x1 <= x)) && \
159  ( ((r).y2 > y)) && \
160  ( ((r).y1 <= y)) )
161 
162 /*
163  * number of points to buffer before sending them off
164  * to scanlines() : Must be an even number
165  */
166 #define NUMPTSTOBUFFER 200
167 
168 /*
169  * used to allocate buffers for points and link
170  * the buffers together
171  */
172 typedef struct _POINTBLOCK {
174  struct _POINTBLOCK *next;
176 
177 #endif /* __GDK_REGION_GENERIC_H__ */
struct _POINTBLOCK POINTBLOCK
#define NUMPTSTOBUFFER
GdkSegment GdkRegionBox
typedefG_BEGIN_DECLS struct _GdkPoint GdkPoint
Definition: gdktypes.h:68
GdkRegionBox * rects
GdkRegionBox extents
struct _POINTBLOCK * next
GdkPoint pts[200]