Add the -p/--pause command line option.
[monky] / lua / cairo.pkg
1 $#include <cairo-features.h>
2 $#include <cairo-deprecated.h>
3 $#include <cairo.h>
4 $#include <cairo-xlib.h>
5 $#include <X11/Xlib.h>
6 /*
7  * This code was mostly copied from cairo.h and cairo-xlib.h with comments
8  * removed.  The licence noticed below is present for the sake of clarity.
9  */
10
11 /* cairo - a vector graphics library with display and print output
12  *
13  * Copyright © 2002 University of Southern California
14  * Copyright © 2005 Red Hat, Inc.
15  *
16  * This library is free software; you can redistribute it and/or
17  * modify it either under the terms of the GNU Lesser General Public
18  * License version 2.1 as published by the Free Software Foundation
19  * (the "LGPL") or, at your option, under the terms of the Mozilla
20  * Public License Version 1.1 (the "MPL"). If you do not alter this
21  * notice, a recipient may use your version of this file under either
22  * the MPL or the LGPL.
23  *
24  * You should have received a copy of the LGPL along with this library
25  * in the file COPYING-LGPL-2.1; if not, write to the Free Software
26  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27  * You should have received a copy of the MPL along with this library
28  * in the file COPYING-MPL-1.1
29  *
30  * The contents of this file are subject to the Mozilla Public License
31  * Version 1.1 (the "License"); you may not use this file except in
32  * compliance with the License. You may obtain a copy of the License at
33  * http://www.mozilla.org/MPL/
34  *
35  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
36  * OF ANY KIND, either express or implied. See the LGPL or the MPL for
37  * the specific language governing rights and limitations.
38  *
39  * The Original Code is the cairo graphics library.
40  *
41  * The Initial Developer of the Original Code is University of Southern
42  * California.
43  *
44  * Contributor(s):
45  *      Carl D. Worth <cworth@cworth.org>
46  */
47
48 typedef enum _cairo_antialias {
49         CAIRO_ANTIALIAS_DEFAULT,
50         CAIRO_ANTIALIAS_NONE,
51         CAIRO_ANTIALIAS_GRAY,
52         CAIRO_ANTIALIAS_SUBPIXEL
53 } cairo_antialias_t;
54
55 typedef struct _cairo_matrix {
56         double xx;
57         double yx;
58         double xy;
59         double yy;
60         double x0;
61         double y0;
62 } cairo_matrix_t;
63 typedef int cairo_bool_t;
64
65 typedef struct _cairo cairo_t;
66
67 typedef struct _cairo_surface cairo_surface_t;
68
69 typedef struct _cairo_pattern cairo_pattern_t;
70
71
72 typedef struct _cairo_user_data_key {
73         int unused;
74 } cairo_user_data_key_t;
75
76 typedef enum _cairo_status {
77         CAIRO_STATUS_SUCCESS = 0,
78         CAIRO_STATUS_NO_MEMORY,
79         CAIRO_STATUS_INVALID_RESTORE,
80         CAIRO_STATUS_INVALID_POP_GROUP,
81         CAIRO_STATUS_NO_CURRENT_POINT,
82         CAIRO_STATUS_INVALID_MATRIX,
83         CAIRO_STATUS_INVALID_STATUS,
84         CAIRO_STATUS_NULL_POINTER,
85         CAIRO_STATUS_INVALID_STRING,
86         CAIRO_STATUS_INVALID_PATH_DATA,
87         CAIRO_STATUS_READ_ERROR,
88         CAIRO_STATUS_WRITE_ERROR,
89         CAIRO_STATUS_SURFACE_FINISHED,
90         CAIRO_STATUS_SURFACE_TYPE_MISMATCH,
91         CAIRO_STATUS_PATTERN_TYPE_MISMATCH,
92         CAIRO_STATUS_INVALID_CONTENT,
93         CAIRO_STATUS_INVALID_FORMAT,
94         CAIRO_STATUS_INVALID_VISUAL,
95         CAIRO_STATUS_FILE_NOT_FOUND,
96         CAIRO_STATUS_INVALID_DASH,
97         CAIRO_STATUS_INVALID_DSC_COMMENT,
98         CAIRO_STATUS_INVALID_INDEX,
99         CAIRO_STATUS_CLIP_NOT_REPRESENTABLE,
100         CAIRO_STATUS_TEMP_FILE_ERROR,
101         CAIRO_STATUS_INVALID_STRIDE,
102         CAIRO_STATUS_FONT_TYPE_MISMATCH,
103         CAIRO_STATUS_USER_FONT_IMMUTABLE,
104         CAIRO_STATUS_USER_FONT_ERROR,
105         CAIRO_STATUS_NEGATIVE_COUNT,
106         CAIRO_STATUS_INVALID_CLUSTERS,
107         CAIRO_STATUS_INVALID_SLANT,
108         CAIRO_STATUS_INVALID_WEIGHT
109 } cairo_status_t;
110
111 typedef enum _cairo_content {
112         CAIRO_CONTENT_COLOR = 0x1000,
113         CAIRO_CONTENT_ALPHA = 0x2000,
114         CAIRO_CONTENT_COLOR_ALPHA = 0x3000
115 } cairo_content_t;
116
117 typedef enum _cairo_operator {
118         CAIRO_OPERATOR_CLEAR,
119
120         CAIRO_OPERATOR_SOURCE,
121         CAIRO_OPERATOR_OVER,
122         CAIRO_OPERATOR_IN,
123         CAIRO_OPERATOR_OUT,
124         CAIRO_OPERATOR_ATOP,
125
126         CAIRO_OPERATOR_DEST,
127         CAIRO_OPERATOR_DEST_OVER,
128         CAIRO_OPERATOR_DEST_IN,
129         CAIRO_OPERATOR_DEST_OUT,
130         CAIRO_OPERATOR_DEST_ATOP,
131
132         CAIRO_OPERATOR_XOR,
133         CAIRO_OPERATOR_ADD,
134         CAIRO_OPERATOR_SATURATE
135 } cairo_operator_t;
136
137 typedef enum _cairo_filter {
138         CAIRO_FILTER_FAST,
139         CAIRO_FILTER_GOOD,
140         CAIRO_FILTER_BEST,
141         CAIRO_FILTER_NEAREST,
142         CAIRO_FILTER_BILINEAR,
143         CAIRO_FILTER_GAUSSIAN
144 } cairo_filter_t;
145
146 cairo_surface_t *cairo_xlib_surface_create(Display * dpy,
147                 Drawable drawable,
148                 Visual * visual, int width, int height);
149
150 cairo_surface_t *cairo_xlib_surface_create_for_bitmap(Display * dpy,
151                 Pixmap bitmap,
152                 Screen * screen, int width, int height);
153
154 void cairo_xlib_surface_set_size(cairo_surface_t * surface, int width, int height);
155
156 void cairo_xlib_surface_set_drawable(cairo_surface_t * surface, Drawable
157                 drawable, int width, int height);
158
159 Display *cairo_xlib_surface_get_display(cairo_surface_t * surface);
160
161 Drawable cairo_xlib_surface_get_drawable(cairo_surface_t * surface);
162
163 Screen *cairo_xlib_surface_get_screen(cairo_surface_t * surface);
164
165 Visual *cairo_xlib_surface_get_visual(cairo_surface_t * surface);
166
167 int cairo_xlib_surface_get_depth(cairo_surface_t * surface);
168
169 int cairo_xlib_surface_get_width(cairo_surface_t * surface);
170
171 int cairo_xlib_surface_get_height(cairo_surface_t * surface);
172
173 int cairo_version(void);
174
175 const char *cairo_version_string(void);
176
177 cairo_t *cairo_create(cairo_surface_t * target);
178
179 cairo_t *cairo_reference(cairo_t * cr);
180
181 void cairo_destroy(cairo_t * cr);
182
183 unsigned int cairo_get_reference_count(cairo_t * cr);
184
185 void *cairo_get_user_data(cairo_t * cr, const cairo_user_data_key_t * key);
186
187 cairo_status_t cairo_set_user_data(cairo_t * cr, const cairo_user_data_key_t *
188                 key, void *user_data, cairo_destroy_func_t destroy);
189
190 void cairo_save(cairo_t * cr);
191
192 void cairo_restore(cairo_t * cr);
193
194 void cairo_push_group(cairo_t * cr);
195
196 void cairo_push_group_with_content(cairo_t * cr, cairo_content_t content);
197
198 cairo_pattern_t *cairo_pop_group(cairo_t * cr);
199
200 void cairo_pop_group_to_source(cairo_t * cr);
201
202 void cairo_set_operator(cairo_t * cr, cairo_operator_t op);
203
204 void cairo_set_source(cairo_t * cr, cairo_pattern_t * source);
205
206 void cairo_set_source_rgb(cairo_t * cr, double red, double green, double blue);
207
208 void cairo_set_source_rgba(cairo_t * cr, double red, double green, double blue, double alpha);
209
210 void cairo_set_source_surface(cairo_t * cr, cairo_surface_t * surface, double x, double y);
211
212 void cairo_set_tolerance(cairo_t * cr, double tolerance);
213
214 void cairo_set_antialias(cairo_t * cr, cairo_antialias_t antialias);
215
216 typedef enum _cairo_fill_rule {
217         CAIRO_FILL_RULE_WINDING,
218         CAIRO_FILL_RULE_EVEN_ODD
219 } cairo_fill_rule_t;
220
221 void cairo_set_fill_rule(cairo_t * cr, cairo_fill_rule_t fill_rule);
222
223 void cairo_set_line_width(cairo_t * cr, double width);
224
225 typedef enum _cairo_line_cap {
226         CAIRO_LINE_CAP_BUTT,
227         CAIRO_LINE_CAP_ROUND,
228         CAIRO_LINE_CAP_SQUARE
229 } cairo_line_cap_t;
230
231 void cairo_set_line_cap(cairo_t * cr, cairo_line_cap_t line_cap);
232
233 typedef enum _cairo_line_join {
234         CAIRO_LINE_JOIN_MITER,
235         CAIRO_LINE_JOIN_ROUND,
236         CAIRO_LINE_JOIN_BEVEL
237 } cairo_line_join_t;
238
239 void cairo_set_line_join(cairo_t * cr, cairo_line_join_t line_join);
240
241 void cairo_set_dash(cairo_t * cr, const double *dashes, int num_dashes, double offset);
242
243 void cairo_set_miter_limit(cairo_t * cr, double limit);
244
245 void cairo_translate(cairo_t * cr, double tx, double ty);
246
247 void cairo_scale(cairo_t * cr, double sx, double sy);
248
249 void cairo_rotate(cairo_t * cr, double angle);
250
251 void cairo_transform(cairo_t * cr, cairo_matrix_t * matrix);
252
253 void cairo_set_matrix(cairo_t * cr, cairo_matrix_t * matrix);
254
255 void cairo_identity_matrix(cairo_t * cr);
256
257 void cairo_user_to_device(cairo_t * cr, double *x, double *y);
258
259 void cairo_user_to_device_distance(cairo_t * cr, double *dx, double *dy);
260
261 void cairo_device_to_user(cairo_t * cr, double *x, double *y);
262
263 void cairo_device_to_user_distance(cairo_t * cr, double *dx, double *dy);
264
265 void cairo_new_path(cairo_t * cr);
266
267 void cairo_move_to(cairo_t * cr, double x, double y);
268
269 void cairo_new_sub_path(cairo_t * cr);
270
271 void cairo_line_to(cairo_t * cr, double x, double y);
272
273 void cairo_curve_to(cairo_t * cr, double x1, double y1, double x2, double y2, double x3, double y3);
274
275 void cairo_arc(cairo_t * cr, double xc, double yc, double radius, double angle1, double angle2);
276
277 void cairo_arc_negative(cairo_t * cr, double xc, double yc, double radius,
278                 double angle1, double angle2);
279
280 void cairo_rel_move_to(cairo_t * cr, double dx, double dy);
281
282 void cairo_rel_line_to(cairo_t * cr, double dx, double dy);
283
284 void cairo_rel_curve_to(cairo_t * cr, double dx1, double dy1, double dx2,
285                 double dy2, double dx3, double dy3);
286
287 void cairo_rectangle(cairo_t * cr, double x, double y, double width, double height);
288
289 void cairo_close_path(cairo_t * cr);
290
291 void cairo_path_extents(cairo_t * cr, double *x1, double *y1, double *x2, double *y2);
292
293 void cairo_paint(cairo_t * cr);
294
295 void cairo_paint_with_alpha(cairo_t * cr, double alpha);
296
297 void cairo_mask(cairo_t * cr, cairo_pattern_t * pattern);
298
299 void cairo_mask_surface(cairo_t * cr, cairo_surface_t * surface, double
300                 surface_x, double surface_y);
301
302 void cairo_stroke(cairo_t * cr);
303
304 void cairo_stroke_preserve(cairo_t * cr);
305
306 void cairo_fill(cairo_t * cr);
307
308 void cairo_fill_preserve(cairo_t * cr);
309
310 void cairo_copy_page(cairo_t * cr);
311
312 void cairo_show_page(cairo_t * cr);
313
314 cairo_bool_t cairo_in_stroke(cairo_t * cr, double x, double y);
315
316 cairo_bool_t cairo_in_fill(cairo_t * cr, double x, double y);
317
318 void cairo_stroke_extents(cairo_t * cr, double *x1, double *y1, double *x2, double *y2);
319
320 void cairo_fill_extents(cairo_t * cr, double *x1, double *y1, double *x2, double *y2);
321
322 void cairo_reset_clip(cairo_t * cr);
323
324 void cairo_clip(cairo_t * cr);
325
326 void cairo_clip_preserve(cairo_t * cr);
327
328 void cairo_clip_extents(cairo_t * cr, double *x1, double *y1, double *x2, double *y2);
329
330 typedef struct _cairo_rectangle {
331         double x, y, width, height;
332 } cairo_rectangle_t;
333
334 typedef struct _cairo_rectangle_list {
335         cairo_status_t status;
336         cairo_rectangle_t *rectangles;
337         int num_rectangles;
338 } cairo_rectangle_list_t;
339
340 cairo_rectangle_list_t *cairo_copy_clip_rectangle_list(cairo_t * cr);
341
342 void cairo_rectangle_list_destroy(cairo_rectangle_list_t * rectangle_list);
343
344 typedef struct _cairo_scaled_font cairo_scaled_font_t;
345
346 typedef struct _cairo_font_face cairo_font_face_t;
347
348 typedef struct {
349         unsigned long index;
350         double x;
351         double y;
352 } cairo_glyph_t;
353
354 cairo_glyph_t *cairo_glyph_allocate(int num_glyphs);
355
356 void cairo_glyph_free(cairo_glyph_t * glyphs);
357
358 typedef struct {
359         int num_bytes;
360         int num_glyphs;
361 } cairo_text_cluster_t;
362
363 cairo_text_cluster_t *cairo_text_cluster_allocate(int num_clusters);
364
365 void cairo_text_cluster_free(cairo_text_cluster_t * clusters);
366
367 typedef enum _cairo_text_cluster_flags {
368         CAIRO_TEXT_CLUSTER_FLAG_BACKWARD = 0x00000001
369 } cairo_text_cluster_flags_t;
370
371 typedef struct {
372         double x_bearing;
373         double y_bearing;
374         double width;
375         double height;
376         double x_advance;
377         double y_advance;
378 } cairo_text_extents_t;
379
380 typedef struct {
381         double ascent;
382         double descent;
383         double height;
384         double max_x_advance;
385         double max_y_advance;
386 } cairo_font_extents_t;
387
388 typedef enum _cairo_font_slant {
389         CAIRO_FONT_SLANT_NORMAL,
390         CAIRO_FONT_SLANT_ITALIC,
391         CAIRO_FONT_SLANT_OBLIQUE
392 } cairo_font_slant_t;
393
394 typedef enum _cairo_font_weight {
395         CAIRO_FONT_WEIGHT_NORMAL,
396         CAIRO_FONT_WEIGHT_BOLD
397 } cairo_font_weight_t;
398
399 typedef enum _cairo_subpixel_order {
400         CAIRO_SUBPIXEL_ORDER_DEFAULT,
401         CAIRO_SUBPIXEL_ORDER_RGB,
402         CAIRO_SUBPIXEL_ORDER_BGR,
403         CAIRO_SUBPIXEL_ORDER_VRGB,
404         CAIRO_SUBPIXEL_ORDER_VBGR
405 } cairo_subpixel_order_t;
406
407 typedef enum _cairo_hint_style {
408         CAIRO_HINT_STYLE_DEFAULT,
409         CAIRO_HINT_STYLE_NONE,
410         CAIRO_HINT_STYLE_SLIGHT,
411         CAIRO_HINT_STYLE_MEDIUM,
412         CAIRO_HINT_STYLE_FULL
413 } cairo_hint_style_t;
414
415 typedef enum _cairo_hint_metrics {
416         CAIRO_HINT_METRICS_DEFAULT,
417         CAIRO_HINT_METRICS_OFF,
418         CAIRO_HINT_METRICS_ON
419 } cairo_hint_metrics_t;
420
421 typedef struct _cairo_font_options cairo_font_options_t;
422
423 cairo_font_options_t *cairo_font_options_create(void);
424
425 cairo_font_options_t *cairo_font_options_copy(cairo_font_options_t * original);
426
427 void cairo_font_options_destroy(cairo_font_options_t * options);
428
429 cairo_status_t cairo_font_options_status(cairo_font_options_t * options);
430
431 void cairo_font_options_merge(cairo_font_options_t * options, cairo_font_options_t * other);
432
433 cairo_bool_t cairo_font_options_equal(cairo_font_options_t * options,
434                 cairo_font_options_t * other);
435
436 unsigned long cairo_font_options_hash(cairo_font_options_t * options);
437
438 void cairo_font_options_set_antialias(cairo_font_options_t * options, cairo_antialias_t antialias);
439 cairo_antialias_t cairo_font_options_get_antialias(cairo_font_options_t * options);
440
441 void cairo_font_options_set_subpixel_order(cairo_font_options_t * options,
442                 cairo_subpixel_order_t subpixel_order);
443 cairo_subpixel_order_t cairo_font_options_get_subpixel_order(cairo_font_options_t * options);
444
445 void cairo_font_options_set_hint_style(cairo_font_options_t * options, cairo_hint_style_t hint_style);
446 cairo_hint_style_t cairo_font_options_get_hint_style(cairo_font_options_t * options);
447
448 void cairo_font_options_set_hint_metrics(cairo_font_options_t * options,
449                 cairo_hint_metrics_t hint_metrics);
450 cairo_hint_metrics_t cairo_font_options_get_hint_metrics(cairo_font_options_t * options);
451
452 void cairo_select_font_face(cairo_t * cr,
453                 const char *family, cairo_font_slant_t slant, cairo_font_weight_t weight);
454
455 void cairo_set_font_size(cairo_t * cr, double size);
456
457 void cairo_set_font_matrix(cairo_t * cr, cairo_matrix_t * matrix);
458
459 void cairo_get_font_matrix(cairo_t * cr, cairo_matrix_t * matrix);
460
461 void cairo_set_font_options(cairo_t * cr, cairo_font_options_t * options);
462
463 void cairo_get_font_options(cairo_t * cr, cairo_font_options_t * options);
464
465 void cairo_set_font_face(cairo_t * cr, cairo_font_face_t * font_face);
466
467 cairo_font_face_t *cairo_get_font_face(cairo_t * cr);
468
469 void cairo_set_scaled_font(cairo_t * cr, cairo_scaled_font_t * scaled_font);
470
471 cairo_scaled_font_t *cairo_get_scaled_font(cairo_t * cr);
472
473 void cairo_show_text(cairo_t * cr, const char *utf8);
474
475 void cairo_show_glyphs(cairo_t * cr, const cairo_glyph_t * glyphs, int num_glyphs);
476
477 void cairo_show_text_glyphs(cairo_t * cr,
478                 const char *utf8,
479                 int utf8_len,
480                 const cairo_glyph_t * glyphs,
481                 int num_glyphs,
482                 const cairo_text_cluster_t * clusters,
483                 int num_clusters, cairo_text_cluster_flags_t cluster_flags);
484
485 void cairo_text_path(cairo_t * cr, const char *utf8);
486
487 void cairo_glyph_path(cairo_t * cr, const cairo_glyph_t * glyphs, int num_glyphs);
488
489 void cairo_text_extents(cairo_t * cr, const char *utf8, cairo_text_extents_t * extents);
490
491 void cairo_glyph_extents(cairo_t * cr,
492                 const cairo_glyph_t * glyphs, int num_glyphs, cairo_text_extents_t * extents);
493
494 void cairo_font_extents(cairo_t * cr, cairo_font_extents_t * extents);
495
496 cairo_font_face_t *cairo_font_face_reference(cairo_font_face_t * font_face);
497
498 void cairo_font_face_destroy(cairo_font_face_t * font_face);
499
500 unsigned int cairo_font_face_get_reference_count(cairo_font_face_t * font_face);
501
502 cairo_status_t cairo_font_face_status(cairo_font_face_t * font_face);
503
504 typedef enum _cairo_font_type {
505         CAIRO_FONT_TYPE_TOY,
506         CAIRO_FONT_TYPE_FT,
507         CAIRO_FONT_TYPE_WIN32,
508         CAIRO_FONT_TYPE_QUARTZ,
509         CAIRO_FONT_TYPE_USER
510 } cairo_font_type_t;
511
512 cairo_font_type_t cairo_font_face_get_type(cairo_font_face_t * font_face);
513
514 void *cairo_font_face_get_user_data(cairo_font_face_t * font_face,
515                 const cairo_user_data_key_t * key);
516
517 cairo_status_t cairo_font_face_set_user_data(cairo_font_face_t * font_face,
518                 const cairo_user_data_key_t * key,
519                 void *user_data, cairo_destroy_func_t destroy);
520
521 cairo_scaled_font_t *cairo_scaled_font_create(cairo_font_face_t * font_face,
522                 cairo_matrix_t * font_matrix,
523                 cairo_matrix_t * ctm,
524                 cairo_font_options_t * options);
525
526 cairo_scaled_font_t *cairo_scaled_font_reference(cairo_scaled_font_t * scaled_font);
527
528 void cairo_scaled_font_destroy(cairo_scaled_font_t * scaled_font);
529
530 unsigned int cairo_scaled_font_get_reference_count(cairo_scaled_font_t * scaled_font);
531
532 cairo_status_t cairo_scaled_font_status(cairo_scaled_font_t * scaled_font);
533
534 cairo_font_type_t cairo_scaled_font_get_type(cairo_scaled_font_t * scaled_font);
535
536 void *cairo_scaled_font_get_user_data(cairo_scaled_font_t * scaled_font,
537                 const cairo_user_data_key_t * key);
538
539 cairo_status_t cairo_scaled_font_set_user_data(cairo_scaled_font_t * scaled_font,
540                 const cairo_user_data_key_t * key,
541                 void *user_data, cairo_destroy_func_t destroy);
542
543 void cairo_scaled_font_extents(cairo_scaled_font_t * scaled_font, cairo_font_extents_t * extents);
544
545 void cairo_scaled_font_text_extents(cairo_scaled_font_t * scaled_font,
546                 const char *utf8, cairo_text_extents_t * extents);
547
548 void cairo_scaled_font_glyph_extents(cairo_scaled_font_t * scaled_font,
549                 const cairo_glyph_t * glyphs,
550                 int num_glyphs, cairo_text_extents_t * extents);
551
552 cairo_status_t cairo_scaled_font_text_to_glyphs(cairo_scaled_font_t * scaled_font,
553                 double x,
554                 double y,
555                 const char *utf8,
556                 int utf8_len,
557                 cairo_glyph_t ** glyphs,
558                 int *num_glyphs,
559                 cairo_text_cluster_t ** clusters,
560                 int *num_clusters, cairo_text_cluster_flags_t * cluster_flags);
561
562 cairo_font_face_t *cairo_scaled_font_get_font_face(cairo_scaled_font_t * scaled_font);
563
564 void cairo_scaled_font_get_font_matrix(cairo_scaled_font_t * scaled_font, cairo_matrix_t * font_matrix);
565
566 void cairo_scaled_font_get_ctm(cairo_scaled_font_t * scaled_font, cairo_matrix_t * ctm);
567
568 void cairo_scaled_font_get_scale_matrix(cairo_scaled_font_t * scaled_font,
569                 cairo_matrix_t * scale_matrix);
570
571 void cairo_scaled_font_get_font_options(cairo_scaled_font_t * scaled_font,
572                 cairo_font_options_t * options);
573
574 cairo_font_face_t *cairo_toy_font_face_create(const char *family,
575                 cairo_font_slant_t slant, cairo_font_weight_t weight);
576
577 const char *cairo_toy_font_face_get_family(cairo_font_face_t * font_face);
578
579 cairo_font_slant_t cairo_toy_font_face_get_slant(cairo_font_face_t * font_face);
580
581 cairo_font_weight_t cairo_toy_font_face_get_weight(cairo_font_face_t * font_face);
582
583 cairo_font_face_t *cairo_user_font_face_create(void);
584
585 void cairo_user_font_face_set_init_func(cairo_font_face_t * font_face,
586                 cairo_user_scaled_font_init_func_t init_func);
587
588 void cairo_user_font_face_set_render_glyph_func(cairo_font_face_t * font_face,
589                 cairo_user_scaled_font_render_glyph_func_t
590                 render_glyph_func);
591
592 void cairo_user_font_face_set_text_to_glyphs_func(cairo_font_face_t * font_face,
593                 cairo_user_scaled_font_text_to_glyphs_func_t
594                 text_to_glyphs_func);
595
596 void cairo_user_font_face_set_unicode_to_glyph_func(cairo_font_face_t * font_face,
597                 cairo_user_scaled_font_unicode_to_glyph_func_t
598                 unicode_to_glyph_func);
599
600 cairo_user_scaled_font_init_func_t cairo_user_font_face_get_init_func(cairo_font_face_t * font_face);
601
602 cairo_user_scaled_font_render_glyph_func_t cairo_user_font_face_get_render_glyph_func(cairo_font_face_t * font_face);
603
604 cairo_user_scaled_font_text_to_glyphs_func_t cairo_user_font_face_get_text_to_glyphs_func(cairo_font_face_t * font_face);
605
606 cairo_user_scaled_font_unicode_to_glyph_func_t cairo_user_font_face_get_unicode_to_glyph_func(cairo_font_face_t * font_face);
607
608 cairo_operator_t cairo_get_operator(cairo_t * cr);
609
610 cairo_pattern_t *cairo_get_source(cairo_t * cr);
611
612 double cairo_get_tolerance(cairo_t * cr);
613
614 cairo_antialias_t cairo_get_antialias(cairo_t * cr);
615
616 cairo_bool_t cairo_has_current_point(cairo_t * cr);
617
618 void cairo_get_current_point(cairo_t * cr, double *x, double *y);
619
620 cairo_fill_rule_t cairo_get_fill_rule(cairo_t * cr);
621
622 double cairo_get_line_width(cairo_t * cr);
623
624 cairo_line_cap_t cairo_get_line_cap(cairo_t * cr);
625
626 cairo_line_join_t cairo_get_line_join(cairo_t * cr);
627
628 double cairo_get_miter_limit(cairo_t * cr);
629
630 int cairo_get_dash_count(cairo_t * cr);
631
632 void cairo_get_dash(cairo_t * cr, double *dashes, double *offset);
633
634 void cairo_get_matrix(cairo_t * cr, cairo_matrix_t * matrix);
635
636 cairo_surface_t *cairo_get_target(cairo_t * cr);
637
638 cairo_surface_t *cairo_get_group_target(cairo_t * cr);
639
640 typedef enum _cairo_path_data_type {
641         CAIRO_PATH_MOVE_TO,
642         CAIRO_PATH_LINE_TO,
643         CAIRO_PATH_CURVE_TO,
644         CAIRO_PATH_CLOSE_PATH
645 } cairo_path_data_type_t;
646
647 typedef union _cairo_path_data_t cairo_path_data_t;
648
649 typedef struct cairo_path {
650         cairo_status_t status;
651         cairo_path_data_t *data;
652         int num_data;
653 } cairo_path_t;
654
655 cairo_path_t *cairo_copy_path(cairo_t * cr);
656
657 cairo_path_t *cairo_copy_path_flat(cairo_t * cr);
658
659 void cairo_append_path(cairo_t * cr, const cairo_path_t * path);
660
661 void cairo_path_destroy(cairo_path_t * path);
662
663 cairo_status_t cairo_status(cairo_t * cr);
664
665 const char *cairo_status_to_string(cairo_status_t status);
666
667 cairo_surface_t *cairo_surface_create_similar(cairo_surface_t * other,
668                 cairo_content_t content, int width, int height);
669
670 cairo_surface_t *cairo_surface_reference(cairo_surface_t * surface);
671
672 void cairo_surface_finish(cairo_surface_t * surface);
673
674 void cairo_surface_destroy(cairo_surface_t * surface);
675
676 unsigned int cairo_surface_get_reference_count(cairo_surface_t * surface);
677
678 cairo_status_t cairo_surface_status(cairo_surface_t * surface);
679
680 typedef enum _cairo_surface_type {
681         CAIRO_SURFACE_TYPE_IMAGE,
682         CAIRO_SURFACE_TYPE_PDF,
683         CAIRO_SURFACE_TYPE_PS,
684         CAIRO_SURFACE_TYPE_XLIB,
685         CAIRO_SURFACE_TYPE_XCB,
686         CAIRO_SURFACE_TYPE_GLITZ,
687         CAIRO_SURFACE_TYPE_QUARTZ,
688         CAIRO_SURFACE_TYPE_WIN32,
689         CAIRO_SURFACE_TYPE_BEOS,
690         CAIRO_SURFACE_TYPE_DIRECTFB,
691         CAIRO_SURFACE_TYPE_SVG,
692         CAIRO_SURFACE_TYPE_OS2,
693         CAIRO_SURFACE_TYPE_WIN32_PRINTING,
694         CAIRO_SURFACE_TYPE_QUARTZ_IMAGE
695 } cairo_surface_type_t;
696
697 cairo_surface_type_t cairo_surface_get_type(cairo_surface_t * surface);
698
699 cairo_content_t cairo_surface_get_content(cairo_surface_t * surface);
700
701
702 cairo_status_t cairo_surface_write_to_png(cairo_surface_t * surface, const char *filename);
703
704 cairo_status_t cairo_surface_write_to_png_stream(cairo_surface_t * surface,
705                 cairo_write_func_t write_func, void *closure);
706
707 void *cairo_surface_get_user_data(cairo_surface_t * surface, const cairo_user_data_key_t * key);
708
709 cairo_status_t cairo_surface_set_user_data(cairo_surface_t * surface,
710                 const cairo_user_data_key_t * key,
711                 void *user_data, cairo_destroy_func_t destroy);
712
713 void cairo_surface_get_font_options(cairo_surface_t * surface, cairo_font_options_t * options);
714
715 void cairo_surface_flush(cairo_surface_t * surface);
716
717 void cairo_surface_mark_dirty(cairo_surface_t * surface);
718
719 void cairo_surface_mark_dirty_rectangle(cairo_surface_t * surface, int x, int y, int width, int height);
720
721 void cairo_surface_set_device_offset(cairo_surface_t * surface, double x_offset, double y_offset);
722
723 void cairo_surface_get_device_offset(cairo_surface_t * surface, double *x_offset, double *y_offset);
724
725 void cairo_surface_set_fallback_resolution(cairo_surface_t * surface,
726                 double x_pixels_per_inch, double y_pixels_per_inch);
727
728 void cairo_surface_get_fallback_resolution(cairo_surface_t * surface,
729                 double *x_pixels_per_inch, double *y_pixels_per_inch);
730
731 void cairo_surface_copy_page(cairo_surface_t * surface);
732
733 void cairo_surface_show_page(cairo_surface_t * surface);
734
735 cairo_bool_t cairo_surface_has_show_text_glyphs(cairo_surface_t * surface);
736
737 typedef enum _cairo_format {
738         CAIRO_FORMAT_ARGB32,
739         CAIRO_FORMAT_RGB24,
740         CAIRO_FORMAT_A8,
741         CAIRO_FORMAT_A1
742 } cairo_format_t;
743
744 cairo_surface_t *cairo_image_surface_create(cairo_format_t format, int width, int height);
745
746 int cairo_format_stride_for_width(cairo_format_t format, int width);
747
748 cairo_surface_t *cairo_image_surface_create_for_data(unsigned char *data,
749                 cairo_format_t format,
750                 int width, int height, int stride);
751
752 unsigned char *cairo_image_surface_get_data(cairo_surface_t * surface);
753
754 cairo_format_t cairo_image_surface_get_format(cairo_surface_t * surface);
755
756 int cairo_image_surface_get_width(cairo_surface_t * surface);
757
758 int cairo_image_surface_get_height(cairo_surface_t * surface);
759
760 int cairo_image_surface_get_stride(cairo_surface_t * surface);
761
762
763 cairo_surface_t *cairo_image_surface_create_from_png(const char *filename);
764
765 cairo_surface_t *cairo_image_surface_create_from_png_stream(cairo_read_func_t read_func,
766                 void *closure);
767
768 cairo_pattern_t *cairo_pattern_create_rgb(double red, double green, double blue);
769
770 cairo_pattern_t *cairo_pattern_create_rgba(double red, double green, double blue, double alpha);
771
772 cairo_pattern_t *cairo_pattern_create_for_surface(cairo_surface_t * surface);
773
774 cairo_pattern_t *cairo_pattern_create_linear(double x0, double y0, double x1, double y1);
775
776 cairo_pattern_t *cairo_pattern_create_radial(double cx0, double cy0, double radius0,
777                 double cx1, double cy1, double radius1);
778
779 cairo_pattern_t *cairo_pattern_reference(cairo_pattern_t * pattern);
780
781 void cairo_pattern_destroy(cairo_pattern_t * pattern);
782
783 unsigned int cairo_pattern_get_reference_count(cairo_pattern_t * pattern);
784
785 cairo_status_t cairo_pattern_status(cairo_pattern_t * pattern);
786
787 void *cairo_pattern_get_user_data(cairo_pattern_t * pattern, const cairo_user_data_key_t * key);
788
789 cairo_status_t cairo_pattern_set_user_data(cairo_pattern_t * pattern,
790                 const cairo_user_data_key_t * key,
791                 void *user_data, cairo_destroy_func_t destroy);
792
793 typedef enum _cairo_pattern_type {
794         CAIRO_PATTERN_TYPE_SOLID,
795         CAIRO_PATTERN_TYPE_SURFACE,
796         CAIRO_PATTERN_TYPE_LINEAR,
797         CAIRO_PATTERN_TYPE_RADIAL
798 } cairo_pattern_type_t;
799
800 cairo_pattern_type_t cairo_pattern_get_type(cairo_pattern_t * pattern);
801
802 void cairo_pattern_add_color_stop_rgb(cairo_pattern_t * pattern, double offset,
803                 double red, double green, double blue);
804
805 void cairo_pattern_add_color_stop_rgba(cairo_pattern_t * pattern, double
806                 offset, double red, double green, double blue, double alpha);
807
808 void cairo_pattern_set_matrix(cairo_pattern_t * pattern, cairo_matrix_t * matrix);
809
810 void cairo_pattern_get_matrix(cairo_pattern_t * pattern, cairo_matrix_t * matrix);
811
812 typedef enum _cairo_extend {
813         CAIRO_EXTEND_NONE,
814         CAIRO_EXTEND_REPEAT,
815         CAIRO_EXTEND_REFLECT,
816         CAIRO_EXTEND_PAD
817 } cairo_extend_t;
818
819 void cairo_pattern_set_extend(cairo_pattern_t * pattern, cairo_extend_t extend);
820
821 cairo_extend_t cairo_pattern_get_extend(cairo_pattern_t * pattern);
822
823 void cairo_pattern_set_filter(cairo_pattern_t * pattern, cairo_filter_t filter);
824
825 cairo_filter_t cairo_pattern_get_filter(cairo_pattern_t * pattern);
826
827 cairo_status_t cairo_pattern_get_rgba(cairo_pattern_t * pattern,
828                 double *red, double *green, double *blue, double *alpha);
829
830 cairo_status_t cairo_pattern_get_surface(cairo_pattern_t * pattern, cairo_surface_t ** surface);
831
832 cairo_status_t cairo_pattern_get_color_stop_rgba(cairo_pattern_t * pattern,
833                 int index, double *offset,
834                 double *red, double *green, double *blue, double *alpha);
835
836 cairo_status_t cairo_pattern_get_color_stop_count(cairo_pattern_t * pattern, int *count);
837
838 cairo_status_t cairo_pattern_get_linear_points(cairo_pattern_t * pattern,
839                 double *x0, double *y0, double *x1, double *y1);
840
841 cairo_status_t cairo_pattern_get_radial_circles(cairo_pattern_t * pattern,
842                 double *x0, double *y0, double *r0,
843                 double *x1, double *y1, double *r1);
844
845 void cairo_matrix_init(cairo_matrix_t * matrix, double xx, double yx, double
846                 xy, double yy, double x0, double y0);
847
848 void cairo_matrix_init_identity(cairo_matrix_t * matrix);
849
850 void cairo_matrix_init_translate(cairo_matrix_t * matrix, double tx, double ty);
851
852 void cairo_matrix_init_scale(cairo_matrix_t * matrix, double sx, double sy);
853
854 void cairo_matrix_init_rotate(cairo_matrix_t * matrix, double radians);
855
856 void cairo_matrix_translate(cairo_matrix_t * matrix, double tx, double ty);
857
858 void cairo_matrix_scale(cairo_matrix_t * matrix, double sx, double sy);
859
860 void cairo_matrix_rotate(cairo_matrix_t * matrix, double radians);
861
862 cairo_status_t cairo_matrix_invert(cairo_matrix_t * matrix);
863
864 void cairo_matrix_multiply(cairo_matrix_t * result, cairo_matrix_t * a,
865                 cairo_matrix_t * b);
866
867 void cairo_matrix_transform_distance(cairo_matrix_t * matrix, double *dx, double *dy);
868
869 void cairo_matrix_transform_point(cairo_matrix_t * matrix, double *x, double *y);
870
871 void cairo_debug_reset_static_data(void);