tizen 2.3.1 release
[framework/graphics/cairo.git] / src / cairo.h
1 /* cairo - a vector graphics library with display and print output
2  *
3  * Copyright © 2002 University of Southern California
4  * Copyright © 2005 Red Hat, Inc.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it either under the terms of the GNU Lesser General Public
8  * License version 2.1 as published by the Free Software Foundation
9  * (the "LGPL") or, at your option, under the terms of the Mozilla
10  * Public License Version 1.1 (the "MPL"). If you do not alter this
11  * notice, a recipient may use your version of this file under either
12  * the MPL or the LGPL.
13  *
14  * You should have received a copy of the LGPL along with this library
15  * in the file COPYING-LGPL-2.1; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
17  * You should have received a copy of the MPL along with this library
18  * in the file COPYING-MPL-1.1
19  *
20  * The contents of this file are subject to the Mozilla Public License
21  * Version 1.1 (the "License"); you may not use this file except in
22  * compliance with the License. You may obtain a copy of the License at
23  * http://www.mozilla.org/MPL/
24  *
25  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
26  * OF ANY KIND, either express or implied. See the LGPL or the MPL for
27  * the specific language governing rights and limitations.
28  *
29  * The Original Code is the cairo graphics library.
30  *
31  * The Initial Developer of the Original Code is University of Southern
32  * California.
33  *
34  * Contributor(s):
35  *      Carl D. Worth <cworth@cworth.org>
36  */
37
38 #ifndef CAIRO_H
39 #define CAIRO_H
40
41 #include "cairo-version.h"
42 #include "cairo-features.h"
43 #include "cairo-deprecated.h"
44
45 #ifdef  __cplusplus
46 # define CAIRO_BEGIN_DECLS  extern "C" {
47 # define CAIRO_END_DECLS    }
48 #else
49 # define CAIRO_BEGIN_DECLS
50 # define CAIRO_END_DECLS
51 #endif
52
53 #ifndef cairo_public
54 # if defined (_MSC_VER) && ! defined (CAIRO_WIN32_STATIC_BUILD)
55 #  define cairo_public __declspec(dllimport)
56 # else
57 #  define cairo_public
58 # endif
59 #endif
60
61 CAIRO_BEGIN_DECLS
62
63 #define CAIRO_VERSION_ENCODE(major, minor, micro) (     \
64           ((major) * 10000)                             \
65         + ((minor) *   100)                             \
66         + ((micro) *     1))
67
68 #define CAIRO_VERSION CAIRO_VERSION_ENCODE(     \
69         CAIRO_VERSION_MAJOR,                    \
70         CAIRO_VERSION_MINOR,                    \
71         CAIRO_VERSION_MICRO)
72
73
74 #define CAIRO_VERSION_STRINGIZE_(major, minor, micro)   \
75         #major"."#minor"."#micro
76 #define CAIRO_VERSION_STRINGIZE(major, minor, micro)    \
77         CAIRO_VERSION_STRINGIZE_(major, minor, micro)
78
79 #define CAIRO_VERSION_STRING CAIRO_VERSION_STRINGIZE(   \
80         CAIRO_VERSION_MAJOR,                            \
81         CAIRO_VERSION_MINOR,                            \
82         CAIRO_VERSION_MICRO)
83
84
85 cairo_public int
86 cairo_version (void);
87
88 cairo_public const char*
89 cairo_version_string (void);
90
91 /**
92  * cairo_bool_t:
93  *
94  * #cairo_bool_t is used for boolean values. Returns of type
95  * #cairo_bool_t will always be either 0 or 1, but testing against
96  * these values explicitly is not encouraged; just use the
97  * value as a boolean condition.
98  *
99  * <informalexample><programlisting>
100  *  if (cairo_in_stroke (cr, x, y)) {
101  *      /<!-- -->* do something *<!-- -->/
102  *  }
103  * </programlisting></informalexample>
104  *
105  * Since: 1.0
106  **/
107 typedef int cairo_bool_t;
108
109 /**
110  * cairo_t:
111  *
112  * A #cairo_t contains the current state of the rendering device,
113  * including coordinates of yet to be drawn shapes.
114  *
115  * Cairo contexts, as #cairo_t objects are named, are central to
116  * cairo and all drawing with cairo is always done to a #cairo_t
117  * object.
118  *
119  * Memory management of #cairo_t is done with
120  * cairo_reference() and cairo_destroy().
121  *
122  * Since: 1.0
123  **/
124 typedef struct _cairo cairo_t;
125
126 /**
127  * cairo_surface_t:
128  *
129  * A #cairo_surface_t represents an image, either as the destination
130  * of a drawing operation or as source when drawing onto another
131  * surface.  To draw to a #cairo_surface_t, create a cairo context
132  * with the surface as the target, using cairo_create().
133  *
134  * There are different subtypes of #cairo_surface_t for
135  * different drawing backends; for example, cairo_image_surface_create()
136  * creates a bitmap image in memory.
137  * The type of a surface can be queried with cairo_surface_get_type().
138  *
139  * The initial contents of a surface after creation depend upon the manner
140  * of its creation. If cairo creates the surface and backing storage for
141  * the user, it will be initially cleared; for example,
142  * cairo_image_surface_create() and cairo_surface_create_similar().
143  * Alternatively, if the user passes in a reference to some backing storage
144  * and asks cairo to wrap that in a #cairo_surface_t, then the contents are
145  * not modified; for example, cairo_image_surface_create_for_data() and
146  * cairo_xlib_surface_create().
147  *
148  * Memory management of #cairo_surface_t is done with
149  * cairo_surface_reference() and cairo_surface_destroy().
150  *
151  * Since: 1.0
152  **/
153 typedef struct _cairo_surface cairo_surface_t;
154
155 /**
156  * cairo_device_t:
157  *
158  * A #cairo_device_t represents the driver interface for drawing
159  * operations to a #cairo_surface_t.  There are different subtypes of
160  * #cairo_device_t for different drawing backends; for example,
161  * cairo_egl_device_create() creates a device that wraps an EGL display and
162  * context.
163  *
164  * The type of a device can be queried with cairo_device_get_type().
165  *
166  * Memory management of #cairo_device_t is done with
167  * cairo_device_reference() and cairo_device_destroy().
168  *
169  * Since: 1.10
170  **/
171 typedef struct _cairo_device cairo_device_t;
172
173 /**
174  * cairo_matrix_t:
175  * @xx: xx component of the affine transformation
176  * @yx: yx component of the affine transformation
177  * @xy: xy component of the affine transformation
178  * @yy: yy component of the affine transformation
179  * @x0: X translation component of the affine transformation
180  * @y0: Y translation component of the affine transformation
181  *
182  * A #cairo_matrix_t holds an affine transformation, such as a scale,
183  * rotation, shear, or a combination of those. The transformation of
184  * a point (x, y) is given by:
185  * <programlisting>
186  *     x_new = xx * x + xy * y + x0;
187  *     y_new = yx * x + yy * y + y0;
188  * </programlisting>
189  *
190  * Since: 1.0
191  **/
192 typedef struct _cairo_matrix {
193     double xx; double yx;
194     double xy; double yy;
195     double x0; double y0;
196 } cairo_matrix_t;
197
198 /**
199  * cairo_pattern_t:
200  *
201  * A #cairo_pattern_t represents a source when drawing onto a
202  * surface. There are different subtypes of #cairo_pattern_t,
203  * for different types of sources; for example,
204  * cairo_pattern_create_rgb() creates a pattern for a solid
205  * opaque color.
206  *
207  * Other than various
208  * <function>cairo_pattern_create_<emphasis>type</emphasis>()</function>
209  * functions, some of the pattern types can be implicitly created using various
210  * <function>cairo_set_source_<emphasis>type</emphasis>()</function> functions;
211  * for example cairo_set_source_rgb().
212  *
213  * The type of a pattern can be queried with cairo_pattern_get_type().
214  *
215  * Memory management of #cairo_pattern_t is done with
216  * cairo_pattern_reference() and cairo_pattern_destroy().
217  *
218  * Since: 1.0
219  **/
220 typedef struct _cairo_pattern cairo_pattern_t;
221
222 /**
223  * cairo_destroy_func_t:
224  * @data: The data element being destroyed.
225  *
226  * #cairo_destroy_func_t the type of function which is called when a
227  * data element is destroyed. It is passed the pointer to the data
228  * element and should free any memory and resources allocated for it.
229  *
230  * Since: 1.0
231  **/
232 typedef void (*cairo_destroy_func_t) (void *data);
233
234 /**
235  * cairo_user_data_key_t:
236  * @unused: not used; ignore.
237  *
238  * #cairo_user_data_key_t is used for attaching user data to cairo
239  * data structures.  The actual contents of the struct is never used,
240  * and there is no need to initialize the object; only the unique
241  * address of a #cairo_data_key_t object is used.  Typically, you
242  * would just use the address of a static #cairo_data_key_t object.
243  *
244  * Since: 1.0
245  **/
246 typedef struct _cairo_user_data_key {
247     int unused;
248 } cairo_user_data_key_t;
249
250 /**
251  * cairo_status_t:
252  * @CAIRO_STATUS_SUCCESS: no error has occurred (Since 1.0)
253  * @CAIRO_STATUS_NO_MEMORY: out of memory (Since 1.0)
254  * @CAIRO_STATUS_INVALID_RESTORE: cairo_restore() called without matching cairo_save() (Since 1.0)
255  * @CAIRO_STATUS_INVALID_POP_GROUP: no saved group to pop, i.e. cairo_pop_group() without matching cairo_push_group() (Since 1.0)
256  * @CAIRO_STATUS_NO_CURRENT_POINT: no current point defined (Since 1.0)
257  * @CAIRO_STATUS_INVALID_MATRIX: invalid matrix (not invertible) (Since 1.0)
258  * @CAIRO_STATUS_INVALID_STATUS: invalid value for an input #cairo_status_t (Since 1.0)
259  * @CAIRO_STATUS_NULL_POINTER: %NULL pointer (Since 1.0)
260  * @CAIRO_STATUS_INVALID_STRING: input string not valid UTF-8 (Since 1.0)
261  * @CAIRO_STATUS_INVALID_PATH_DATA: input path data not valid (Since 1.0)
262  * @CAIRO_STATUS_READ_ERROR: error while reading from input stream (Since 1.0)
263  * @CAIRO_STATUS_WRITE_ERROR: error while writing to output stream (Since 1.0)
264  * @CAIRO_STATUS_SURFACE_FINISHED: target surface has been finished (Since 1.0)
265  * @CAIRO_STATUS_SURFACE_TYPE_MISMATCH: the surface type is not appropriate for the operation (Since 1.0)
266  * @CAIRO_STATUS_PATTERN_TYPE_MISMATCH: the pattern type is not appropriate for the operation (Since 1.0)
267  * @CAIRO_STATUS_INVALID_CONTENT: invalid value for an input #cairo_content_t (Since 1.0)
268  * @CAIRO_STATUS_INVALID_FORMAT: invalid value for an input #cairo_format_t (Since 1.0)
269  * @CAIRO_STATUS_INVALID_VISUAL: invalid value for an input Visual* (Since 1.0)
270  * @CAIRO_STATUS_FILE_NOT_FOUND: file not found (Since 1.0)
271  * @CAIRO_STATUS_INVALID_DASH: invalid value for a dash setting (Since 1.0)
272  * @CAIRO_STATUS_INVALID_DSC_COMMENT: invalid value for a DSC comment (Since 1.2)
273  * @CAIRO_STATUS_INVALID_INDEX: invalid index passed to getter (Since 1.4)
274  * @CAIRO_STATUS_CLIP_NOT_REPRESENTABLE: clip region not representable in desired format (Since 1.4)
275  * @CAIRO_STATUS_TEMP_FILE_ERROR: error creating or writing to a temporary file (Since 1.6)
276  * @CAIRO_STATUS_INVALID_STRIDE: invalid value for stride (Since 1.6)
277  * @CAIRO_STATUS_FONT_TYPE_MISMATCH: the font type is not appropriate for the operation (Since 1.8)
278  * @CAIRO_STATUS_USER_FONT_IMMUTABLE: the user-font is immutable (Since 1.8)
279  * @CAIRO_STATUS_USER_FONT_ERROR: error occurred in a user-font callback function (Since 1.8)
280  * @CAIRO_STATUS_NEGATIVE_COUNT: negative number used where it is not allowed (Since 1.8)
281  * @CAIRO_STATUS_INVALID_CLUSTERS: input clusters do not represent the accompanying text and glyph array (Since 1.8)
282  * @CAIRO_STATUS_INVALID_SLANT: invalid value for an input #cairo_font_slant_t (Since 1.8)
283  * @CAIRO_STATUS_INVALID_WEIGHT: invalid value for an input #cairo_font_weight_t (Since 1.8)
284  * @CAIRO_STATUS_INVALID_SIZE: invalid value (typically too big) for the size of the input (surface, pattern, etc.) (Since 1.10)
285  * @CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED: user-font method not implemented (Since 1.10)
286  * @CAIRO_STATUS_DEVICE_TYPE_MISMATCH: the device type is not appropriate for the operation (Since 1.10)
287  * @CAIRO_STATUS_DEVICE_ERROR: an operation to the device caused an unspecified error (Since 1.10)
288  * @CAIRO_STATUS_INVALID_MESH_CONSTRUCTION: a mesh pattern
289  *   construction operation was used outside of a
290  *   cairo_mesh_pattern_begin_patch()/cairo_mesh_pattern_end_patch()
291  *   pair (Since 1.12)
292  * @CAIRO_STATUS_DEVICE_FINISHED: target device has been finished (Since 1.12)
293  * @CAIRO_STATUS_LAST_STATUS: this is a special value indicating the number of
294  *   status values defined in this enumeration.  When using this value, note
295  *   that the version of cairo at run-time may have additional status values
296  *   defined than the value of this symbol at compile-time. (Since 1.10)
297  *
298  * #cairo_status_t is used to indicate errors that can occur when
299  * using Cairo. In some cases it is returned directly by functions.
300  * but when using #cairo_t, the last error, if any, is stored in
301  * the context and can be retrieved with cairo_status().
302  *
303  * New entries may be added in future versions.  Use cairo_status_to_string()
304  * to get a human-readable representation of an error message.
305  *
306  * Since: 1.0
307  **/
308 typedef enum _cairo_status {
309     CAIRO_STATUS_SUCCESS = 0,
310
311     CAIRO_STATUS_NO_MEMORY,
312     CAIRO_STATUS_INVALID_RESTORE,
313     CAIRO_STATUS_INVALID_POP_GROUP,
314     CAIRO_STATUS_NO_CURRENT_POINT,
315     CAIRO_STATUS_INVALID_MATRIX,
316     CAIRO_STATUS_INVALID_STATUS,
317     CAIRO_STATUS_NULL_POINTER,
318     CAIRO_STATUS_INVALID_STRING,
319     CAIRO_STATUS_INVALID_PATH_DATA,
320     CAIRO_STATUS_READ_ERROR,
321     CAIRO_STATUS_WRITE_ERROR,
322     CAIRO_STATUS_SURFACE_FINISHED,
323     CAIRO_STATUS_SURFACE_TYPE_MISMATCH,
324     CAIRO_STATUS_PATTERN_TYPE_MISMATCH,
325     CAIRO_STATUS_INVALID_CONTENT,
326     CAIRO_STATUS_INVALID_FORMAT,
327     CAIRO_STATUS_INVALID_VISUAL,
328     CAIRO_STATUS_FILE_NOT_FOUND,
329     CAIRO_STATUS_INVALID_DASH,
330     CAIRO_STATUS_INVALID_DSC_COMMENT,
331     CAIRO_STATUS_INVALID_INDEX,
332     CAIRO_STATUS_CLIP_NOT_REPRESENTABLE,
333     CAIRO_STATUS_TEMP_FILE_ERROR,
334     CAIRO_STATUS_INVALID_STRIDE,
335     CAIRO_STATUS_FONT_TYPE_MISMATCH,
336     CAIRO_STATUS_USER_FONT_IMMUTABLE,
337     CAIRO_STATUS_USER_FONT_ERROR,
338     CAIRO_STATUS_NEGATIVE_COUNT,
339     CAIRO_STATUS_INVALID_CLUSTERS,
340     CAIRO_STATUS_INVALID_SLANT,
341     CAIRO_STATUS_INVALID_WEIGHT,
342     CAIRO_STATUS_INVALID_SIZE,
343     CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED,
344     CAIRO_STATUS_DEVICE_TYPE_MISMATCH,
345     CAIRO_STATUS_DEVICE_ERROR,
346     CAIRO_STATUS_INVALID_MESH_CONSTRUCTION,
347     CAIRO_STATUS_DEVICE_FINISHED,
348
349     CAIRO_STATUS_LAST_STATUS
350 } cairo_status_t;
351
352 /**
353  * cairo_content_t:
354  * @CAIRO_CONTENT_COLOR: The surface will hold color content only. (Since 1.0)
355  * @CAIRO_CONTENT_ALPHA: The surface will hold alpha content only. (Since 1.0)
356  * @CAIRO_CONTENT_COLOR_ALPHA: The surface will hold color and alpha content. (Since 1.0)
357  *
358  * #cairo_content_t is used to describe the content that a surface will
359  * contain, whether color information, alpha information (translucence
360  * vs. opacity), or both.
361  *
362  * Note: The large values here are designed to keep #cairo_content_t
363  * values distinct from #cairo_format_t values so that the
364  * implementation can detect the error if users confuse the two types.
365  *
366  * Since: 1.0
367  **/
368 typedef enum _cairo_content {
369     CAIRO_CONTENT_COLOR         = 0x1000,
370     CAIRO_CONTENT_ALPHA         = 0x2000,
371     CAIRO_CONTENT_COLOR_ALPHA   = 0x3000
372 } cairo_content_t;
373
374 /**
375  * cairo_format_t:
376  * @CAIRO_FORMAT_INVALID: no such format exists or is supported.
377  * @CAIRO_FORMAT_ARGB32: each pixel is a 32-bit quantity, with
378  *   alpha in the upper 8 bits, then red, then green, then blue.
379  *   The 32-bit quantities are stored native-endian. Pre-multiplied
380  *   alpha is used. (That is, 50% transparent red is 0x80800000,
381  *   not 0x80ff0000.) (Since 1.0)
382  * @CAIRO_FORMAT_RGB24: each pixel is a 32-bit quantity, with
383  *   the upper 8 bits unused. Red, Green, and Blue are stored
384  *   in the remaining 24 bits in that order. (Since 1.0)
385  * @CAIRO_FORMAT_A8: each pixel is a 8-bit quantity holding
386  *   an alpha value. (Since 1.0)
387  * @CAIRO_FORMAT_A1: each pixel is a 1-bit quantity holding
388  *   an alpha value. Pixels are packed together into 32-bit
389  *   quantities. The ordering of the bits matches the
390  *   endianess of the platform. On a big-endian machine, the
391  *   first pixel is in the uppermost bit, on a little-endian
392  *   machine the first pixel is in the least-significant bit. (Since 1.0)
393  * @CAIRO_FORMAT_RGB16_565: each pixel is a 16-bit quantity
394  *   with red in the upper 5 bits, then green in the middle
395  *   6 bits, and blue in the lower 5 bits. (Since 1.2)
396  * @CAIRO_FORMAT_RGB30: like RGB24 but with 10bpc. (Since 1.12)
397  *
398  * #cairo_format_t is used to identify the memory format of
399  * image data.
400  *
401  * New entries may be added in future versions.
402  *
403  * Since: 1.0
404  **/
405 typedef enum _cairo_format {
406     CAIRO_FORMAT_INVALID   = -1,
407     CAIRO_FORMAT_ARGB32    = 0,
408     CAIRO_FORMAT_RGB24     = 1,
409     CAIRO_FORMAT_A8        = 2,
410     CAIRO_FORMAT_A1        = 3,
411     CAIRO_FORMAT_RGB16_565 = 4,
412     CAIRO_FORMAT_RGB30     = 5
413 } cairo_format_t;
414
415
416 /**
417  * cairo_write_func_t:
418  * @closure: the output closure
419  * @data: the buffer containing the data to write
420  * @length: the amount of data to write
421  *
422  * #cairo_write_func_t is the type of function which is called when a
423  * backend needs to write data to an output stream.  It is passed the
424  * closure which was specified by the user at the time the write
425  * function was registered, the data to write and the length of the
426  * data in bytes.  The write function should return
427  * %CAIRO_STATUS_SUCCESS if all the data was successfully written,
428  * %CAIRO_STATUS_WRITE_ERROR otherwise.
429  *
430  * Returns: the status code of the write operation
431  *
432  * Since: 1.0
433  **/
434 typedef cairo_status_t (*cairo_write_func_t) (void                *closure,
435                                               const unsigned char *data,
436                                               unsigned int         length);
437
438 /**
439  * cairo_read_func_t:
440  * @closure: the input closure
441  * @data: the buffer into which to read the data
442  * @length: the amount of data to read
443  *
444  * #cairo_read_func_t is the type of function which is called when a
445  * backend needs to read data from an input stream.  It is passed the
446  * closure which was specified by the user at the time the read
447  * function was registered, the buffer to read the data into and the
448  * length of the data in bytes.  The read function should return
449  * %CAIRO_STATUS_SUCCESS if all the data was successfully read,
450  * %CAIRO_STATUS_READ_ERROR otherwise.
451  *
452  * Returns: the status code of the read operation
453  *
454  * Since: 1.0
455  **/
456 typedef cairo_status_t (*cairo_read_func_t) (void               *closure,
457                                              unsigned char      *data,
458                                              unsigned int       length);
459
460 /**
461  * cairo_rectangle_int_t:
462  * @x: X coordinate of the left side of the rectangle
463  * @y: Y coordinate of the the top side of the rectangle
464  * @width: width of the rectangle
465  * @height: height of the rectangle
466  *
467  * A data structure for holding a rectangle with integer coordinates.
468  *
469  * Since: 1.10
470  **/
471
472 typedef struct _cairo_rectangle_int {
473     int x, y;
474     int width, height;
475 } cairo_rectangle_int_t;
476
477
478 /* Functions for manipulating state objects */
479 cairo_public cairo_t *
480 cairo_create (cairo_surface_t *target);
481
482 cairo_public cairo_t *
483 cairo_reference (cairo_t *cr);
484
485 cairo_public void
486 cairo_destroy (cairo_t *cr);
487
488 cairo_public unsigned int
489 cairo_get_reference_count (cairo_t *cr);
490
491 cairo_public void *
492 cairo_get_user_data (cairo_t                     *cr,
493                      const cairo_user_data_key_t *key);
494
495 cairo_public cairo_status_t
496 cairo_set_user_data (cairo_t                     *cr,
497                      const cairo_user_data_key_t *key,
498                      void                        *user_data,
499                      cairo_destroy_func_t         destroy);
500
501 cairo_public void
502 cairo_save (cairo_t *cr);
503
504 cairo_public void
505 cairo_restore (cairo_t *cr);
506
507 cairo_public void
508 cairo_push_group (cairo_t *cr);
509
510 cairo_public void
511 cairo_push_group_with_content (cairo_t *cr, cairo_content_t content);
512
513 cairo_public cairo_pattern_t *
514 cairo_pop_group (cairo_t *cr);
515
516 cairo_public void
517 cairo_pop_group_to_source (cairo_t *cr);
518
519 /* Modify state */
520
521 /**
522  * cairo_operator_t:
523  * @CAIRO_OPERATOR_CLEAR: clear destination layer (bounded) (Since 1.0)
524  * @CAIRO_OPERATOR_SOURCE: replace destination layer (bounded) (Since 1.0)
525  * @CAIRO_OPERATOR_OVER: draw source layer on top of destination layer
526  * (bounded) (Since 1.0)
527  * @CAIRO_OPERATOR_IN: draw source where there was destination content
528  * (unbounded) (Since 1.0)
529  * @CAIRO_OPERATOR_OUT: draw source where there was no destination
530  * content (unbounded) (Since 1.0)
531  * @CAIRO_OPERATOR_ATOP: draw source on top of destination content and
532  * only there (Since 1.0)
533  * @CAIRO_OPERATOR_DEST: ignore the source (Since 1.0)
534  * @CAIRO_OPERATOR_DEST_OVER: draw destination on top of source (Since 1.0)
535  * @CAIRO_OPERATOR_DEST_IN: leave destination only where there was
536  * source content (unbounded) (Since 1.0)
537  * @CAIRO_OPERATOR_DEST_OUT: leave destination only where there was no
538  * source content (Since 1.0)
539  * @CAIRO_OPERATOR_DEST_ATOP: leave destination on top of source content
540  * and only there (unbounded) (Since 1.0)
541  * @CAIRO_OPERATOR_XOR: source and destination are shown where there is only
542  * one of them (Since 1.0)
543  * @CAIRO_OPERATOR_ADD: source and destination layers are accumulated (Since 1.0)
544  * @CAIRO_OPERATOR_SATURATE: like over, but assuming source and dest are
545  * disjoint geometries (Since 1.0)
546  * @CAIRO_OPERATOR_MULTIPLY: source and destination layers are multiplied.
547  * This causes the result to be at least as dark as the darker inputs. (Since 1.10)
548  * @CAIRO_OPERATOR_SCREEN: source and destination are complemented and
549  * multiplied. This causes the result to be at least as light as the lighter
550  * inputs. (Since 1.10)
551  * @CAIRO_OPERATOR_OVERLAY: multiplies or screens, depending on the
552  * lightness of the destination color. (Since 1.10)
553  * @CAIRO_OPERATOR_DARKEN: replaces the destination with the source if it
554  * is darker, otherwise keeps the source. (Since 1.10)
555  * @CAIRO_OPERATOR_LIGHTEN: replaces the destination with the source if it
556  * is lighter, otherwise keeps the source. (Since 1.10)
557  * @CAIRO_OPERATOR_COLOR_DODGE: brightens the destination color to reflect
558  * the source color. (Since 1.10)
559  * @CAIRO_OPERATOR_COLOR_BURN: darkens the destination color to reflect
560  * the source color. (Since 1.10)
561  * @CAIRO_OPERATOR_HARD_LIGHT: Multiplies or screens, dependent on source
562  * color. (Since 1.10)
563  * @CAIRO_OPERATOR_SOFT_LIGHT: Darkens or lightens, dependent on source
564  * color. (Since 1.10)
565  * @CAIRO_OPERATOR_DIFFERENCE: Takes the difference of the source and
566  * destination color. (Since 1.10)
567  * @CAIRO_OPERATOR_EXCLUSION: Produces an effect similar to difference, but
568  * with lower contrast. (Since 1.10)
569  * @CAIRO_OPERATOR_HSL_HUE: Creates a color with the hue of the source
570  * and the saturation and luminosity of the target. (Since 1.10)
571  * @CAIRO_OPERATOR_HSL_SATURATION: Creates a color with the saturation
572  * of the source and the hue and luminosity of the target. Painting with
573  * this mode onto a gray area produces no change. (Since 1.10)
574  * @CAIRO_OPERATOR_HSL_COLOR: Creates a color with the hue and saturation
575  * of the source and the luminosity of the target. This preserves the gray
576  * levels of the target and is useful for coloring monochrome images or
577  * tinting color images. (Since 1.10)
578  * @CAIRO_OPERATOR_HSL_LUMINOSITY: Creates a color with the luminosity of
579  * the source and the hue and saturation of the target. This produces an
580  * inverse effect to @CAIRO_OPERATOR_HSL_COLOR. (Since 1.10)
581  *
582  * #cairo_operator_t is used to set the compositing operator for all cairo
583  * drawing operations.
584  *
585  * The default operator is %CAIRO_OPERATOR_OVER.
586  *
587  * The operators marked as <firstterm>unbounded</firstterm> modify their
588  * destination even outside of the mask layer (that is, their effect is not
589  * bound by the mask layer).  However, their effect can still be limited by
590  * way of clipping.
591  *
592  * To keep things simple, the operator descriptions here
593  * document the behavior for when both source and destination are either fully
594  * transparent or fully opaque.  The actual implementation works for
595  * translucent layers too.
596  * For a more detailed explanation of the effects of each operator, including
597  * the mathematical definitions, see
598  * <ulink url="http://cairographics.org/operators/">http://cairographics.org/operators/</ulink>.
599  *
600  * Since: 1.0
601  **/
602 typedef enum _cairo_operator {
603     CAIRO_OPERATOR_CLEAR,
604
605     CAIRO_OPERATOR_SOURCE,
606     CAIRO_OPERATOR_OVER,
607     CAIRO_OPERATOR_IN,
608     CAIRO_OPERATOR_OUT,
609     CAIRO_OPERATOR_ATOP,
610
611     CAIRO_OPERATOR_DEST,
612     CAIRO_OPERATOR_DEST_OVER,
613     CAIRO_OPERATOR_DEST_IN,
614     CAIRO_OPERATOR_DEST_OUT,
615     CAIRO_OPERATOR_DEST_ATOP,
616
617     CAIRO_OPERATOR_XOR,
618     CAIRO_OPERATOR_ADD,
619     CAIRO_OPERATOR_SATURATE,
620
621     CAIRO_OPERATOR_MULTIPLY,
622     CAIRO_OPERATOR_SCREEN,
623     CAIRO_OPERATOR_OVERLAY,
624     CAIRO_OPERATOR_DARKEN,
625     CAIRO_OPERATOR_LIGHTEN,
626     CAIRO_OPERATOR_COLOR_DODGE,
627     CAIRO_OPERATOR_COLOR_BURN,
628     CAIRO_OPERATOR_HARD_LIGHT,
629     CAIRO_OPERATOR_SOFT_LIGHT,
630     CAIRO_OPERATOR_DIFFERENCE,
631     CAIRO_OPERATOR_EXCLUSION,
632     CAIRO_OPERATOR_HSL_HUE,
633     CAIRO_OPERATOR_HSL_SATURATION,
634     CAIRO_OPERATOR_HSL_COLOR,
635     CAIRO_OPERATOR_HSL_LUMINOSITY
636 } cairo_operator_t;
637
638 cairo_public void
639 cairo_set_operator (cairo_t *cr, cairo_operator_t op);
640
641 cairo_public void
642 cairo_set_source (cairo_t *cr, cairo_pattern_t *source);
643
644 cairo_public void
645 cairo_set_source_rgb (cairo_t *cr, double red, double green, double blue);
646
647 cairo_public void
648 cairo_set_source_rgba (cairo_t *cr,
649                        double red, double green, double blue,
650                        double alpha);
651
652 cairo_public void
653 cairo_set_source_surface (cairo_t         *cr,
654                           cairo_surface_t *surface,
655                           double           x,
656                           double           y);
657
658 cairo_public void
659 cairo_set_tolerance (cairo_t *cr, double tolerance);
660
661 /**
662  * cairo_antialias_t:
663  * @CAIRO_ANTIALIAS_DEFAULT: Use the default antialiasing for
664  *   the subsystem and target device, since 1.0
665  * @CAIRO_ANTIALIAS_NONE: Use a bilevel alpha mask, since 1.0
666  * @CAIRO_ANTIALIAS_GRAY: Perform single-color antialiasing (using
667  *  shades of gray for black text on a white background, for example), since 1.0
668  * @CAIRO_ANTIALIAS_SUBPIXEL: Perform antialiasing by taking
669  *  advantage of the order of subpixel elements on devices
670  *  such as LCD panels, since 1.0
671  * @CAIRO_ANTIALIAS_FAST: Hint that the backend should perform some
672  * antialiasing but prefer speed over quality, since 1.12
673  * @CAIRO_ANTIALIAS_GOOD: The backend should balance quality against
674  * performance, since 1.12
675  * @CAIRO_ANTIALIAS_BEST: Hint that the backend should render at the highest
676  * quality, sacrificing speed if necessary, since 1.12
677  *
678  * Specifies the type of antialiasing to do when rendering text or shapes.
679  *
680  * As it is not necessarily clear from the above what advantages a particular
681  * antialias method provides, since 1.12, there is also a set of hints:
682  * @CAIRO_ANTIALIAS_FAST: Allow the backend to degrade raster quality for speed
683  * @CAIRO_ANTIALIAS_GOOD: A balance between speed and quality
684  * @CAIRO_ANTIALIAS_BEST: A high-fidelity, but potentially slow, raster mode
685  *
686  * These make no guarantee on how the backend will perform its rasterisation
687  * (if it even rasterises!), nor that they have any differing effect other
688  * than to enable some form of antialiasing. In the case of glyph rendering,
689  * @CAIRO_ANTIALIAS_FAST and @CAIRO_ANTIALIAS_GOOD will be mapped to
690  * @CAIRO_ANTIALIAS_GRAY, with @CAIRO_ANTALIAS_BEST being equivalent to
691  * @CAIRO_ANTIALIAS_SUBPIXEL.
692  *
693  * The interpretation of @CAIRO_ANTIALIAS_DEFAULT is left entirely up to
694  * the backend, typically this will be similar to @CAIRO_ANTIALIAS_GOOD.
695  *
696  * Since: 1.0
697  **/
698 typedef enum _cairo_antialias {
699     CAIRO_ANTIALIAS_DEFAULT,
700
701     /* method */
702     CAIRO_ANTIALIAS_NONE,
703     CAIRO_ANTIALIAS_GRAY,
704     CAIRO_ANTIALIAS_SUBPIXEL,
705
706     /* hints */
707     CAIRO_ANTIALIAS_FAST,
708     CAIRO_ANTIALIAS_GOOD,
709     CAIRO_ANTIALIAS_BEST
710 } cairo_antialias_t;
711
712 cairo_public void
713 cairo_set_antialias (cairo_t *cr, cairo_antialias_t antialias);
714
715 /**
716  * cairo_fill_rule_t:
717  * @CAIRO_FILL_RULE_WINDING: If the path crosses the ray from
718  * left-to-right, counts +1. If the path crosses the ray
719  * from right to left, counts -1. (Left and right are determined
720  * from the perspective of looking along the ray from the starting
721  * point.) If the total count is non-zero, the point will be filled. (Since 1.0)
722  * @CAIRO_FILL_RULE_EVEN_ODD: Counts the total number of
723  * intersections, without regard to the orientation of the contour. If
724  * the total number of intersections is odd, the point will be
725  * filled. (Since 1.0)
726  *
727  * #cairo_fill_rule_t is used to select how paths are filled. For both
728  * fill rules, whether or not a point is included in the fill is
729  * determined by taking a ray from that point to infinity and looking
730  * at intersections with the path. The ray can be in any direction,
731  * as long as it doesn't pass through the end point of a segment
732  * or have a tricky intersection such as intersecting tangent to the path.
733  * (Note that filling is not actually implemented in this way. This
734  * is just a description of the rule that is applied.)
735  *
736  * The default fill rule is %CAIRO_FILL_RULE_WINDING.
737  *
738  * New entries may be added in future versions.
739  *
740  * Since: 1.0
741  **/
742 typedef enum _cairo_fill_rule {
743     CAIRO_FILL_RULE_WINDING,
744     CAIRO_FILL_RULE_EVEN_ODD
745 } cairo_fill_rule_t;
746
747 cairo_public void
748 cairo_set_fill_rule (cairo_t *cr, cairo_fill_rule_t fill_rule);
749
750 cairo_public void
751 cairo_set_line_width (cairo_t *cr, double width);
752
753 /**
754  * cairo_line_cap_t:
755  * @CAIRO_LINE_CAP_BUTT: start(stop) the line exactly at the start(end) point (Since 1.0)
756  * @CAIRO_LINE_CAP_ROUND: use a round ending, the center of the circle is the end point (Since 1.0)
757  * @CAIRO_LINE_CAP_SQUARE: use squared ending, the center of the square is the end point (Since 1.0)
758  *
759  * Specifies how to render the endpoints of the path when stroking.
760  *
761  * The default line cap style is %CAIRO_LINE_CAP_BUTT.
762  *
763  * Since: 1.0
764  **/
765 typedef enum _cairo_line_cap {
766     CAIRO_LINE_CAP_BUTT,
767     CAIRO_LINE_CAP_ROUND,
768     CAIRO_LINE_CAP_SQUARE
769 } cairo_line_cap_t;
770
771 cairo_public void
772 cairo_set_line_cap (cairo_t *cr, cairo_line_cap_t line_cap);
773
774 /**
775  * cairo_line_join_t:
776  * @CAIRO_LINE_JOIN_MITER: use a sharp (angled) corner, see
777  * cairo_set_miter_limit() (Since 1.0)
778  * @CAIRO_LINE_JOIN_ROUND: use a rounded join, the center of the circle is the
779  * joint point (Since 1.0)
780  * @CAIRO_LINE_JOIN_BEVEL: use a cut-off join, the join is cut off at half
781  * the line width from the joint point (Since 1.0)
782  *
783  * Specifies how to render the junction of two lines when stroking.
784  *
785  * The default line join style is %CAIRO_LINE_JOIN_MITER.
786  *
787  * Since: 1.0
788  **/
789 typedef enum _cairo_line_join {
790     CAIRO_LINE_JOIN_MITER,
791     CAIRO_LINE_JOIN_ROUND,
792     CAIRO_LINE_JOIN_BEVEL
793 } cairo_line_join_t;
794
795 cairo_public void
796 cairo_set_line_join (cairo_t *cr, cairo_line_join_t line_join);
797
798 cairo_public void
799 cairo_set_dash (cairo_t      *cr,
800                 const double *dashes,
801                 int           num_dashes,
802                 double        offset);
803
804 cairo_public void
805 cairo_set_miter_limit (cairo_t *cr, double limit);
806
807 cairo_public void
808 cairo_translate (cairo_t *cr, double tx, double ty);
809
810 cairo_public void
811 cairo_scale (cairo_t *cr, double sx, double sy);
812
813 cairo_public void
814 cairo_rotate (cairo_t *cr, double angle);
815
816 cairo_public void
817 cairo_transform (cairo_t              *cr,
818                  const cairo_matrix_t *matrix);
819
820 cairo_public void
821 cairo_set_matrix (cairo_t              *cr,
822                   const cairo_matrix_t *matrix);
823
824 cairo_public void
825 cairo_identity_matrix (cairo_t *cr);
826
827 cairo_public void
828 cairo_user_to_device (cairo_t *cr, double *x, double *y);
829
830 cairo_public void
831 cairo_user_to_device_distance (cairo_t *cr, double *dx, double *dy);
832
833 cairo_public void
834 cairo_device_to_user (cairo_t *cr, double *x, double *y);
835
836 cairo_public void
837 cairo_device_to_user_distance (cairo_t *cr, double *dx, double *dy);
838
839 /* Path creation functions */
840 cairo_public void
841 cairo_new_path (cairo_t *cr);
842
843 cairo_public void
844 cairo_move_to (cairo_t *cr, double x, double y);
845
846 cairo_public void
847 cairo_new_sub_path (cairo_t *cr);
848
849 cairo_public void
850 cairo_line_to (cairo_t *cr, double x, double y);
851
852 cairo_public void
853 cairo_curve_to (cairo_t *cr,
854                 double x1, double y1,
855                 double x2, double y2,
856                 double x3, double y3);
857
858 cairo_public void
859 cairo_arc (cairo_t *cr,
860            double xc, double yc,
861            double radius,
862            double angle1, double angle2);
863
864 cairo_public void
865 cairo_arc_negative (cairo_t *cr,
866                     double xc, double yc,
867                     double radius,
868                     double angle1, double angle2);
869
870 /* XXX: NYI
871 cairo_public void
872 cairo_arc_to (cairo_t *cr,
873               double x1, double y1,
874               double x2, double y2,
875               double radius);
876 */
877
878 cairo_public void
879 cairo_rel_move_to (cairo_t *cr, double dx, double dy);
880
881 cairo_public void
882 cairo_rel_line_to (cairo_t *cr, double dx, double dy);
883
884 cairo_public void
885 cairo_rel_curve_to (cairo_t *cr,
886                     double dx1, double dy1,
887                     double dx2, double dy2,
888                     double dx3, double dy3);
889
890 cairo_public void
891 cairo_rectangle (cairo_t *cr,
892                  double x, double y,
893                  double width, double height);
894
895 /* XXX: NYI
896 cairo_public void
897 cairo_stroke_to_path (cairo_t *cr);
898 */
899
900 cairo_public void
901 cairo_close_path (cairo_t *cr);
902
903 cairo_public void
904 cairo_path_extents (cairo_t *cr,
905                     double *x1, double *y1,
906                     double *x2, double *y2);
907
908 /* Painting functions */
909 cairo_public void
910 cairo_paint (cairo_t *cr);
911
912 cairo_public void
913 cairo_paint_with_alpha (cairo_t *cr,
914                         double   alpha);
915
916 cairo_public void
917 cairo_mask (cairo_t         *cr,
918             cairo_pattern_t *pattern);
919
920 cairo_public void
921 cairo_mask_surface (cairo_t         *cr,
922                     cairo_surface_t *surface,
923                     double           surface_x,
924                     double           surface_y);
925
926 cairo_public void
927 cairo_stroke (cairo_t *cr);
928
929 cairo_public void
930 cairo_stroke_preserve (cairo_t *cr);
931
932 cairo_public void
933 cairo_fill (cairo_t *cr);
934
935 cairo_public void
936 cairo_fill_preserve (cairo_t *cr);
937
938 cairo_public void
939 cairo_copy_page (cairo_t *cr);
940
941 cairo_public void
942 cairo_show_page (cairo_t *cr);
943
944 /* Insideness testing */
945 cairo_public cairo_bool_t
946 cairo_in_stroke (cairo_t *cr, double x, double y);
947
948 cairo_public cairo_bool_t
949 cairo_in_fill (cairo_t *cr, double x, double y);
950
951 cairo_public cairo_bool_t
952 cairo_in_clip (cairo_t *cr, double x, double y);
953
954 /* Rectangular extents */
955 cairo_public void
956 cairo_stroke_extents (cairo_t *cr,
957                       double *x1, double *y1,
958                       double *x2, double *y2);
959
960 cairo_public void
961 cairo_fill_extents (cairo_t *cr,
962                     double *x1, double *y1,
963                     double *x2, double *y2);
964
965 /* Clipping */
966 cairo_public void
967 cairo_reset_clip (cairo_t *cr);
968
969 cairo_public void
970 cairo_clip (cairo_t *cr);
971
972 cairo_public void
973 cairo_clip_preserve (cairo_t *cr);
974
975 cairo_public void
976 cairo_clip_extents (cairo_t *cr,
977                     double *x1, double *y1,
978                     double *x2, double *y2);
979
980 /**
981  * cairo_rectangle_t:
982  * @x: X coordinate of the left side of the rectangle
983  * @y: Y coordinate of the the top side of the rectangle
984  * @width: width of the rectangle
985  * @height: height of the rectangle
986  *
987  * A data structure for holding a rectangle.
988  *
989  * Since: 1.4
990  **/
991 typedef struct _cairo_rectangle {
992     double x, y, width, height;
993 } cairo_rectangle_t;
994
995 /**
996  * cairo_rectangle_list_t:
997  * @status: Error status of the rectangle list
998  * @rectangles: Array containing the rectangles
999  * @num_rectangles: Number of rectangles in this list
1000  * 
1001  * A data structure for holding a dynamically allocated
1002  * array of rectangles.
1003  *
1004  * Since: 1.4
1005  **/
1006 typedef struct _cairo_rectangle_list {
1007     cairo_status_t     status;
1008     cairo_rectangle_t *rectangles;
1009     int                num_rectangles;
1010 } cairo_rectangle_list_t;
1011
1012 cairo_public cairo_rectangle_list_t *
1013 cairo_copy_clip_rectangle_list (cairo_t *cr);
1014
1015 cairo_public void
1016 cairo_rectangle_list_destroy (cairo_rectangle_list_t *rectangle_list);
1017
1018 /* Font/Text functions */
1019
1020 /**
1021  * cairo_scaled_font_t:
1022  *
1023  * A #cairo_scaled_font_t is a font scaled to a particular size and device
1024  * resolution. A #cairo_scaled_font_t is most useful for low-level font
1025  * usage where a library or application wants to cache a reference
1026  * to a scaled font to speed up the computation of metrics.
1027  *
1028  * There are various types of scaled fonts, depending on the
1029  * <firstterm>font backend</firstterm> they use. The type of a
1030  * scaled font can be queried using cairo_scaled_font_get_type().
1031  *
1032  * Memory management of #cairo_scaled_font_t is done with
1033  * cairo_scaled_font_reference() and cairo_scaled_font_destroy().
1034  *
1035  * Since: 1.0
1036  **/
1037 typedef struct _cairo_scaled_font cairo_scaled_font_t;
1038
1039 /**
1040  * cairo_font_face_t:
1041  *
1042  * A #cairo_font_face_t specifies all aspects of a font other
1043  * than the size or font matrix (a font matrix is used to distort
1044  * a font by sheering it or scaling it unequally in the two
1045  * directions) . A font face can be set on a #cairo_t by using
1046  * cairo_set_font_face(); the size and font matrix are set with
1047  * cairo_set_font_size() and cairo_set_font_matrix().
1048  *
1049  * There are various types of font faces, depending on the
1050  * <firstterm>font backend</firstterm> they use. The type of a
1051  * font face can be queried using cairo_font_face_get_type().
1052  *
1053  * Memory management of #cairo_font_face_t is done with
1054  * cairo_font_face_reference() and cairo_font_face_destroy().
1055  *
1056  * Since: 1.0
1057  **/
1058 typedef struct _cairo_font_face cairo_font_face_t;
1059
1060 /**
1061  * cairo_glyph_t:
1062  * @index: glyph index in the font. The exact interpretation of the
1063  *      glyph index depends on the font technology being used.
1064  * @x: the offset in the X direction between the origin used for
1065  *     drawing or measuring the string and the origin of this glyph.
1066  * @y: the offset in the Y direction between the origin used for
1067  *     drawing or measuring the string and the origin of this glyph.
1068  *
1069  * The #cairo_glyph_t structure holds information about a single glyph
1070  * when drawing or measuring text. A font is (in simple terms) a
1071  * collection of shapes used to draw text. A glyph is one of these
1072  * shapes. There can be multiple glyphs for a single character
1073  * (alternates to be used in different contexts, for example), or a
1074  * glyph can be a <firstterm>ligature</firstterm> of multiple
1075  * characters. Cairo doesn't expose any way of converting input text
1076  * into glyphs, so in order to use the Cairo interfaces that take
1077  * arrays of glyphs, you must directly access the appropriate
1078  * underlying font system.
1079  *
1080  * Note that the offsets given by @x and @y are not cumulative. When
1081  * drawing or measuring text, each glyph is individually positioned
1082  * with respect to the overall origin
1083  *
1084  * Since: 1.0
1085  **/
1086 typedef struct {
1087     unsigned long        index;
1088     double               x;
1089     double               y;
1090 } cairo_glyph_t;
1091
1092 cairo_public cairo_glyph_t *
1093 cairo_glyph_allocate (int num_glyphs);
1094
1095 cairo_public void
1096 cairo_glyph_free (cairo_glyph_t *glyphs);
1097
1098 /**
1099  * cairo_text_cluster_t:
1100  * @num_bytes: the number of bytes of UTF-8 text covered by cluster
1101  * @num_glyphs: the number of glyphs covered by cluster
1102  *
1103  * The #cairo_text_cluster_t structure holds information about a single
1104  * <firstterm>text cluster</firstterm>.  A text cluster is a minimal
1105  * mapping of some glyphs corresponding to some UTF-8 text.
1106  *
1107  * For a cluster to be valid, both @num_bytes and @num_glyphs should
1108  * be non-negative, and at least one should be non-zero.
1109  * Note that clusters with zero glyphs are not as well supported as
1110  * normal clusters.  For example, PDF rendering applications typically
1111  * ignore those clusters when PDF text is being selected.
1112  *
1113  * See cairo_show_text_glyphs() for how clusters are used in advanced
1114  * text operations.
1115  *
1116  * Since: 1.8
1117  **/
1118 typedef struct {
1119     int        num_bytes;
1120     int        num_glyphs;
1121 } cairo_text_cluster_t;
1122
1123 cairo_public cairo_text_cluster_t *
1124 cairo_text_cluster_allocate (int num_clusters);
1125
1126 cairo_public void
1127 cairo_text_cluster_free (cairo_text_cluster_t *clusters);
1128
1129 /**
1130  * cairo_text_cluster_flags_t:
1131  * @CAIRO_TEXT_CLUSTER_FLAG_BACKWARD: The clusters in the cluster array
1132  * map to glyphs in the glyph array from end to start. (Since 1.8)
1133  *
1134  * Specifies properties of a text cluster mapping.
1135  *
1136  * Since: 1.8
1137  **/
1138 typedef enum _cairo_text_cluster_flags {
1139     CAIRO_TEXT_CLUSTER_FLAG_BACKWARD = 0x00000001
1140 } cairo_text_cluster_flags_t;
1141
1142 /**
1143  * cairo_text_extents_t:
1144  * @x_bearing: the horizontal distance from the origin to the
1145  *   leftmost part of the glyphs as drawn. Positive if the
1146  *   glyphs lie entirely to the right of the origin.
1147  * @y_bearing: the vertical distance from the origin to the
1148  *   topmost part of the glyphs as drawn. Positive only if the
1149  *   glyphs lie completely below the origin; will usually be
1150  *   negative.
1151  * @width: width of the glyphs as drawn
1152  * @height: height of the glyphs as drawn
1153  * @x_advance:distance to advance in the X direction
1154  *    after drawing these glyphs
1155  * @y_advance: distance to advance in the Y direction
1156  *   after drawing these glyphs. Will typically be zero except
1157  *   for vertical text layout as found in East-Asian languages.
1158  *
1159  * The #cairo_text_extents_t structure stores the extents of a single
1160  * glyph or a string of glyphs in user-space coordinates. Because text
1161  * extents are in user-space coordinates, they are mostly, but not
1162  * entirely, independent of the current transformation matrix. If you call
1163  * <literal>cairo_scale(cr, 2.0, 2.0)</literal>, text will
1164  * be drawn twice as big, but the reported text extents will not be
1165  * doubled. They will change slightly due to hinting (so you can't
1166  * assume that metrics are independent of the transformation matrix),
1167  * but otherwise will remain unchanged.
1168  *
1169  * Since: 1.0
1170  **/
1171 typedef struct {
1172     double x_bearing;
1173     double y_bearing;
1174     double width;
1175     double height;
1176     double x_advance;
1177     double y_advance;
1178 } cairo_text_extents_t;
1179
1180 /**
1181  * cairo_font_extents_t:
1182  * @ascent: the distance that the font extends above the baseline.
1183  *          Note that this is not always exactly equal to the maximum
1184  *          of the extents of all the glyphs in the font, but rather
1185  *          is picked to express the font designer's intent as to
1186  *          how the font should align with elements above it.
1187  * @descent: the distance that the font extends below the baseline.
1188  *           This value is positive for typical fonts that include
1189  *           portions below the baseline. Note that this is not always
1190  *           exactly equal to the maximum of the extents of all the
1191  *           glyphs in the font, but rather is picked to express the
1192  *           font designer's intent as to how the font should
1193  *           align with elements below it.
1194  * @height: the recommended vertical distance between baselines when
1195  *          setting consecutive lines of text with the font. This
1196  *          is greater than @ascent+@descent by a
1197  *          quantity known as the <firstterm>line spacing</firstterm>
1198  *          or <firstterm>external leading</firstterm>. When space
1199  *          is at a premium, most fonts can be set with only
1200  *          a distance of @ascent+@descent between lines.
1201  * @max_x_advance: the maximum distance in the X direction that
1202  *         the origin is advanced for any glyph in the font.
1203  * @max_y_advance: the maximum distance in the Y direction that
1204  *         the origin is advanced for any glyph in the font.
1205  *         This will be zero for normal fonts used for horizontal
1206  *         writing. (The scripts of East Asia are sometimes written
1207  *         vertically.)
1208  *
1209  * The #cairo_font_extents_t structure stores metric information for
1210  * a font. Values are given in the current user-space coordinate
1211  * system.
1212  *
1213  * Because font metrics are in user-space coordinates, they are
1214  * mostly, but not entirely, independent of the current transformation
1215  * matrix. If you call <literal>cairo_scale(cr, 2.0, 2.0)</literal>,
1216  * text will be drawn twice as big, but the reported text extents will
1217  * not be doubled. They will change slightly due to hinting (so you
1218  * can't assume that metrics are independent of the transformation
1219  * matrix), but otherwise will remain unchanged.
1220  *
1221  * Since: 1.0
1222  **/
1223 typedef struct {
1224     double ascent;
1225     double descent;
1226     double height;
1227     double max_x_advance;
1228     double max_y_advance;
1229 } cairo_font_extents_t;
1230
1231 /**
1232  * cairo_font_slant_t:
1233  * @CAIRO_FONT_SLANT_NORMAL: Upright font style, since 1.0
1234  * @CAIRO_FONT_SLANT_ITALIC: Italic font style, since 1.0
1235  * @CAIRO_FONT_SLANT_OBLIQUE: Oblique font style, since 1.0
1236  *
1237  * Specifies variants of a font face based on their slant.
1238  *
1239  * Since: 1.0
1240  **/
1241 typedef enum _cairo_font_slant {
1242     CAIRO_FONT_SLANT_NORMAL,
1243     CAIRO_FONT_SLANT_ITALIC,
1244     CAIRO_FONT_SLANT_OBLIQUE
1245 } cairo_font_slant_t;
1246
1247 /**
1248  * cairo_font_weight_t:
1249  * @CAIRO_FONT_WEIGHT_NORMAL: Normal font weight, since 1.0
1250  * @CAIRO_FONT_WEIGHT_BOLD: Bold font weight, since 1.0
1251  *
1252  * Specifies variants of a font face based on their weight.
1253  *
1254  * Since: 1.0
1255  **/
1256 typedef enum _cairo_font_weight {
1257     CAIRO_FONT_WEIGHT_NORMAL,
1258     CAIRO_FONT_WEIGHT_BOLD
1259 } cairo_font_weight_t;
1260
1261 /**
1262  * cairo_subpixel_order_t:
1263  * @CAIRO_SUBPIXEL_ORDER_DEFAULT: Use the default subpixel order for
1264  *   for the target device, since 1.0
1265  * @CAIRO_SUBPIXEL_ORDER_RGB: Subpixel elements are arranged horizontally
1266  *   with red at the left, since 1.0
1267  * @CAIRO_SUBPIXEL_ORDER_BGR:  Subpixel elements are arranged horizontally
1268  *   with blue at the left, since 1.0
1269  * @CAIRO_SUBPIXEL_ORDER_VRGB: Subpixel elements are arranged vertically
1270  *   with red at the top, since 1.0
1271  * @CAIRO_SUBPIXEL_ORDER_VBGR: Subpixel elements are arranged vertically
1272  *   with blue at the top, since 1.0
1273  *
1274  * The subpixel order specifies the order of color elements within
1275  * each pixel on the display device when rendering with an
1276  * antialiasing mode of %CAIRO_ANTIALIAS_SUBPIXEL.
1277  *
1278  * Since: 1.0
1279  **/
1280 typedef enum _cairo_subpixel_order {
1281     CAIRO_SUBPIXEL_ORDER_DEFAULT,
1282     CAIRO_SUBPIXEL_ORDER_RGB,
1283     CAIRO_SUBPIXEL_ORDER_BGR,
1284     CAIRO_SUBPIXEL_ORDER_VRGB,
1285     CAIRO_SUBPIXEL_ORDER_VBGR
1286 } cairo_subpixel_order_t;
1287
1288 /**
1289  * cairo_hint_style_t:
1290  * @CAIRO_HINT_STYLE_DEFAULT: Use the default hint style for
1291  *   font backend and target device, since 1.0
1292  * @CAIRO_HINT_STYLE_NONE: Do not hint outlines, since 1.0
1293  * @CAIRO_HINT_STYLE_SLIGHT: Hint outlines slightly to improve
1294  *   contrast while retaining good fidelity to the original
1295  *   shapes, since 1.0
1296  * @CAIRO_HINT_STYLE_MEDIUM: Hint outlines with medium strength
1297  *   giving a compromise between fidelity to the original shapes
1298  *   and contrast, since 1.0
1299  * @CAIRO_HINT_STYLE_FULL: Hint outlines to maximize contrast, since 1.0
1300  *
1301  * Specifies the type of hinting to do on font outlines. Hinting
1302  * is the process of fitting outlines to the pixel grid in order
1303  * to improve the appearance of the result. Since hinting outlines
1304  * involves distorting them, it also reduces the faithfulness
1305  * to the original outline shapes. Not all of the outline hinting
1306  * styles are supported by all font backends.
1307  *
1308  * New entries may be added in future versions.
1309  *
1310  * Since: 1.0
1311  **/
1312 typedef enum _cairo_hint_style {
1313     CAIRO_HINT_STYLE_DEFAULT,
1314     CAIRO_HINT_STYLE_NONE,
1315     CAIRO_HINT_STYLE_SLIGHT,
1316     CAIRO_HINT_STYLE_MEDIUM,
1317     CAIRO_HINT_STYLE_FULL
1318 } cairo_hint_style_t;
1319
1320 /**
1321  * cairo_hint_metrics_t:
1322  * @CAIRO_HINT_METRICS_DEFAULT: Hint metrics in the default
1323  *  manner for the font backend and target device, since 1.0
1324  * @CAIRO_HINT_METRICS_OFF: Do not hint font metrics, since 1.0
1325  * @CAIRO_HINT_METRICS_ON: Hint font metrics, since 1.0
1326  *
1327  * Specifies whether to hint font metrics; hinting font metrics
1328  * means quantizing them so that they are integer values in
1329  * device space. Doing this improves the consistency of
1330  * letter and line spacing, however it also means that text
1331  * will be laid out differently at different zoom factors.
1332  *
1333  * Since: 1.0
1334  **/
1335 typedef enum _cairo_hint_metrics {
1336     CAIRO_HINT_METRICS_DEFAULT,
1337     CAIRO_HINT_METRICS_OFF,
1338     CAIRO_HINT_METRICS_ON
1339 } cairo_hint_metrics_t;
1340
1341 /**
1342  * cairo_font_color_t:
1343  * @CAIRO_FONT_COLOR_DEFAULT: default color, if the font has color,
1344  *      use font's color, otherwise, use user specified, since 1.12.14
1345  * @CAIRO_FONT_COLOR_USER: always uses user's color, since 1.0
1346  *
1347  * When rendering text, specifies whether to use user's color set
1348  * by cairo_set_source_XXXX() or use glyph's builtin color
1349  *
1350  * Since: 1.4
1351  **/
1352  typedef enum _cairo_font_color {
1353         CAIRO_FONT_COLOR_DEFAULT,
1354         CAIRO_FONT_COLOR_USER
1355  } cairo_font_color_t;
1356
1357  /**
1358  * cairo_font_options_t:
1359  *
1360  * An opaque structure holding all options that are used when
1361  * rendering fonts.
1362  *
1363  * Individual features of a #cairo_font_options_t can be set or
1364  * accessed using functions named
1365  * <function>cairo_font_options_set_<emphasis>feature_name</emphasis>()</function> and
1366  * <function>cairo_font_options_get_<emphasis>feature_name</emphasis>()</function>, like
1367  * cairo_font_options_set_antialias() and
1368  * cairo_font_options_get_antialias().
1369  *
1370  * New features may be added to a #cairo_font_options_t in the
1371  * future.  For this reason, cairo_font_options_copy(),
1372  * cairo_font_options_equal(), cairo_font_options_merge(), and
1373  * cairo_font_options_hash() should be used to copy, check
1374  * for equality, merge, or compute a hash value of
1375  * #cairo_font_options_t objects.
1376  *
1377  * Since: 1.0
1378  **/
1379 typedef struct _cairo_font_options cairo_font_options_t;
1380
1381 cairo_public cairo_font_options_t *
1382 cairo_font_options_create (void);
1383
1384 cairo_public cairo_font_options_t *
1385 cairo_font_options_copy (const cairo_font_options_t *original);
1386
1387 cairo_public void
1388 cairo_font_options_destroy (cairo_font_options_t *options);
1389
1390 cairo_public cairo_status_t
1391 cairo_font_options_status (cairo_font_options_t *options);
1392
1393 cairo_public void
1394 cairo_font_options_merge (cairo_font_options_t       *options,
1395                           const cairo_font_options_t *other);
1396 cairo_public cairo_bool_t
1397 cairo_font_options_equal (const cairo_font_options_t *options,
1398                           const cairo_font_options_t *other);
1399
1400 cairo_public unsigned long
1401 cairo_font_options_hash (const cairo_font_options_t *options);
1402
1403 cairo_public void
1404 cairo_font_options_set_antialias (cairo_font_options_t *options,
1405                                   cairo_antialias_t     antialias);
1406 cairo_public cairo_antialias_t
1407 cairo_font_options_get_antialias (const cairo_font_options_t *options);
1408
1409 cairo_public void
1410 cairo_font_options_set_subpixel_order (cairo_font_options_t   *options,
1411                                        cairo_subpixel_order_t  subpixel_order);
1412 cairo_public cairo_subpixel_order_t
1413 cairo_font_options_get_subpixel_order (const cairo_font_options_t *options);
1414
1415 cairo_public void
1416 cairo_font_options_set_hint_style (cairo_font_options_t *options,
1417                                    cairo_hint_style_t     hint_style);
1418 cairo_public cairo_hint_style_t
1419 cairo_font_options_get_hint_style (const cairo_font_options_t *options);
1420
1421 cairo_public void
1422 cairo_font_options_set_hint_metrics (cairo_font_options_t *options,
1423                                      cairo_hint_metrics_t  hint_metrics);
1424 cairo_public cairo_hint_metrics_t
1425 cairo_font_options_get_hint_metrics (const cairo_font_options_t *options);
1426
1427 cairo_public void
1428 cairo_font_options_set_font_color (cairo_font_options_t *options,
1429 cairo_font_color_t  font_color);
1430
1431 cairo_public cairo_font_color_t
1432 cairo_font_options_get_font_color (const cairo_font_options_t *options);
1433
1434 /* This interface is for dealing with text as text, not caring about the
1435    font object inside the the cairo_t. */
1436
1437 cairo_public void
1438 cairo_select_font_face (cairo_t              *cr,
1439                         const char           *family,
1440                         cairo_font_slant_t   slant,
1441                         cairo_font_weight_t  weight);
1442
1443 cairo_public void
1444 cairo_set_font_size (cairo_t *cr, double size);
1445
1446 cairo_public void
1447 cairo_set_font_matrix (cairo_t              *cr,
1448                        const cairo_matrix_t *matrix);
1449
1450 cairo_public void
1451 cairo_get_font_matrix (cairo_t *cr,
1452                        cairo_matrix_t *matrix);
1453
1454 cairo_public void
1455 cairo_set_font_options (cairo_t                    *cr,
1456                         const cairo_font_options_t *options);
1457
1458 cairo_public void
1459 cairo_get_font_options (cairo_t              *cr,
1460                         cairo_font_options_t *options);
1461
1462 cairo_public void
1463 cairo_set_font_face (cairo_t *cr, cairo_font_face_t *font_face);
1464
1465 cairo_public cairo_font_face_t *
1466 cairo_get_font_face (cairo_t *cr);
1467
1468 cairo_public void
1469 cairo_set_scaled_font (cairo_t                   *cr,
1470                        const cairo_scaled_font_t *scaled_font);
1471
1472 cairo_public cairo_scaled_font_t *
1473 cairo_get_scaled_font (cairo_t *cr);
1474
1475 cairo_public void
1476 cairo_show_text (cairo_t *cr, const char *utf8);
1477
1478 cairo_public void
1479 cairo_show_glyphs (cairo_t *cr, const cairo_glyph_t *glyphs, int num_glyphs);
1480
1481 cairo_public void
1482 cairo_show_text_glyphs (cairo_t                    *cr,
1483                         const char                 *utf8,
1484                         int                         utf8_len,
1485                         const cairo_glyph_t        *glyphs,
1486                         int                         num_glyphs,
1487                         const cairo_text_cluster_t *clusters,
1488                         int                         num_clusters,
1489                         cairo_text_cluster_flags_t  cluster_flags);
1490
1491 cairo_public void
1492 cairo_text_path  (cairo_t *cr, const char *utf8);
1493
1494 cairo_public void
1495 cairo_glyph_path (cairo_t *cr, const cairo_glyph_t *glyphs, int num_glyphs);
1496
1497 cairo_public void
1498 cairo_text_extents (cairo_t              *cr,
1499                     const char           *utf8,
1500                     cairo_text_extents_t *extents);
1501
1502 cairo_public void
1503 cairo_glyph_extents (cairo_t               *cr,
1504                      const cairo_glyph_t   *glyphs,
1505                      int                   num_glyphs,
1506                      cairo_text_extents_t  *extents);
1507
1508 cairo_public void
1509 cairo_font_extents (cairo_t              *cr,
1510                     cairo_font_extents_t *extents);
1511
1512 /* Generic identifier for a font style */
1513
1514 cairo_public cairo_font_face_t *
1515 cairo_font_face_reference (cairo_font_face_t *font_face);
1516
1517 cairo_public void
1518 cairo_font_face_destroy (cairo_font_face_t *font_face);
1519
1520 cairo_public unsigned int
1521 cairo_font_face_get_reference_count (cairo_font_face_t *font_face);
1522
1523 cairo_public cairo_status_t
1524 cairo_font_face_status (cairo_font_face_t *font_face);
1525
1526
1527 /**
1528  * cairo_font_type_t:
1529  * @CAIRO_FONT_TYPE_TOY: The font was created using cairo's toy font api (Since: 1.2)
1530  * @CAIRO_FONT_TYPE_FT: The font is of type FreeType (Since: 1.2)
1531  * @CAIRO_FONT_TYPE_WIN32: The font is of type Win32 (Since: 1.2)
1532  * @CAIRO_FONT_TYPE_QUARTZ: The font is of type Quartz (Since: 1.6, in 1.2 and
1533  * 1.4 it was named CAIRO_FONT_TYPE_ATSUI)
1534  * @CAIRO_FONT_TYPE_USER: The font was create using cairo's user font api (Since: 1.8)
1535  *
1536  * #cairo_font_type_t is used to describe the type of a given font
1537  * face or scaled font. The font types are also known as "font
1538  * backends" within cairo.
1539  *
1540  * The type of a font face is determined by the function used to
1541  * create it, which will generally be of the form
1542  * <function>cairo_<emphasis>type</emphasis>_font_face_create(<!-- -->)</function>.
1543  * The font face type can be queried with cairo_font_face_get_type()
1544  *
1545  * The various #cairo_font_face_t functions can be used with a font face
1546  * of any type.
1547  *
1548  * The type of a scaled font is determined by the type of the font
1549  * face passed to cairo_scaled_font_create(). The scaled font type can
1550  * be queried with cairo_scaled_font_get_type()
1551  *
1552  * The various #cairo_scaled_font_t functions can be used with scaled
1553  * fonts of any type, but some font backends also provide
1554  * type-specific functions that must only be called with a scaled font
1555  * of the appropriate type. These functions have names that begin with
1556  * <function>cairo_<emphasis>type</emphasis>_scaled_font(<!-- -->)</function>
1557  * such as cairo_ft_scaled_font_lock_face().
1558  *
1559  * The behavior of calling a type-specific function with a scaled font
1560  * of the wrong type is undefined.
1561  *
1562  * New entries may be added in future versions.
1563  *
1564  * Since: 1.2
1565  **/
1566 typedef enum _cairo_font_type {
1567     CAIRO_FONT_TYPE_TOY,
1568     CAIRO_FONT_TYPE_FT,
1569     CAIRO_FONT_TYPE_WIN32,
1570     CAIRO_FONT_TYPE_QUARTZ,
1571     CAIRO_FONT_TYPE_USER
1572 } cairo_font_type_t;
1573
1574 cairo_public cairo_font_type_t
1575 cairo_font_face_get_type (cairo_font_face_t *font_face);
1576
1577 cairo_public void *
1578 cairo_font_face_get_user_data (cairo_font_face_t           *font_face,
1579                                const cairo_user_data_key_t *key);
1580
1581 cairo_public cairo_status_t
1582 cairo_font_face_set_user_data (cairo_font_face_t           *font_face,
1583                                const cairo_user_data_key_t *key,
1584                                void                        *user_data,
1585                                cairo_destroy_func_t         destroy);
1586
1587 /* Portable interface to general font features. */
1588
1589 cairo_public cairo_scaled_font_t *
1590 cairo_scaled_font_create (cairo_font_face_t          *font_face,
1591                           const cairo_matrix_t       *font_matrix,
1592                           const cairo_matrix_t       *ctm,
1593                           const cairo_font_options_t *options);
1594
1595 cairo_public cairo_scaled_font_t *
1596 cairo_scaled_font_reference (cairo_scaled_font_t *scaled_font);
1597
1598 cairo_public void
1599 cairo_scaled_font_destroy (cairo_scaled_font_t *scaled_font);
1600
1601 cairo_public unsigned int
1602 cairo_scaled_font_get_reference_count (cairo_scaled_font_t *scaled_font);
1603
1604 cairo_public cairo_status_t
1605 cairo_scaled_font_status (cairo_scaled_font_t *scaled_font);
1606
1607 cairo_public cairo_font_type_t
1608 cairo_scaled_font_get_type (cairo_scaled_font_t *scaled_font);
1609
1610 cairo_public void *
1611 cairo_scaled_font_get_user_data (cairo_scaled_font_t         *scaled_font,
1612                                  const cairo_user_data_key_t *key);
1613
1614 cairo_public cairo_status_t
1615 cairo_scaled_font_set_user_data (cairo_scaled_font_t         *scaled_font,
1616                                  const cairo_user_data_key_t *key,
1617                                  void                        *user_data,
1618                                  cairo_destroy_func_t         destroy);
1619
1620 cairo_public void
1621 cairo_scaled_font_extents (cairo_scaled_font_t  *scaled_font,
1622                            cairo_font_extents_t *extents);
1623
1624 cairo_public void
1625 cairo_scaled_font_text_extents (cairo_scaled_font_t  *scaled_font,
1626                                 const char           *utf8,
1627                                 cairo_text_extents_t *extents);
1628
1629 cairo_public void
1630 cairo_scaled_font_glyph_extents (cairo_scaled_font_t   *scaled_font,
1631                                  const cairo_glyph_t   *glyphs,
1632                                  int                   num_glyphs,
1633                                  cairo_text_extents_t  *extents);
1634
1635 cairo_public cairo_status_t
1636 cairo_scaled_font_text_to_glyphs (cairo_scaled_font_t        *scaled_font,
1637                                   double                      x,
1638                                   double                      y,
1639                                   const char                 *utf8,
1640                                   int                         utf8_len,
1641                                   cairo_glyph_t             **glyphs,
1642                                   int                        *num_glyphs,
1643                                   cairo_text_cluster_t      **clusters,
1644                                   int                        *num_clusters,
1645                                   cairo_text_cluster_flags_t *cluster_flags);
1646
1647 cairo_public cairo_font_face_t *
1648 cairo_scaled_font_get_font_face (cairo_scaled_font_t *scaled_font);
1649
1650 cairo_public void
1651 cairo_scaled_font_get_font_matrix (cairo_scaled_font_t  *scaled_font,
1652                                    cairo_matrix_t       *font_matrix);
1653
1654 cairo_public void
1655 cairo_scaled_font_get_ctm (cairo_scaled_font_t  *scaled_font,
1656                            cairo_matrix_t       *ctm);
1657
1658 cairo_public void
1659 cairo_scaled_font_get_scale_matrix (cairo_scaled_font_t *scaled_font,
1660                                     cairo_matrix_t      *scale_matrix);
1661
1662 cairo_public void
1663 cairo_scaled_font_get_font_options (cairo_scaled_font_t         *scaled_font,
1664                                     cairo_font_options_t        *options);
1665
1666
1667 /* Toy fonts */
1668
1669 cairo_public cairo_font_face_t *
1670 cairo_toy_font_face_create (const char           *family,
1671                             cairo_font_slant_t    slant,
1672                             cairo_font_weight_t   weight);
1673
1674 cairo_public const char *
1675 cairo_toy_font_face_get_family (cairo_font_face_t *font_face);
1676
1677 cairo_public cairo_font_slant_t
1678 cairo_toy_font_face_get_slant (cairo_font_face_t *font_face);
1679
1680 cairo_public cairo_font_weight_t
1681 cairo_toy_font_face_get_weight (cairo_font_face_t *font_face);
1682
1683
1684 /* User fonts */
1685
1686 cairo_public cairo_font_face_t *
1687 cairo_user_font_face_create (void);
1688
1689 /* User-font method signatures */
1690
1691 /**
1692  * cairo_user_scaled_font_init_func_t:
1693  * @scaled_font: the scaled-font being created
1694  * @cr: a cairo context, in font space
1695  * @extents: font extents to fill in, in font space
1696  *
1697  * #cairo_user_scaled_font_init_func_t is the type of function which is
1698  * called when a scaled-font needs to be created for a user font-face.
1699  *
1700  * The cairo context @cr is not used by the caller, but is prepared in font
1701  * space, similar to what the cairo contexts passed to the render_glyph
1702  * method will look like.  The callback can use this context for extents
1703  * computation for example.  After the callback is called, @cr is checked
1704  * for any error status.
1705  *
1706  * The @extents argument is where the user font sets the font extents for
1707  * @scaled_font.  It is in font space, which means that for most cases its
1708  * ascent and descent members should add to 1.0.  @extents is preset to
1709  * hold a value of 1.0 for ascent, height, and max_x_advance, and 0.0 for
1710  * descent and max_y_advance members.
1711  *
1712  * The callback is optional.  If not set, default font extents as described
1713  * in the previous paragraph will be used.
1714  *
1715  * Note that @scaled_font is not fully initialized at this
1716  * point and trying to use it for text operations in the callback will result
1717  * in deadlock.
1718  *
1719  * Returns: %CAIRO_STATUS_SUCCESS upon success, or an error status on error.
1720  *
1721  * Since: 1.8
1722  **/
1723 typedef cairo_status_t (*cairo_user_scaled_font_init_func_t) (cairo_scaled_font_t  *scaled_font,
1724                                                               cairo_t              *cr,
1725                                                               cairo_font_extents_t *extents);
1726
1727 /**
1728  * cairo_user_scaled_font_render_glyph_func_t:
1729  * @scaled_font: user scaled-font
1730  * @glyph: glyph code to render
1731  * @cr: cairo context to draw to, in font space
1732  * @extents: glyph extents to fill in, in font space
1733  *
1734  * #cairo_user_scaled_font_render_glyph_func_t is the type of function which
1735  * is called when a user scaled-font needs to render a glyph.
1736  *
1737  * The callback is mandatory, and expected to draw the glyph with code @glyph to
1738  * the cairo context @cr.  @cr is prepared such that the glyph drawing is done in
1739  * font space.  That is, the matrix set on @cr is the scale matrix of @scaled_font,
1740  * The @extents argument is where the user font sets the font extents for
1741  * @scaled_font.  However, if user prefers to draw in user space, they can
1742  * achieve that by changing the matrix on @cr.  All cairo rendering operations
1743  * to @cr are permitted, however, the result is undefined if any source other
1744  * than the default source on @cr is used.  That means, glyph bitmaps should
1745  * be rendered using cairo_mask() instead of cairo_paint().
1746  *
1747  * Other non-default settings on @cr include a font size of 1.0 (given that
1748  * it is set up to be in font space), and font options corresponding to
1749  * @scaled_font.
1750  *
1751  * The @extents argument is preset to have <literal>x_bearing</literal>,
1752  * <literal>width</literal>, and <literal>y_advance</literal> of zero,
1753  * <literal>y_bearing</literal> set to <literal>-font_extents.ascent</literal>,
1754  * <literal>height</literal> to <literal>font_extents.ascent+font_extents.descent</literal>,
1755  * and <literal>x_advance</literal> to <literal>font_extents.max_x_advance</literal>.
1756  * The only field user needs to set in majority of cases is
1757  * <literal>x_advance</literal>.
1758  * If the <literal>width</literal> field is zero upon the callback returning
1759  * (which is its preset value), the glyph extents are automatically computed
1760  * based on the drawings done to @cr.  This is in most cases exactly what the
1761  * desired behavior is.  However, if for any reason the callback sets the
1762  * extents, it must be ink extents, and include the extents of all drawing
1763  * done to @cr in the callback.
1764  *
1765  * Returns: %CAIRO_STATUS_SUCCESS upon success, or
1766  * %CAIRO_STATUS_USER_FONT_ERROR or any other error status on error.
1767  *
1768  * Since: 1.8
1769  **/
1770 typedef cairo_status_t (*cairo_user_scaled_font_render_glyph_func_t) (cairo_scaled_font_t  *scaled_font,
1771                                                                       unsigned long         glyph,
1772                                                                       cairo_t              *cr,
1773                                                                       cairo_text_extents_t *extents);
1774
1775 /**
1776  * cairo_user_scaled_font_text_to_glyphs_func_t:
1777  * @scaled_font: the scaled-font being created
1778  * @utf8: a string of text encoded in UTF-8
1779  * @utf8_len: length of @utf8 in bytes
1780  * @glyphs: pointer to array of glyphs to fill, in font space
1781  * @num_glyphs: pointer to number of glyphs
1782  * @clusters: pointer to array of cluster mapping information to fill, or %NULL
1783  * @num_clusters: pointer to number of clusters
1784  * @cluster_flags: pointer to location to store cluster flags corresponding to the
1785  *                 output @clusters
1786  *
1787  * #cairo_user_scaled_font_text_to_glyphs_func_t is the type of function which
1788  * is called to convert input text to an array of glyphs.  This is used by the
1789  * cairo_show_text() operation.
1790  *
1791  * Using this callback the user-font has full control on glyphs and their
1792  * positions.  That means, it allows for features like ligatures and kerning,
1793  * as well as complex <firstterm>shaping</firstterm> required for scripts like
1794  * Arabic and Indic.
1795  *
1796  * The @num_glyphs argument is preset to the number of glyph entries available
1797  * in the @glyphs buffer. If the @glyphs buffer is %NULL, the value of
1798  * @num_glyphs will be zero.  If the provided glyph array is too short for
1799  * the conversion (or for convenience), a new glyph array may be allocated
1800  * using cairo_glyph_allocate() and placed in @glyphs.  Upon return,
1801  * @num_glyphs should contain the number of generated glyphs.  If the value
1802  * @glyphs points at has changed after the call, the caller will free the
1803  * allocated glyph array using cairo_glyph_free().  The caller will also free
1804  * the original value of @glyphs, so the callback shouldn't do so.
1805  * The callback should populate the glyph indices and positions (in font space)
1806  * assuming that the text is to be shown at the origin.
1807  *
1808  * If @clusters is not %NULL, @num_clusters and @cluster_flags are also
1809  * non-%NULL, and cluster mapping should be computed. The semantics of how
1810  * cluster array allocation works is similar to the glyph array.  That is,
1811  * if @clusters initially points to a non-%NULL value, that array may be used
1812  * as a cluster buffer, and @num_clusters points to the number of cluster
1813  * entries available there.  If the provided cluster array is too short for
1814  * the conversion (or for convenience), a new cluster array may be allocated
1815  * using cairo_text_cluster_allocate() and placed in @clusters.  In this case,
1816  * the original value of @clusters will still be freed by the caller.  Upon
1817  * return, @num_clusters should contain the number of generated clusters.
1818  * If the value @clusters points at has changed after the call, the caller
1819  * will free the allocated cluster array using cairo_text_cluster_free().
1820  *
1821  * The callback is optional.  If @num_glyphs is negative upon
1822  * the callback returning or if the return value
1823  * is %CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED, the unicode_to_glyph callback
1824  * is tried.  See #cairo_user_scaled_font_unicode_to_glyph_func_t.
1825  *
1826  * Note: While cairo does not impose any limitation on glyph indices,
1827  * some applications may assume that a glyph index fits in a 16-bit
1828  * unsigned integer.  As such, it is advised that user-fonts keep their
1829  * glyphs in the 0 to 65535 range.  Furthermore, some applications may
1830  * assume that glyph 0 is a special glyph-not-found glyph.  User-fonts
1831  * are advised to use glyph 0 for such purposes and do not use that
1832  * glyph value for other purposes.
1833  *
1834  * Returns: %CAIRO_STATUS_SUCCESS upon success,
1835  * %CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED if fallback options should be tried,
1836  * or %CAIRO_STATUS_USER_FONT_ERROR or any other error status on error.
1837  *
1838  * Since: 1.8
1839  **/
1840 typedef cairo_status_t (*cairo_user_scaled_font_text_to_glyphs_func_t) (cairo_scaled_font_t        *scaled_font,
1841                                                                         const char                 *utf8,
1842                                                                         int                         utf8_len,
1843                                                                         cairo_glyph_t             **glyphs,
1844                                                                         int                        *num_glyphs,
1845                                                                         cairo_text_cluster_t      **clusters,
1846                                                                         int                        *num_clusters,
1847                                                                         cairo_text_cluster_flags_t *cluster_flags);
1848
1849 /**
1850  * cairo_user_scaled_font_unicode_to_glyph_func_t:
1851  * @scaled_font: the scaled-font being created
1852  * @unicode: input unicode character code-point
1853  * @glyph_index: output glyph index
1854  *
1855  * #cairo_user_scaled_font_unicode_to_glyph_func_t is the type of function which
1856  * is called to convert an input Unicode character to a single glyph.
1857  * This is used by the cairo_show_text() operation.
1858  *
1859  * This callback is used to provide the same functionality as the
1860  * text_to_glyphs callback does (see #cairo_user_scaled_font_text_to_glyphs_func_t)
1861  * but has much less control on the output,
1862  * in exchange for increased ease of use.  The inherent assumption to using
1863  * this callback is that each character maps to one glyph, and that the
1864  * mapping is context independent.  It also assumes that glyphs are positioned
1865  * according to their advance width.  These mean no ligatures, kerning, or
1866  * complex scripts can be implemented using this callback.
1867  *
1868  * The callback is optional, and only used if text_to_glyphs callback is not
1869  * set or fails to return glyphs.  If this callback is not set or if it returns
1870  * %CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED, an identity mapping from Unicode
1871  * code-points to glyph indices is assumed.
1872  *
1873  * Note: While cairo does not impose any limitation on glyph indices,
1874  * some applications may assume that a glyph index fits in a 16-bit
1875  * unsigned integer.  As such, it is advised that user-fonts keep their
1876  * glyphs in the 0 to 65535 range.  Furthermore, some applications may
1877  * assume that glyph 0 is a special glyph-not-found glyph.  User-fonts
1878  * are advised to use glyph 0 for such purposes and do not use that
1879  * glyph value for other purposes.
1880  *
1881  * Returns: %CAIRO_STATUS_SUCCESS upon success,
1882  * %CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED if fallback options should be tried,
1883  * or %CAIRO_STATUS_USER_FONT_ERROR or any other error status on error.
1884  *
1885  * Since: 1.8
1886  **/
1887 typedef cairo_status_t (*cairo_user_scaled_font_unicode_to_glyph_func_t) (cairo_scaled_font_t *scaled_font,
1888                                                                           unsigned long        unicode,
1889                                                                           unsigned long       *glyph_index);
1890
1891 /* User-font method setters */
1892
1893 cairo_public void
1894 cairo_user_font_face_set_init_func (cairo_font_face_t                  *font_face,
1895                                     cairo_user_scaled_font_init_func_t  init_func);
1896
1897 cairo_public void
1898 cairo_user_font_face_set_render_glyph_func (cairo_font_face_t                          *font_face,
1899                                             cairo_user_scaled_font_render_glyph_func_t  render_glyph_func);
1900
1901 cairo_public void
1902 cairo_user_font_face_set_text_to_glyphs_func (cairo_font_face_t                            *font_face,
1903                                               cairo_user_scaled_font_text_to_glyphs_func_t  text_to_glyphs_func);
1904
1905 cairo_public void
1906 cairo_user_font_face_set_unicode_to_glyph_func (cairo_font_face_t                              *font_face,
1907                                                 cairo_user_scaled_font_unicode_to_glyph_func_t  unicode_to_glyph_func);
1908
1909 /* User-font method getters */
1910
1911 cairo_public cairo_user_scaled_font_init_func_t
1912 cairo_user_font_face_get_init_func (cairo_font_face_t *font_face);
1913
1914 cairo_public cairo_user_scaled_font_render_glyph_func_t
1915 cairo_user_font_face_get_render_glyph_func (cairo_font_face_t *font_face);
1916
1917 cairo_public cairo_user_scaled_font_text_to_glyphs_func_t
1918 cairo_user_font_face_get_text_to_glyphs_func (cairo_font_face_t *font_face);
1919
1920 cairo_public cairo_user_scaled_font_unicode_to_glyph_func_t
1921 cairo_user_font_face_get_unicode_to_glyph_func (cairo_font_face_t *font_face);
1922
1923
1924 /* Query functions */
1925
1926 cairo_public cairo_operator_t
1927 cairo_get_operator (cairo_t *cr);
1928
1929 cairo_public cairo_pattern_t *
1930 cairo_get_source (cairo_t *cr);
1931
1932 cairo_public double
1933 cairo_get_tolerance (cairo_t *cr);
1934
1935 cairo_public cairo_antialias_t
1936 cairo_get_antialias (cairo_t *cr);
1937
1938 cairo_public cairo_bool_t
1939 cairo_has_current_point (cairo_t *cr);
1940
1941 cairo_public void
1942 cairo_get_current_point (cairo_t *cr, double *x, double *y);
1943
1944 cairo_public cairo_fill_rule_t
1945 cairo_get_fill_rule (cairo_t *cr);
1946
1947 cairo_public double
1948 cairo_get_line_width (cairo_t *cr);
1949
1950 cairo_public cairo_line_cap_t
1951 cairo_get_line_cap (cairo_t *cr);
1952
1953 cairo_public cairo_line_join_t
1954 cairo_get_line_join (cairo_t *cr);
1955
1956 cairo_public double
1957 cairo_get_miter_limit (cairo_t *cr);
1958
1959 cairo_public int
1960 cairo_get_dash_count (cairo_t *cr);
1961
1962 cairo_public void
1963 cairo_get_dash (cairo_t *cr, double *dashes, double *offset);
1964
1965 cairo_public void
1966 cairo_get_matrix (cairo_t *cr, cairo_matrix_t *matrix);
1967
1968 cairo_public cairo_surface_t *
1969 cairo_get_target (cairo_t *cr);
1970
1971 cairo_public cairo_surface_t *
1972 cairo_get_group_target (cairo_t *cr);
1973
1974 /**
1975  * cairo_path_data_type_t:
1976  * @CAIRO_PATH_MOVE_TO: A move-to operation, since 1.0
1977  * @CAIRO_PATH_LINE_TO: A line-to operation, since 1.0
1978  * @CAIRO_PATH_CURVE_TO: A curve-to operation, since 1.0
1979  * @CAIRO_PATH_CLOSE_PATH: A close-path operation, since 1.0
1980  *
1981  * #cairo_path_data_t is used to describe the type of one portion
1982  * of a path when represented as a #cairo_path_t.
1983  * See #cairo_path_data_t for details.
1984  *
1985  * Since: 1.0
1986  **/
1987 typedef enum _cairo_path_data_type {
1988     CAIRO_PATH_MOVE_TO,
1989     CAIRO_PATH_LINE_TO,
1990     CAIRO_PATH_CURVE_TO,
1991     CAIRO_PATH_CLOSE_PATH
1992 } cairo_path_data_type_t;
1993
1994 /**
1995  * cairo_path_data_t:
1996  *
1997  * #cairo_path_data_t is used to represent the path data inside a
1998  * #cairo_path_t.
1999  *
2000  * The data structure is designed to try to balance the demands of
2001  * efficiency and ease-of-use. A path is represented as an array of
2002  * #cairo_path_data_t, which is a union of headers and points.
2003  *
2004  * Each portion of the path is represented by one or more elements in
2005  * the array, (one header followed by 0 or more points). The length
2006  * value of the header is the number of array elements for the current
2007  * portion including the header, (ie. length == 1 + # of points), and
2008  * where the number of points for each element type is as follows:
2009  *
2010  * <programlisting>
2011  *     %CAIRO_PATH_MOVE_TO:     1 point
2012  *     %CAIRO_PATH_LINE_TO:     1 point
2013  *     %CAIRO_PATH_CURVE_TO:    3 points
2014  *     %CAIRO_PATH_CLOSE_PATH:  0 points
2015  * </programlisting>
2016  *
2017  * The semantics and ordering of the coordinate values are consistent
2018  * with cairo_move_to(), cairo_line_to(), cairo_curve_to(), and
2019  * cairo_close_path().
2020  *
2021  * Here is sample code for iterating through a #cairo_path_t:
2022  *
2023  * <informalexample><programlisting>
2024  *      int i;
2025  *      cairo_path_t *path;
2026  *      cairo_path_data_t *data;
2027  * &nbsp;
2028  *      path = cairo_copy_path (cr);
2029  * &nbsp;
2030  *      for (i=0; i < path->num_data; i += path->data[i].header.length) {
2031  *          data = &amp;path->data[i];
2032  *          switch (data->header.type) {
2033  *          case CAIRO_PATH_MOVE_TO:
2034  *              do_move_to_things (data[1].point.x, data[1].point.y);
2035  *              break;
2036  *          case CAIRO_PATH_LINE_TO:
2037  *              do_line_to_things (data[1].point.x, data[1].point.y);
2038  *              break;
2039  *          case CAIRO_PATH_CURVE_TO:
2040  *              do_curve_to_things (data[1].point.x, data[1].point.y,
2041  *                                  data[2].point.x, data[2].point.y,
2042  *                                  data[3].point.x, data[3].point.y);
2043  *              break;
2044  *          case CAIRO_PATH_CLOSE_PATH:
2045  *              do_close_path_things ();
2046  *              break;
2047  *          }
2048  *      }
2049  *      cairo_path_destroy (path);
2050  * </programlisting></informalexample>
2051  *
2052  * As of cairo 1.4, cairo does not mind if there are more elements in
2053  * a portion of the path than needed.  Such elements can be used by
2054  * users of the cairo API to hold extra values in the path data
2055  * structure.  For this reason, it is recommended that applications
2056  * always use <literal>data->header.length</literal> to
2057  * iterate over the path data, instead of hardcoding the number of
2058  * elements for each element type.
2059  *
2060  * Since: 1.0
2061  **/
2062 typedef union _cairo_path_data_t cairo_path_data_t;
2063 union _cairo_path_data_t {
2064     struct {
2065         cairo_path_data_type_t type;
2066         int length;
2067     } header;
2068     struct {
2069         double x, y;
2070     } point;
2071 };
2072
2073 /**
2074  * cairo_path_t:
2075  * @status: the current error status
2076  * @data: the elements in the path
2077  * @num_data: the number of elements in the data array
2078  *
2079  * A data structure for holding a path. This data structure serves as
2080  * the return value for cairo_copy_path() and
2081  * cairo_copy_path_flat() as well the input value for
2082  * cairo_append_path().
2083  *
2084  * See #cairo_path_data_t for hints on how to iterate over the
2085  * actual data within the path.
2086  *
2087  * The num_data member gives the number of elements in the data
2088  * array. This number is larger than the number of independent path
2089  * portions (defined in #cairo_path_data_type_t), since the data
2090  * includes both headers and coordinates for each portion.
2091  *
2092  * Since: 1.0
2093  **/
2094 typedef struct cairo_path {
2095     cairo_status_t status;
2096     cairo_path_data_t *data;
2097     int num_data;
2098 } cairo_path_t;
2099
2100 cairo_public cairo_path_t *
2101 cairo_copy_path (cairo_t *cr);
2102
2103 cairo_public cairo_path_t *
2104 cairo_copy_path_flat (cairo_t *cr);
2105
2106 cairo_public void
2107 cairo_append_path (cairo_t              *cr,
2108                    const cairo_path_t   *path);
2109
2110 cairo_public void
2111 cairo_path_destroy (cairo_path_t *path);
2112
2113 /* Error status queries */
2114
2115 cairo_public cairo_status_t
2116 cairo_status (cairo_t *cr);
2117
2118 cairo_public const char *
2119 cairo_status_to_string (cairo_status_t status);
2120
2121 /* Backend device manipulation */
2122
2123 cairo_public cairo_device_t *
2124 cairo_device_reference (cairo_device_t *device);
2125
2126 /**
2127  * cairo_device_type_t:
2128  * @CAIRO_DEVICE_TYPE_DRM: The device is of type Direct Render Manager, since 1.10
2129  * @CAIRO_DEVICE_TYPE_GL: The device is of type OpenGL, since 1.10
2130  * @CAIRO_DEVICE_TYPE_SCRIPT: The device is of type script, since 1.10
2131  * @CAIRO_DEVICE_TYPE_XCB: The device is of type xcb, since 1.10
2132  * @CAIRO_DEVICE_TYPE_XLIB: The device is of type xlib, since 1.10
2133  * @CAIRO_DEVICE_TYPE_XML: The device is of type XML, since 1.10
2134  * @CAIRO_DEVICE_TYPE_COGL: The device is of type cogl, since 1.12
2135  * @CAIRO_DEVICE_TYPE_WIN32: The device is of type win32, since 1.12
2136  * @CAIRO_DEVICE_TYPE_INVALID: The device is invalid, since 1.10
2137  *
2138  * #cairo_device_type_t is used to describe the type of a given
2139  * device. The devices types are also known as "backends" within cairo.
2140  *
2141  * The device type can be queried with cairo_device_get_type()
2142  *
2143  * The various #cairo_device_t functions can be used with devices of
2144  * any type, but some backends also provide type-specific functions
2145  * that must only be called with a device of the appropriate
2146  * type. These functions have names that begin with
2147  * <literal>cairo_<emphasis>type</emphasis>_device</literal> such as
2148  * cairo_xcb_device_debug_cap_xrender_version().
2149  *
2150  * The behavior of calling a type-specific function with a device of
2151  * the wrong type is undefined.
2152  *
2153  * New entries may be added in future versions.
2154  *
2155  * Since: 1.10
2156  **/
2157 typedef enum _cairo_device_type {
2158     CAIRO_DEVICE_TYPE_DRM,
2159     CAIRO_DEVICE_TYPE_GL,
2160     CAIRO_DEVICE_TYPE_SCRIPT,
2161     CAIRO_DEVICE_TYPE_XCB,
2162     CAIRO_DEVICE_TYPE_XLIB,
2163     CAIRO_DEVICE_TYPE_XML,
2164     CAIRO_DEVICE_TYPE_COGL,
2165     CAIRO_DEVICE_TYPE_WIN32,
2166
2167     CAIRO_DEVICE_TYPE_INVALID = -1
2168 } cairo_device_type_t;
2169
2170 cairo_public cairo_device_type_t
2171 cairo_device_get_type (cairo_device_t *device);
2172
2173 cairo_public cairo_status_t
2174 cairo_device_status (cairo_device_t *device);
2175
2176 cairo_public cairo_status_t
2177 cairo_device_acquire (cairo_device_t *device);
2178
2179 cairo_public void
2180 cairo_device_release (cairo_device_t *device);
2181
2182 cairo_public void
2183 cairo_device_flush (cairo_device_t *device);
2184
2185 cairo_public void
2186 cairo_device_finish (cairo_device_t *device);
2187
2188 cairo_public void
2189 cairo_device_destroy (cairo_device_t *device);
2190
2191 cairo_public unsigned int
2192 cairo_device_get_reference_count (cairo_device_t *device);
2193
2194 cairo_public void *
2195 cairo_device_get_user_data (cairo_device_t               *device,
2196                             const cairo_user_data_key_t *key);
2197
2198 cairo_public cairo_status_t
2199 cairo_device_set_user_data (cairo_device_t               *device,
2200                             const cairo_user_data_key_t *key,
2201                             void                         *user_data,
2202                             cairo_destroy_func_t          destroy);
2203
2204
2205 /* Surface manipulation */
2206
2207 cairo_public cairo_surface_t *
2208 cairo_surface_create_similar (cairo_surface_t  *other,
2209                               cairo_content_t   content,
2210                               int               width,
2211                               int               height);
2212
2213 cairo_public cairo_surface_t *
2214 cairo_surface_create_similar_image (cairo_surface_t  *other,
2215                                     cairo_format_t    format,
2216                                     int         width,
2217                                     int         height);
2218
2219 cairo_public cairo_surface_t *
2220 cairo_surface_map_to_image (cairo_surface_t  *surface,
2221                             const cairo_rectangle_int_t *extents);
2222
2223 cairo_public void
2224 cairo_surface_unmap_image (cairo_surface_t *surface,
2225                            cairo_surface_t *image);
2226
2227 cairo_public cairo_surface_t *
2228 cairo_surface_create_for_rectangle (cairo_surface_t     *target,
2229                                     double               x,
2230                                     double               y,
2231                                     double               width,
2232                                     double               height);
2233
2234 typedef enum {
2235         CAIRO_SURFACE_OBSERVER_NORMAL = 0,
2236         CAIRO_SURFACE_OBSERVER_RECORD_OPERATIONS = 0x1
2237 } cairo_surface_observer_mode_t;
2238
2239 cairo_public cairo_surface_t *
2240 cairo_surface_create_observer (cairo_surface_t *target,
2241                                cairo_surface_observer_mode_t mode);
2242
2243 typedef void (*cairo_surface_observer_callback_t) (cairo_surface_t *observer,
2244                                                    cairo_surface_t *target,
2245                                                    void *data);
2246
2247 cairo_public cairo_status_t
2248 cairo_surface_observer_add_paint_callback (cairo_surface_t *abstract_surface,
2249                                            cairo_surface_observer_callback_t func,
2250                                            void *data);
2251
2252 cairo_public cairo_status_t
2253 cairo_surface_observer_add_mask_callback (cairo_surface_t *abstract_surface,
2254                                           cairo_surface_observer_callback_t func,
2255                                           void *data);
2256
2257 cairo_public cairo_status_t
2258 cairo_surface_observer_add_fill_callback (cairo_surface_t *abstract_surface,
2259                                           cairo_surface_observer_callback_t func,
2260                                           void *data);
2261
2262 cairo_public cairo_status_t
2263 cairo_surface_observer_add_stroke_callback (cairo_surface_t *abstract_surface,
2264                                             cairo_surface_observer_callback_t func,
2265                                             void *data);
2266
2267 cairo_public cairo_status_t
2268 cairo_surface_observer_add_glyphs_callback (cairo_surface_t *abstract_surface,
2269                                             cairo_surface_observer_callback_t func,
2270                                             void *data);
2271
2272 cairo_public cairo_status_t
2273 cairo_surface_observer_add_flush_callback (cairo_surface_t *abstract_surface,
2274                                            cairo_surface_observer_callback_t func,
2275                                            void *data);
2276
2277 cairo_public cairo_status_t
2278 cairo_surface_observer_add_finish_callback (cairo_surface_t *abstract_surface,
2279                                             cairo_surface_observer_callback_t func,
2280                                             void *data);
2281
2282 cairo_public cairo_status_t
2283 cairo_surface_observer_print (cairo_surface_t *surface,
2284                               cairo_write_func_t write_func,
2285                               void *closure);
2286 cairo_public double
2287 cairo_surface_observer_elapsed (cairo_surface_t *surface);
2288
2289 cairo_public cairo_status_t
2290 cairo_device_observer_print (cairo_device_t *device,
2291                              cairo_write_func_t write_func,
2292                              void *closure);
2293
2294 cairo_public double
2295 cairo_device_observer_elapsed (cairo_device_t *device);
2296
2297 cairo_public double
2298 cairo_device_observer_paint_elapsed (cairo_device_t *device);
2299
2300 cairo_public double
2301 cairo_device_observer_mask_elapsed (cairo_device_t *device);
2302
2303 cairo_public double
2304 cairo_device_observer_fill_elapsed (cairo_device_t *device);
2305
2306 cairo_public double
2307 cairo_device_observer_stroke_elapsed (cairo_device_t *device);
2308
2309 cairo_public double
2310 cairo_device_observer_glyphs_elapsed (cairo_device_t *device);
2311
2312 cairo_public cairo_surface_t *
2313 cairo_surface_reference (cairo_surface_t *surface);
2314
2315 cairo_public void
2316 cairo_surface_finish (cairo_surface_t *surface);
2317
2318 cairo_public void
2319 cairo_surface_destroy (cairo_surface_t *surface);
2320
2321 cairo_public cairo_device_t *
2322 cairo_surface_get_device (cairo_surface_t *surface);
2323
2324 cairo_public unsigned int
2325 cairo_surface_get_reference_count (cairo_surface_t *surface);
2326
2327 cairo_public cairo_status_t
2328 cairo_surface_status (cairo_surface_t *surface);
2329
2330 /**
2331  * cairo_surface_type_t:
2332  * @CAIRO_SURFACE_TYPE_IMAGE: The surface is of type image, since 1.2
2333  * @CAIRO_SURFACE_TYPE_PDF: The surface is of type pdf, since 1.2
2334  * @CAIRO_SURFACE_TYPE_PS: The surface is of type ps, since 1.2
2335  * @CAIRO_SURFACE_TYPE_XLIB: The surface is of type xlib, since 1.2
2336  * @CAIRO_SURFACE_TYPE_XCB: The surface is of type xcb, since 1.2
2337  * @CAIRO_SURFACE_TYPE_GLITZ: The surface is of type glitz, since 1.2
2338  * @CAIRO_SURFACE_TYPE_QUARTZ: The surface is of type quartz, since 1.2
2339  * @CAIRO_SURFACE_TYPE_WIN32: The surface is of type win32, since 1.2
2340  * @CAIRO_SURFACE_TYPE_BEOS: The surface is of type beos, since 1.2
2341  * @CAIRO_SURFACE_TYPE_DIRECTFB: The surface is of type directfb, since 1.2
2342  * @CAIRO_SURFACE_TYPE_SVG: The surface is of type svg, since 1.2
2343  * @CAIRO_SURFACE_TYPE_OS2: The surface is of type os2, since 1.4
2344  * @CAIRO_SURFACE_TYPE_WIN32_PRINTING: The surface is a win32 printing surface, since 1.6
2345  * @CAIRO_SURFACE_TYPE_QUARTZ_IMAGE: The surface is of type quartz_image, since 1.6
2346  * @CAIRO_SURFACE_TYPE_SCRIPT: The surface is of type script, since 1.10
2347  * @CAIRO_SURFACE_TYPE_QT: The surface is of type Qt, since 1.10
2348  * @CAIRO_SURFACE_TYPE_RECORDING: The surface is of type recording, since 1.10
2349  * @CAIRO_SURFACE_TYPE_VG: The surface is a OpenVG surface, since 1.10
2350  * @CAIRO_SURFACE_TYPE_GL: The surface is of type OpenGL, since 1.10
2351  * @CAIRO_SURFACE_TYPE_DRM: The surface is of type Direct Render Manager, since 1.10
2352  * @CAIRO_SURFACE_TYPE_TEE: The surface is of type 'tee' (a multiplexing surface), since 1.10
2353  * @CAIRO_SURFACE_TYPE_XML: The surface is of type XML (for debugging), since 1.10
2354  * @CAIRO_SURFACE_TYPE_SKIA: The surface is of type Skia, since 1.10
2355  * @CAIRO_SURFACE_TYPE_SUBSURFACE: The surface is a subsurface created with
2356  *   cairo_surface_create_for_rectangle(), since 1.10
2357  * @CAIRO_SURFACE_TYPE_COGL: This surface is of type Cogl, since 1.12
2358  *
2359  * #cairo_surface_type_t is used to describe the type of a given
2360  * surface. The surface types are also known as "backends" or "surface
2361  * backends" within cairo.
2362  *
2363  * The type of a surface is determined by the function used to create
2364  * it, which will generally be of the form
2365  * <function>cairo_<emphasis>type</emphasis>_surface_create(<!-- -->)</function>,
2366  * (though see cairo_surface_create_similar() as well).
2367  *
2368  * The surface type can be queried with cairo_surface_get_type()
2369  *
2370  * The various #cairo_surface_t functions can be used with surfaces of
2371  * any type, but some backends also provide type-specific functions
2372  * that must only be called with a surface of the appropriate
2373  * type. These functions have names that begin with
2374  * <literal>cairo_<emphasis>type</emphasis>_surface</literal> such as cairo_image_surface_get_width().
2375  *
2376  * The behavior of calling a type-specific function with a surface of
2377  * the wrong type is undefined.
2378  *
2379  * New entries may be added in future versions.
2380  *
2381  * Since: 1.2
2382  **/
2383 typedef enum _cairo_surface_type {
2384     CAIRO_SURFACE_TYPE_IMAGE,
2385     CAIRO_SURFACE_TYPE_PDF,
2386     CAIRO_SURFACE_TYPE_PS,
2387     CAIRO_SURFACE_TYPE_XLIB,
2388     CAIRO_SURFACE_TYPE_XCB,
2389     CAIRO_SURFACE_TYPE_GLITZ,
2390     CAIRO_SURFACE_TYPE_QUARTZ,
2391     CAIRO_SURFACE_TYPE_WIN32,
2392     CAIRO_SURFACE_TYPE_BEOS,
2393     CAIRO_SURFACE_TYPE_DIRECTFB,
2394     CAIRO_SURFACE_TYPE_SVG,
2395     CAIRO_SURFACE_TYPE_OS2,
2396     CAIRO_SURFACE_TYPE_WIN32_PRINTING,
2397     CAIRO_SURFACE_TYPE_QUARTZ_IMAGE,
2398     CAIRO_SURFACE_TYPE_SCRIPT,
2399     CAIRO_SURFACE_TYPE_QT,
2400     CAIRO_SURFACE_TYPE_RECORDING,
2401     CAIRO_SURFACE_TYPE_VG,
2402     CAIRO_SURFACE_TYPE_GL,
2403     CAIRO_SURFACE_TYPE_DRM,
2404     CAIRO_SURFACE_TYPE_TEE,
2405     CAIRO_SURFACE_TYPE_XML,
2406     CAIRO_SURFACE_TYPE_SKIA,
2407     CAIRO_SURFACE_TYPE_SUBSURFACE,
2408     CAIRO_SURFACE_TYPE_COGL,
2409     CAIRO_SURFACE_TYPE_TG,
2410 } cairo_surface_type_t;
2411
2412 cairo_public cairo_surface_type_t
2413 cairo_surface_get_type (cairo_surface_t *surface);
2414
2415 cairo_public cairo_content_t
2416 cairo_surface_get_content (cairo_surface_t *surface);
2417
2418 #if CAIRO_HAS_PNG_FUNCTIONS
2419
2420 cairo_public cairo_status_t
2421 cairo_surface_write_to_png (cairo_surface_t     *surface,
2422                             const char          *filename);
2423
2424 cairo_public cairo_status_t
2425 cairo_surface_write_to_png_stream (cairo_surface_t      *surface,
2426                                    cairo_write_func_t   write_func,
2427                                    void                 *closure);
2428
2429 #endif
2430
2431 cairo_public void *
2432 cairo_surface_get_user_data (cairo_surface_t             *surface,
2433                              const cairo_user_data_key_t *key);
2434
2435 cairo_public cairo_status_t
2436 cairo_surface_set_user_data (cairo_surface_t             *surface,
2437                              const cairo_user_data_key_t *key,
2438                              void                        *user_data,
2439                              cairo_destroy_func_t        destroy);
2440
2441 #define CAIRO_MIME_TYPE_JPEG "image/jpeg"
2442 #define CAIRO_MIME_TYPE_PNG "image/png"
2443 #define CAIRO_MIME_TYPE_JP2 "image/jp2"
2444 #define CAIRO_MIME_TYPE_URI "text/x-uri"
2445 #define CAIRO_MIME_TYPE_UNIQUE_ID "application/x-cairo.uuid"
2446
2447 cairo_public void
2448 cairo_surface_get_mime_data (cairo_surface_t            *surface,
2449                              const char                 *mime_type,
2450                              const unsigned char       **data,
2451                              unsigned long              *length);
2452
2453 cairo_public cairo_status_t
2454 cairo_surface_set_mime_data (cairo_surface_t            *surface,
2455                              const char                 *mime_type,
2456                              const unsigned char        *data,
2457                              unsigned long               length,
2458                              cairo_destroy_func_t        destroy,
2459                              void                       *closure);
2460
2461 cairo_public cairo_bool_t
2462 cairo_surface_supports_mime_type (cairo_surface_t               *surface,
2463                                   const char                    *mime_type);
2464
2465 cairo_public void
2466 cairo_surface_get_font_options (cairo_surface_t      *surface,
2467                                 cairo_font_options_t *options);
2468
2469 cairo_public void
2470 cairo_surface_flush (cairo_surface_t *surface);
2471
2472 cairo_public void
2473 cairo_surface_mark_dirty (cairo_surface_t *surface);
2474
2475 cairo_public void
2476 cairo_surface_mark_dirty_rectangle (cairo_surface_t *surface,
2477                                     int              x,
2478                                     int              y,
2479                                     int              width,
2480                                     int              height);
2481
2482 cairo_public void
2483 cairo_surface_set_device_offset (cairo_surface_t *surface,
2484                                  double           x_offset,
2485                                  double           y_offset);
2486
2487 cairo_public void
2488 cairo_surface_get_device_offset (cairo_surface_t *surface,
2489                                  double          *x_offset,
2490                                  double          *y_offset);
2491
2492 cairo_public void
2493 cairo_surface_set_fallback_resolution (cairo_surface_t  *surface,
2494                                        double            x_pixels_per_inch,
2495                                        double            y_pixels_per_inch);
2496
2497 cairo_public void
2498 cairo_surface_get_fallback_resolution (cairo_surface_t  *surface,
2499                                        double           *x_pixels_per_inch,
2500                                        double           *y_pixels_per_inch);
2501
2502 cairo_public void
2503 cairo_surface_copy_page (cairo_surface_t *surface);
2504
2505 cairo_public void
2506 cairo_surface_show_page (cairo_surface_t *surface);
2507
2508 cairo_public cairo_bool_t
2509 cairo_surface_has_show_text_glyphs (cairo_surface_t *surface);
2510
2511 /* Image-surface functions */
2512
2513 cairo_public cairo_surface_t *
2514 cairo_image_surface_create (cairo_format_t      format,
2515                             int                 width,
2516                             int                 height);
2517
2518 cairo_public int
2519 cairo_format_stride_for_width (cairo_format_t   format,
2520                                int              width);
2521
2522 cairo_public cairo_surface_t *
2523 cairo_image_surface_create_for_data (unsigned char             *data,
2524                                      cairo_format_t             format,
2525                                      int                        width,
2526                                      int                        height,
2527                                      int                        stride);
2528
2529 cairo_public unsigned char *
2530 cairo_image_surface_get_data (cairo_surface_t *surface);
2531
2532 cairo_public cairo_format_t
2533 cairo_image_surface_get_format (cairo_surface_t *surface);
2534
2535 cairo_public int
2536 cairo_image_surface_get_width (cairo_surface_t *surface);
2537
2538 cairo_public int
2539 cairo_image_surface_get_height (cairo_surface_t *surface);
2540
2541 cairo_public int
2542 cairo_image_surface_get_stride (cairo_surface_t *surface);
2543
2544 #if CAIRO_HAS_PNG_FUNCTIONS
2545
2546 cairo_public cairo_surface_t *
2547 cairo_image_surface_create_from_png (const char *filename);
2548
2549 cairo_public cairo_surface_t *
2550 cairo_image_surface_create_from_png_stream (cairo_read_func_t   read_func,
2551                                             void                *closure);
2552
2553 #endif
2554
2555 /* Recording-surface functions */
2556
2557 cairo_public cairo_surface_t *
2558 cairo_recording_surface_create (cairo_content_t          content,
2559                                 const cairo_rectangle_t *extents);
2560
2561 cairo_public void
2562 cairo_recording_surface_ink_extents (cairo_surface_t *surface,
2563                                      double *x0,
2564                                      double *y0,
2565                                      double *width,
2566                                      double *height);
2567
2568 cairo_public cairo_bool_t
2569 cairo_recording_surface_get_extents (cairo_surface_t *surface,
2570                                      cairo_rectangle_t *extents);
2571
2572 /* raster-source pattern (callback) functions */
2573
2574 /**
2575  * cairo_raster_source_acquire_func_t:
2576  * @pattern: the pattern being rendered from
2577  * @callback_data: the user data supplied during creation
2578  * @target: the rendering target surface
2579  * @extents: rectangular region of interest in pixels in sample space
2580  *
2581  * #cairo_raster_source_acquire_func_t is the type of function which is
2582  * called when a pattern is being rendered from. It should create a surface
2583  * that provides the pixel data for the region of interest as defined by
2584  * extents, though the surface itself does not have to be limited to that
2585  * area. For convenience the surface should probably be of image type,
2586  * created with cairo_surface_create_similar_image() for the target (which
2587  * enables the number of copies to be reduced during transfer to the
2588  * device). Another option, might be to return a similar surface to the
2589  * target for explicit handling by the application of a set of cached sources
2590  * on the device. The region of sample data provided should be defined using
2591  * cairo_surface_set_device_offset() to specify the top-left corner of the
2592  * sample data (along with width and height of the surface).
2593  *
2594  * Returns: a #cairo_surface_t
2595  *
2596  * Since: 1.12
2597  **/
2598 typedef cairo_surface_t *
2599 (*cairo_raster_source_acquire_func_t) (cairo_pattern_t *pattern,
2600                                        void *callback_data,
2601                                        cairo_surface_t *target,
2602                                        const cairo_rectangle_int_t *extents);
2603
2604 /**
2605  * cairo_raster_source_release_func_t:
2606  * @pattern: the pattern being rendered from
2607  * @callback_data: the user data supplied during creation
2608  * @surface: the surface created during acquire
2609  *
2610  * #cairo_raster_source_release_func_t is the type of function which is
2611  * called when the pixel data is no longer being access by the pattern
2612  * for the rendering operation. Typically this function will simply
2613  * destroy the surface created during acquire.
2614  *
2615  * Since: 1.12
2616  **/
2617 typedef void
2618 (*cairo_raster_source_release_func_t) (cairo_pattern_t *pattern,
2619                                        void *callback_data,
2620                                        cairo_surface_t *surface);
2621
2622 /**
2623  * cairo_raster_source_snapshot_func_t:
2624  * @pattern: the pattern being rendered from
2625  * @callback_data: the user data supplied during creation
2626  *
2627  * #cairo_raster_source_snapshot_func_t is the type of function which is
2628  * called when the pixel data needs to be preserved for later use
2629  * during printing. This pattern will be accessed again later, and it
2630  * is expected to provide the pixel data that was current at the time
2631  * of snapshotting.
2632  *
2633  * Return value: CAIRO_STATUS_SUCCESS on success, or one of the
2634  * #cairo_status_t error codes for failure.
2635  *
2636  * Since: 1.12
2637  **/
2638 typedef cairo_status_t
2639 (*cairo_raster_source_snapshot_func_t) (cairo_pattern_t *pattern,
2640                                         void *callback_data);
2641
2642 /**
2643  * cairo_raster_source_copy_func_t:
2644  * @pattern: the #cairo_pattern_t that was copied to
2645  * @callback_data: the user data supplied during creation
2646  * @other: the #cairo_pattern_t being used as the source for the copy
2647  *
2648  * #cairo_raster_source_copy_func_t is the type of function which is
2649  * called when the pattern gets copied as a normal part of rendering.
2650  *
2651  * Return value: CAIRO_STATUS_SUCCESS on success, or one of the
2652  * #cairo_status_t error codes for failure.
2653  *
2654  * Since: 1.12
2655  **/
2656 typedef cairo_status_t
2657 (*cairo_raster_source_copy_func_t) (cairo_pattern_t *pattern,
2658                                     void *callback_data,
2659                                     const cairo_pattern_t *other);
2660
2661 /**
2662  * cairo_raster_source_finish_func_t:
2663  * @pattern: the pattern being rendered from
2664  * @callback_data: the user data supplied during creation
2665  *
2666  * #cairo_raster_source_finish_func_t is the type of function which is
2667  * called when the pattern (or a copy thereof) is no longer required.
2668  *
2669  * Since: 1.12
2670  **/
2671 typedef void
2672 (*cairo_raster_source_finish_func_t) (cairo_pattern_t *pattern,
2673                                       void *callback_data);
2674
2675 cairo_public cairo_pattern_t *
2676 cairo_pattern_create_raster_source (void *user_data,
2677                                     cairo_content_t content,
2678                                     int width, int height);
2679
2680 cairo_public void
2681 cairo_raster_source_pattern_set_callback_data (cairo_pattern_t *pattern,
2682                                                void *data);
2683
2684 cairo_public void *
2685 cairo_raster_source_pattern_get_callback_data (cairo_pattern_t *pattern);
2686
2687 cairo_public void
2688 cairo_raster_source_pattern_set_acquire (cairo_pattern_t *pattern,
2689                                          cairo_raster_source_acquire_func_t acquire,
2690                                          cairo_raster_source_release_func_t release);
2691
2692 cairo_public void
2693 cairo_raster_source_pattern_get_acquire (cairo_pattern_t *pattern,
2694                                          cairo_raster_source_acquire_func_t *acquire,
2695                                          cairo_raster_source_release_func_t *release);
2696 cairo_public void
2697 cairo_raster_source_pattern_set_snapshot (cairo_pattern_t *pattern,
2698                                           cairo_raster_source_snapshot_func_t snapshot);
2699
2700 cairo_public cairo_raster_source_snapshot_func_t
2701 cairo_raster_source_pattern_get_snapshot (cairo_pattern_t *pattern);
2702
2703 cairo_public void
2704 cairo_raster_source_pattern_set_copy (cairo_pattern_t *pattern,
2705                                       cairo_raster_source_copy_func_t copy);
2706
2707 cairo_public cairo_raster_source_copy_func_t
2708 cairo_raster_source_pattern_get_copy (cairo_pattern_t *pattern);
2709
2710 cairo_public void
2711 cairo_raster_source_pattern_set_finish (cairo_pattern_t *pattern,
2712                                         cairo_raster_source_finish_func_t finish);
2713
2714 cairo_public cairo_raster_source_finish_func_t
2715 cairo_raster_source_pattern_get_finish (cairo_pattern_t *pattern);
2716
2717 /* Pattern creation functions */
2718
2719 cairo_public cairo_pattern_t *
2720 cairo_pattern_create_rgb (double red, double green, double blue);
2721
2722 cairo_public cairo_pattern_t *
2723 cairo_pattern_create_rgba (double red, double green, double blue,
2724                            double alpha);
2725
2726 cairo_public cairo_pattern_t *
2727 cairo_pattern_create_for_surface (cairo_surface_t *surface);
2728
2729 cairo_public cairo_pattern_t *
2730 cairo_pattern_create_linear (double x0, double y0,
2731                              double x1, double y1);
2732
2733 cairo_public cairo_pattern_t *
2734 cairo_pattern_create_radial (double cx0, double cy0, double radius0,
2735                              double cx1, double cy1, double radius1);
2736
2737 cairo_public cairo_pattern_t *
2738 cairo_pattern_create_mesh (void);
2739
2740 cairo_public cairo_pattern_t *
2741 cairo_pattern_reference (cairo_pattern_t *pattern);
2742
2743 cairo_public void
2744 cairo_pattern_destroy (cairo_pattern_t *pattern);
2745
2746 cairo_public unsigned int
2747 cairo_pattern_get_reference_count (cairo_pattern_t *pattern);
2748
2749 cairo_public cairo_status_t
2750 cairo_pattern_status (cairo_pattern_t *pattern);
2751
2752 cairo_public void *
2753 cairo_pattern_get_user_data (cairo_pattern_t             *pattern,
2754                              const cairo_user_data_key_t *key);
2755
2756 cairo_public cairo_status_t
2757 cairo_pattern_set_user_data (cairo_pattern_t             *pattern,
2758                              const cairo_user_data_key_t *key,
2759                              void                        *user_data,
2760                              cairo_destroy_func_t         destroy);
2761
2762 /**
2763  * cairo_pattern_type_t:
2764  * @CAIRO_PATTERN_TYPE_SOLID: The pattern is a solid (uniform)
2765  * color. It may be opaque or translucent, since 1.2.
2766  * @CAIRO_PATTERN_TYPE_SURFACE: The pattern is a based on a surface (an image), since 1.2.
2767  * @CAIRO_PATTERN_TYPE_LINEAR: The pattern is a linear gradient, since 1.2.
2768  * @CAIRO_PATTERN_TYPE_RADIAL: The pattern is a radial gradient, since 1.2.
2769  * @CAIRO_PATTERN_TYPE_MESH: The pattern is a mesh, since 1.12.
2770  * @CAIRO_PATTERN_TYPE_RASTER_SOURCE: The pattern is a user pattern providing raster data, since 1.12.
2771  *
2772  * #cairo_pattern_type_t is used to describe the type of a given pattern.
2773  *
2774  * The type of a pattern is determined by the function used to create
2775  * it. The cairo_pattern_create_rgb() and cairo_pattern_create_rgba()
2776  * functions create SOLID patterns. The remaining
2777  * cairo_pattern_create<!-- --> functions map to pattern types in obvious
2778  * ways.
2779  *
2780  * The pattern type can be queried with cairo_pattern_get_type()
2781  *
2782  * Most #cairo_pattern_t functions can be called with a pattern of any
2783  * type, (though trying to change the extend or filter for a solid
2784  * pattern will have no effect). A notable exception is
2785  * cairo_pattern_add_color_stop_rgb() and
2786  * cairo_pattern_add_color_stop_rgba() which must only be called with
2787  * gradient patterns (either LINEAR or RADIAL). Otherwise the pattern
2788  * will be shutdown and put into an error state.
2789  *
2790  * New entries may be added in future versions.
2791  *
2792  * Since: 1.2
2793  **/
2794 typedef enum _cairo_pattern_type {
2795     CAIRO_PATTERN_TYPE_SOLID,
2796     CAIRO_PATTERN_TYPE_SURFACE,
2797     CAIRO_PATTERN_TYPE_LINEAR,
2798     CAIRO_PATTERN_TYPE_RADIAL,
2799     CAIRO_PATTERN_TYPE_MESH,
2800     CAIRO_PATTERN_TYPE_RASTER_SOURCE
2801 } cairo_pattern_type_t;
2802
2803 cairo_public cairo_pattern_type_t
2804 cairo_pattern_get_type (cairo_pattern_t *pattern);
2805
2806 cairo_public void
2807 cairo_pattern_add_color_stop_rgb (cairo_pattern_t *pattern,
2808                                   double offset,
2809                                   double red, double green, double blue);
2810
2811 cairo_public void
2812 cairo_pattern_add_color_stop_rgba (cairo_pattern_t *pattern,
2813                                    double offset,
2814                                    double red, double green, double blue,
2815                                    double alpha);
2816
2817 cairo_public void
2818 cairo_mesh_pattern_begin_patch (cairo_pattern_t *pattern);
2819
2820 cairo_public void
2821 cairo_mesh_pattern_end_patch (cairo_pattern_t *pattern);
2822
2823 cairo_public void
2824 cairo_mesh_pattern_curve_to (cairo_pattern_t *pattern,
2825                              double x1, double y1,
2826                              double x2, double y2,
2827                              double x3, double y3);
2828
2829 cairo_public void
2830 cairo_mesh_pattern_line_to (cairo_pattern_t *pattern,
2831                             double x, double y);
2832
2833 cairo_public void
2834 cairo_mesh_pattern_move_to (cairo_pattern_t *pattern,
2835                             double x, double y);
2836
2837 cairo_public void
2838 cairo_mesh_pattern_set_control_point (cairo_pattern_t *pattern,
2839                                       unsigned int point_num,
2840                                       double x, double y);
2841
2842 cairo_public void
2843 cairo_mesh_pattern_set_corner_color_rgb (cairo_pattern_t *pattern,
2844                                          unsigned int corner_num,
2845                                          double red, double green, double blue);
2846
2847 cairo_public void
2848 cairo_mesh_pattern_set_corner_color_rgba (cairo_pattern_t *pattern,
2849                                           unsigned int corner_num,
2850                                           double red, double green, double blue,
2851                                           double alpha);
2852
2853 cairo_public void
2854 cairo_pattern_set_matrix (cairo_pattern_t      *pattern,
2855                           const cairo_matrix_t *matrix);
2856
2857 cairo_public void
2858 cairo_pattern_get_matrix (cairo_pattern_t *pattern,
2859                           cairo_matrix_t  *matrix);
2860
2861 /**
2862  * cairo_extend_t:
2863  * @CAIRO_EXTEND_NONE: pixels outside of the source pattern
2864  *   are fully transparent (Since 1.0)
2865  * @CAIRO_EXTEND_REPEAT: the pattern is tiled by repeating (Since 1.0)
2866  * @CAIRO_EXTEND_REFLECT: the pattern is tiled by reflecting
2867  *   at the edges (Since 1.0; but only implemented for surface patterns since 1.6)
2868  * @CAIRO_EXTEND_PAD: pixels outside of the pattern copy
2869  *   the closest pixel from the source (Since 1.2; but only
2870  *   implemented for surface patterns since 1.6)
2871  *
2872  * #cairo_extend_t is used to describe how pattern color/alpha will be
2873  * determined for areas "outside" the pattern's natural area, (for
2874  * example, outside the surface bounds or outside the gradient
2875  * geometry).
2876  *
2877  * Mesh patterns are not affected by the extend mode.
2878  *
2879  * The default extend mode is %CAIRO_EXTEND_NONE for surface patterns
2880  * and %CAIRO_EXTEND_PAD for gradient patterns.
2881  *
2882  * New entries may be added in future versions.
2883  *
2884  * Since: 1.0
2885  **/
2886 typedef enum _cairo_extend {
2887     CAIRO_EXTEND_NONE,
2888     CAIRO_EXTEND_REPEAT,
2889     CAIRO_EXTEND_REFLECT,
2890     CAIRO_EXTEND_PAD
2891 } cairo_extend_t;
2892
2893 cairo_public void
2894 cairo_pattern_set_extend (cairo_pattern_t *pattern, cairo_extend_t extend);
2895
2896 cairo_public cairo_extend_t
2897 cairo_pattern_get_extend (cairo_pattern_t *pattern);
2898
2899 /**
2900  * cairo_filter_t:
2901  * @CAIRO_FILTER_FAST: A high-performance filter, with quality similar
2902  *     to %CAIRO_FILTER_NEAREST (Since 1.0)
2903  * @CAIRO_FILTER_GOOD: A reasonable-performance filter, with quality
2904  *     similar to %CAIRO_FILTER_BILINEAR (Since 1.0)
2905  * @CAIRO_FILTER_BEST: The highest-quality available, performance may
2906  *     not be suitable for interactive use. (Since 1.0)
2907  * @CAIRO_FILTER_NEAREST: Nearest-neighbor filtering (Since 1.0)
2908  * @CAIRO_FILTER_BILINEAR: Linear interpolation in two dimensions (Since 1.0)
2909  * @CAIRO_FILTER_GAUSSIAN: This filter value is currently
2910  *     unimplemented, and should not be used in current code. (Since 1.0)
2911  *
2912  * #cairo_filter_t is used to indicate what filtering should be
2913  * applied when reading pixel values from patterns. See
2914  * cairo_pattern_set_filter() for indicating the desired filter to be
2915  * used with a particular pattern.
2916  *
2917  * Since: 1.0
2918  **/
2919 typedef enum _cairo_filter {
2920     CAIRO_FILTER_FAST,
2921     CAIRO_FILTER_GOOD,
2922     CAIRO_FILTER_BEST,
2923     CAIRO_FILTER_NEAREST,
2924     CAIRO_FILTER_BILINEAR,
2925     CAIRO_FILTER_GAUSSIAN
2926 } cairo_filter_t;
2927
2928 cairo_public void
2929 cairo_pattern_set_filter (cairo_pattern_t *pattern, cairo_filter_t filter);
2930
2931 cairo_public cairo_filter_t
2932 cairo_pattern_get_filter (cairo_pattern_t *pattern);
2933
2934 cairo_public cairo_status_t
2935 cairo_pattern_set_sigma (cairo_pattern_t *pattern,
2936                          const double     x_sigma,
2937                          const double     y_sigma);
2938
2939 cairo_public cairo_status_t
2940 cairo_pattern_get_sigma (cairo_pattern_t *pattern,
2941                          double          *x_sigma,
2942                          double          *y_sigma);
2943
2944 /* since 1.12.14 */
2945 typedef enum _cairo_shadow_type {
2946     CAIRO_SHADOW_NONE = 0,
2947     CAIRO_SHADOW_DROP,
2948     CAIRO_SHADOW_INSET
2949 } cairo_shadow_type_t;
2950
2951 cairo_public void
2952 cairo_set_shadow (cairo_t *cr, cairo_shadow_type_t shadow);
2953
2954 cairo_public void
2955 cairo_set_shadow_offset (cairo_t *cr, double x_offset, double y_offset);
2956
2957 cairo_public void
2958 cairo_set_shadow_rgb (cairo_t *cr, double red, double green, double blue);
2959
2960 cairo_public void
2961 cairo_set_shadow_rgba (cairo_t *cr, double red, double green,
2962                        double blue, double alpha);
2963
2964 cairo_public void
2965 cairo_set_shadow_blur (cairo_t *cr, double x_blur, double y_blur);
2966
2967 cairo_public void
2968 cairo_set_draw_shadow_only (cairo_t *cr, cairo_bool_t draw_shadow_only);
2969
2970 cairo_public void
2971 cairo_shadow_enable_cache (cairo_t *cr, cairo_bool_t enable);
2972
2973 cairo_public void
2974 cairo_set_path_is_inset_shadow_with_spread (cairo_t *cr,
2975                                             cairo_bool_t is_spread_path);
2976
2977 cairo_public cairo_status_t
2978 cairo_pattern_get_rgba (cairo_pattern_t *pattern,
2979                         double *red, double *green,
2980                         double *blue, double *alpha);
2981
2982 cairo_public cairo_status_t
2983 cairo_pattern_get_surface (cairo_pattern_t *pattern,
2984                            cairo_surface_t **surface);
2985
2986
2987 cairo_public cairo_status_t
2988 cairo_pattern_get_color_stop_rgba (cairo_pattern_t *pattern,
2989                                    int index, double *offset,
2990                                    double *red, double *green,
2991                                    double *blue, double *alpha);
2992
2993 cairo_public cairo_status_t
2994 cairo_pattern_get_color_stop_count (cairo_pattern_t *pattern,
2995                                     int *count);
2996
2997 cairo_public cairo_status_t
2998 cairo_pattern_get_linear_points (cairo_pattern_t *pattern,
2999                                  double *x0, double *y0,
3000                                  double *x1, double *y1);
3001
3002 cairo_public cairo_status_t
3003 cairo_pattern_get_radial_circles (cairo_pattern_t *pattern,
3004                                   double *x0, double *y0, double *r0,
3005                                   double *x1, double *y1, double *r1);
3006
3007 cairo_public cairo_status_t
3008 cairo_mesh_pattern_get_patch_count (cairo_pattern_t *pattern,
3009                                     unsigned int *count);
3010
3011 cairo_public cairo_path_t *
3012 cairo_mesh_pattern_get_path (cairo_pattern_t *pattern,
3013                              unsigned int patch_num);
3014
3015 cairo_public cairo_status_t
3016 cairo_mesh_pattern_get_corner_color_rgba (cairo_pattern_t *pattern,
3017                                           unsigned int patch_num,
3018                                           unsigned int corner_num,
3019                                           double *red, double *green,
3020                                           double *blue, double *alpha);
3021
3022 cairo_public cairo_status_t
3023 cairo_mesh_pattern_get_control_point (cairo_pattern_t *pattern,
3024                                       unsigned int patch_num,
3025                                       unsigned int point_num,
3026                                       double *x, double *y);
3027
3028 /* Matrix functions */
3029
3030 cairo_public void
3031 cairo_matrix_init (cairo_matrix_t *matrix,
3032                    double  xx, double  yx,
3033                    double  xy, double  yy,
3034                    double  x0, double  y0);
3035
3036 cairo_public void
3037 cairo_matrix_init_identity (cairo_matrix_t *matrix);
3038
3039 cairo_public void
3040 cairo_matrix_init_translate (cairo_matrix_t *matrix,
3041                              double tx, double ty);
3042
3043 cairo_public void
3044 cairo_matrix_init_scale (cairo_matrix_t *matrix,
3045                          double sx, double sy);
3046
3047 cairo_public void
3048 cairo_matrix_init_rotate (cairo_matrix_t *matrix,
3049                           double radians);
3050
3051 cairo_public void
3052 cairo_matrix_translate (cairo_matrix_t *matrix, double tx, double ty);
3053
3054 cairo_public void
3055 cairo_matrix_scale (cairo_matrix_t *matrix, double sx, double sy);
3056
3057 cairo_public void
3058 cairo_matrix_rotate (cairo_matrix_t *matrix, double radians);
3059
3060 cairo_public cairo_status_t
3061 cairo_matrix_invert (cairo_matrix_t *matrix);
3062
3063 cairo_public void
3064 cairo_matrix_multiply (cairo_matrix_t       *result,
3065                        const cairo_matrix_t *a,
3066                        const cairo_matrix_t *b);
3067
3068 cairo_public void
3069 cairo_matrix_transform_distance (const cairo_matrix_t *matrix,
3070                                  double *dx, double *dy);
3071
3072 cairo_public void
3073 cairo_matrix_transform_point (const cairo_matrix_t *matrix,
3074                               double *x, double *y);
3075
3076 /* Region functions */
3077
3078 /**
3079  * cairo_region_t:
3080  *
3081  * A #cairo_region_t represents a set of integer-aligned rectangles.
3082  *
3083  * It allows set-theoretical operations like cairo_region_union() and
3084  * cairo_region_intersect() to be performed on them.
3085  *
3086  * Memory management of #cairo_region_t is done with
3087  * cairo_region_reference() and cairo_region_destroy().
3088  *
3089  * Since: 1.10
3090  **/
3091 typedef struct _cairo_region cairo_region_t;
3092
3093 typedef enum _cairo_region_overlap {
3094     CAIRO_REGION_OVERLAP_IN,            /* completely inside region */
3095     CAIRO_REGION_OVERLAP_OUT,           /* completely outside region */
3096     CAIRO_REGION_OVERLAP_PART           /* partly inside region */
3097 } cairo_region_overlap_t;
3098
3099 cairo_public cairo_region_t *
3100 cairo_region_create (void);
3101
3102 cairo_public cairo_region_t *
3103 cairo_region_create_rectangle (const cairo_rectangle_int_t *rectangle);
3104
3105 cairo_public cairo_region_t *
3106 cairo_region_create_rectangles (const cairo_rectangle_int_t *rects,
3107                                 int count);
3108
3109 cairo_public cairo_region_t *
3110 cairo_region_copy (const cairo_region_t *original);
3111
3112 cairo_public cairo_region_t *
3113 cairo_region_reference (cairo_region_t *region);
3114
3115 cairo_public void
3116 cairo_region_destroy (cairo_region_t *region);
3117
3118 cairo_public cairo_bool_t
3119 cairo_region_equal (const cairo_region_t *a, const cairo_region_t *b);
3120
3121 cairo_public cairo_status_t
3122 cairo_region_status (const cairo_region_t *region);
3123
3124 cairo_public void
3125 cairo_region_get_extents (const cairo_region_t        *region,
3126                           cairo_rectangle_int_t *extents);
3127
3128 cairo_public int
3129 cairo_region_num_rectangles (const cairo_region_t *region);
3130
3131 cairo_public void
3132 cairo_region_get_rectangle (const cairo_region_t  *region,
3133                             int                    nth,
3134                             cairo_rectangle_int_t *rectangle);
3135
3136 cairo_public cairo_bool_t
3137 cairo_region_is_empty (const cairo_region_t *region);
3138
3139 cairo_public cairo_region_overlap_t
3140 cairo_region_contains_rectangle (const cairo_region_t *region,
3141                                  const cairo_rectangle_int_t *rectangle);
3142
3143 cairo_public cairo_bool_t
3144 cairo_region_contains_point (const cairo_region_t *region, int x, int y);
3145
3146 cairo_public void
3147 cairo_region_translate (cairo_region_t *region, int dx, int dy);
3148
3149 cairo_public cairo_status_t
3150 cairo_region_subtract (cairo_region_t *dst, const cairo_region_t *other);
3151
3152 cairo_public cairo_status_t
3153 cairo_region_subtract_rectangle (cairo_region_t *dst,
3154                                  const cairo_rectangle_int_t *rectangle);
3155
3156 cairo_public cairo_status_t
3157 cairo_region_intersect (cairo_region_t *dst, const cairo_region_t *other);
3158
3159 cairo_public cairo_status_t
3160 cairo_region_intersect_rectangle (cairo_region_t *dst,
3161                                   const cairo_rectangle_int_t *rectangle);
3162
3163 cairo_public cairo_status_t
3164 cairo_region_union (cairo_region_t *dst, const cairo_region_t *other);
3165
3166 cairo_public cairo_status_t
3167 cairo_region_union_rectangle (cairo_region_t *dst,
3168                               const cairo_rectangle_int_t *rectangle);
3169
3170 cairo_public cairo_status_t
3171 cairo_region_xor (cairo_region_t *dst, const cairo_region_t *other);
3172
3173 cairo_public cairo_status_t
3174 cairo_region_xor_rectangle (cairo_region_t *dst,
3175                             const cairo_rectangle_int_t *rectangle);
3176
3177 /* Functions to be used while debugging (not intended for use in production code) */
3178 cairo_public void
3179 cairo_debug_reset_static_data (void);
3180
3181
3182 CAIRO_END_DECLS
3183
3184 #endif /* CAIRO_H */