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