summaryrefslogtreecommitdiff
path: root/docs/reference/gdk/tmpl/regions.sgml
blob: dfb43a6dd416699138aa3e314773047242b7af08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
<!-- ##### SECTION Title ##### -->
Points, Rectangles and Regions

<!-- ##### SECTION Short_Description ##### -->
Simple graphical data types

<!-- ##### SECTION Long_Description ##### -->
<para>
GDK provides the #GdkPoint, #GdkRectangle, #GdkRegion and #GdkSpan data types
for representing pixels and sets of pixels on the screen.
</para>
<para>
#GdkPoint is a simple structure containing an x and y coordinate of a point.
</para>
<para>
#GdkRectangle is a structure holding the position and size of a rectangle.
The intersection of two rectangles can be computed with
gdk_rectangle_intersect(). To find the union of two rectangles use
gdk_rectangle_union().
</para>
<para>
#GdkRegion is an opaque data type holding a set of arbitrary pixels, and is
usually used for clipping graphical operations (see gdk_gc_set_clip_region()).
</para>
<para>
#GdkSpan is a structure holding a spanline. A spanline is a horizontal line that
is one pixel wide. It is mainly used when rasterizing other graphics primitives.
It can be intersected to regions by using gdk_region_spans_intersect_foreach().
</para>

<!-- ##### SECTION See_Also ##### -->
<para>

</para>

<!-- ##### SECTION Stability_Level ##### -->


<!-- ##### SECTION Image ##### -->


<!-- ##### STRUCT GdkPoint ##### -->
<para>
Defines the x and y coordinates of a point.
</para>

@x: the x coordinate of the point.
@y: the y coordinate of the point.

<!-- ##### STRUCT GdkRectangle ##### -->
<para>
Defines the position and size of a rectangle.
</para>

@x: the x coordinate of the left edge of the rectangle.
@y: the y coordinate of the top of the rectangle.
@width: the width of the rectangle.
@height: the height of the rectangle.

<!-- ##### FUNCTION gdk_rectangle_intersect ##### -->
<para>

</para>

@src1: 
@src2: 
@dest: 
@Returns: 


<!-- ##### FUNCTION gdk_rectangle_union ##### -->
<para>

</para>

@src1: 
@src2: 
@dest: 


<!-- ##### STRUCT GdkRegion ##### -->
<para>
A GdkRegion represents a set of pixels on the screen.
</para>


<!-- ##### FUNCTION gdk_region_new ##### -->
<para>

</para>

@void: 
@Returns: 


<!-- ##### FUNCTION gdk_region_polygon ##### -->
<para>

</para>

@points: 
@n_points: 
@fill_rule: 
@Returns: 


<!-- ##### ENUM GdkFillRule ##### -->
<para>
The method for determining which pixels are included in a region, when
creating a #GdkRegion from a polygon.
The fill rule is only relevant for polygons which overlap themselves.
</para>

@GDK_EVEN_ODD_RULE: areas which are overlapped an odd number of times are
included in the region, while areas overlapped an even number of times are not.
@GDK_WINDING_RULE: overlapping areas are always included.

<!-- ##### FUNCTION gdk_region_copy ##### -->
<para>

</para>

@region: 
@Returns: 


<!-- ##### FUNCTION gdk_region_rectangle ##### -->
<para>

</para>

@rectangle: 
@Returns: 


<!-- ##### FUNCTION gdk_region_destroy ##### -->
<para>

</para>

@region: 


<!-- ##### FUNCTION gdk_region_get_clipbox ##### -->
<para>

</para>

@region: 
@rectangle: 


<!-- ##### FUNCTION gdk_region_get_rectangles ##### -->
<para>

</para>

@region: 
@rectangles: 
@n_rectangles: 


<!-- ##### FUNCTION gdk_region_empty ##### -->
<para>

</para>

@region: 
@Returns: 


<!-- ##### FUNCTION gdk_region_equal ##### -->
<para>

</para>

@region1: 
@region2: 
@Returns: 


<!-- ##### FUNCTION gdk_region_rect_equal ##### -->
<para>

</para>

@region: 
@rectangle: 
@Returns: 


<!-- ##### FUNCTION gdk_region_point_in ##### -->
<para>

</para>

@region: 
@x: 
@y: 
@Returns: 


<!-- ##### FUNCTION gdk_region_rect_in ##### -->
<para>

</para>

@region: 
@rectangle: 
@Returns: 


<!-- ##### ENUM GdkOverlapType ##### -->
<para>
Specifies the possible values returned by gdk_region_rect_in().
</para>

@GDK_OVERLAP_RECTANGLE_IN: if the rectangle is inside the #GdkRegion.
@GDK_OVERLAP_RECTANGLE_OUT: if the rectangle is outside the #GdkRegion.
@GDK_OVERLAP_RECTANGLE_PART: if the rectangle is partly inside the #GdkRegion.

<!-- ##### FUNCTION gdk_region_offset ##### -->
<para>

</para>

@region: 
@dx: 
@dy: 


<!-- ##### FUNCTION gdk_region_shrink ##### -->
<para>

</para>

@region: 
@dx: 
@dy: 


<!-- ##### FUNCTION gdk_region_union_with_rect ##### -->
<para>

</para>

@region: 
@rect: 


<!-- ##### FUNCTION gdk_region_intersect ##### -->
<para>
</para>

@source1: 
@source2: 


<!-- ##### FUNCTION gdk_region_union ##### -->
<para>

</para>

@source1: 
@source2: 


<!-- ##### FUNCTION gdk_region_subtract ##### -->
<para>
</para>

@source1: 
@source2: 


<!-- ##### FUNCTION gdk_region_xor ##### -->
<para>
</para>

@source1: 
@source2: 


<!-- ##### STRUCT GdkSpan ##### -->
<para>
A GdkSpan represents a horizontal line of pixels starting
at the pixel with coordinates @x, @y and ending before @x + @width, @y.
</para>

@x: x coordinate of the first pixel.
@y: y coordinate of the first pixel.
@width: number of pixels in the span.

<!-- ##### USER_FUNCTION GdkSpanFunc ##### -->
<para>
This defines the type of the function passed to 
gdk_region_spans_intersect_foreach(). 
</para>

@span: a #GdkSpan.
@data: the user data passed to gdk_region_spans_intersect_foreach().


<!-- ##### FUNCTION gdk_region_spans_intersect_foreach ##### -->
<para>

</para>

@region: 
@spans: 
@n_spans: 
@sorted: 
@function: 
@data: