2004-08-02 13:13:28 +00:00
|
|
|
|
/* cairo - a vector graphics library with display and print output
|
|
|
|
|
|
*
|
2003-10-23 07:47:29 +00:00
|
|
|
|
* Copyright <EFBFBD> 2002 University of Southern California
|
2003-07-18 11:34:19 +00:00
|
|
|
|
*
|
2004-08-02 13:13:28 +00:00
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2004-09-04 06:38:34 +00:00
|
|
|
|
* modify it either under the terms of the GNU Lesser General Public
|
|
|
|
|
|
* License version 2.1 as published by the Free Software Foundation
|
|
|
|
|
|
* (the "LGPL") or, at your option, under the terms of the Mozilla
|
|
|
|
|
|
* Public License Version 1.1 (the "MPL"). If you do not alter this
|
|
|
|
|
|
* notice, a recipient may use your version of this file under either
|
|
|
|
|
|
* the MPL or the LGPL.
|
2004-08-02 13:13:28 +00:00
|
|
|
|
*
|
2004-09-04 06:38:34 +00:00
|
|
|
|
* You should have received a copy of the LGPL along with this library
|
|
|
|
|
|
* in the file COPYING-LGPL-2.1; if not, write to the Free Software
|
|
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
* You should have received a copy of the MPL along with this library
|
|
|
|
|
|
* in the file COPYING-MPL-1.1
|
2003-07-18 11:34:19 +00:00
|
|
|
|
*
|
2004-09-04 06:38:34 +00:00
|
|
|
|
* The contents of this file are subject to the Mozilla Public License
|
|
|
|
|
|
* Version 1.1 (the "License"); you may not use this file except in
|
|
|
|
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
|
|
*
|
|
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
|
|
|
|
|
|
* OF ANY KIND, either express or implied. See the LGPL or the MPL for
|
|
|
|
|
|
* the specific language governing rights and limitations.
|
|
|
|
|
|
*
|
|
|
|
|
|
* The Original Code is the cairo graphics library.
|
|
|
|
|
|
*
|
|
|
|
|
|
* The Initial Developer of the Original Code is University of Southern
|
|
|
|
|
|
* California.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Contributor(s):
|
|
|
|
|
|
* Carl D. Worth <cworth@isi.edu>
|
2003-07-18 11:34:19 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _CAIRO_H_
|
|
|
|
|
|
#define _CAIRO_H_
|
|
|
|
|
|
|
2003-12-05 08:53:07 +00:00
|
|
|
|
#include <cairo-features.h>
|
|
|
|
|
|
|
2003-12-11 12:43:58 +00:00
|
|
|
|
#include <pixman.h>
|
2003-10-31 21:30:35 +00:00
|
|
|
|
#include <stdio.h>
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
|
|
|
|
|
typedef struct cairo cairo_t;
|
2003-09-25 08:01:38 +00:00
|
|
|
|
typedef struct cairo_surface cairo_surface_t;
|
2003-09-25 15:01:28 +00:00
|
|
|
|
typedef struct cairo_matrix cairo_matrix_t;
|
2004-04-06 09:36:12 +00:00
|
|
|
|
typedef struct cairo_pattern cairo_pattern_t;
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Functions for manipulating state objects */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_t *
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_create (void);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-09-16 06:45:19 +00:00
|
|
|
|
cairo_reference (cairo_t *cr);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-09-16 06:45:19 +00:00
|
|
|
|
cairo_destroy (cairo_t *cr);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_save (cairo_t *cr);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_restore (cairo_t *cr);
|
|
|
|
|
|
|
2004-02-17 18:47:34 +00:00
|
|
|
|
/* XXX: Replace with cairo_current_gstate/cairo_set_gstate */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-09-30 11:39:07 +00:00
|
|
|
|
cairo_copy (cairo_t *dest, cairo_t *src);
|
|
|
|
|
|
|
2003-07-18 11:34:19 +00:00
|
|
|
|
/* XXX: I want to rethink this API
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_push_group (cairo_t *cr);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_pop_group (cairo_t *cr);
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* Modify state */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_set_target_surface (cairo_t *cr, cairo_surface_t *surface);
|
|
|
|
|
|
|
2003-07-18 12:42:49 +00:00
|
|
|
|
typedef enum cairo_format {
|
2003-10-31 10:41:37 +00:00
|
|
|
|
CAIRO_FORMAT_ARGB32,
|
|
|
|
|
|
CAIRO_FORMAT_RGB24,
|
|
|
|
|
|
CAIRO_FORMAT_A8,
|
|
|
|
|
|
CAIRO_FORMAT_A1
|
2003-07-18 11:34:19 +00:00
|
|
|
|
} cairo_format_t;
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_set_target_image (cairo_t *cr,
|
2003-08-26 07:40:17 +00:00
|
|
|
|
char *data,
|
|
|
|
|
|
cairo_format_t format,
|
|
|
|
|
|
int width,
|
|
|
|
|
|
int height,
|
|
|
|
|
|
int stride);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2003-12-12 11:44:16 +00:00
|
|
|
|
#ifdef CAIRO_HAS_PS_SURFACE
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-10-31 21:30:35 +00:00
|
|
|
|
cairo_set_target_ps (cairo_t *cr,
|
|
|
|
|
|
FILE *file,
|
|
|
|
|
|
double width_inches,
|
|
|
|
|
|
double height_inches,
|
|
|
|
|
|
double x_pixels_per_inch,
|
|
|
|
|
|
double y_pixels_per_inch);
|
|
|
|
|
|
|
2003-12-12 11:44:16 +00:00
|
|
|
|
#endif /* CAIRO_HAS_PS_SURFACE */
|
|
|
|
|
|
|
2004-02-24 12:28:49 +00:00
|
|
|
|
#ifdef CAIRO_HAS_PNG_SURFACE
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
cairo_set_target_png (cairo_t *cr,
|
|
|
|
|
|
FILE *file,
|
|
|
|
|
|
cairo_format_t format,
|
|
|
|
|
|
int width,
|
|
|
|
|
|
int height);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* CAIRO_HAS_PNG_SURFACE */
|
|
|
|
|
|
|
2003-12-05 08:53:07 +00:00
|
|
|
|
#ifdef CAIRO_HAS_XLIB_SURFACE
|
2003-12-03 12:27:44 +00:00
|
|
|
|
|
|
|
|
|
|
#include <X11/extensions/Xrender.h>
|
|
|
|
|
|
|
|
|
|
|
|
/* XXX: This shold be renamed to cairo_set_target_xlib to match the
|
|
|
|
|
|
* other backends */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-12-03 12:27:44 +00:00
|
|
|
|
cairo_set_target_drawable (cairo_t *cr,
|
|
|
|
|
|
Display *dpy,
|
|
|
|
|
|
Drawable drawable);
|
2003-12-05 08:53:07 +00:00
|
|
|
|
#endif /* CAIRO_HAS_XLIB_SURFACE */
|
2003-12-03 12:27:44 +00:00
|
|
|
|
|
2004-02-02 23:24:14 +00:00
|
|
|
|
#ifdef CAIRO_HAS_XCB_SURFACE
|
|
|
|
|
|
|
|
|
|
|
|
#include <X11/XCB/xcb.h>
|
|
|
|
|
|
#include <X11/XCB/render.h>
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
cairo_set_target_xcb (cairo_t *cr,
|
|
|
|
|
|
XCBConnection *dpy,
|
2004-03-17 09:44:26 +00:00
|
|
|
|
XCBDRAWABLE drawable,
|
|
|
|
|
|
XCBVISUALTYPE *visual,
|
2004-02-02 23:24:14 +00:00
|
|
|
|
cairo_format_t format);
|
|
|
|
|
|
#endif /* CAIRO_HAS_XCB_SURFACE */
|
|
|
|
|
|
|
2004-04-09 14:19:47 +00:00
|
|
|
|
#ifdef CAIRO_HAS_GL_SURFACE
|
|
|
|
|
|
|
|
|
|
|
|
#include <glitz.h>
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
cairo_set_target_gl (cairo_t *cr,
|
|
|
|
|
|
glitz_surface_t *surface);
|
|
|
|
|
|
#endif /* CAIRO_HAS_GL_SURFACE */
|
|
|
|
|
|
|
2003-07-18 12:42:49 +00:00
|
|
|
|
typedef enum cairo_operator {
|
2003-10-31 10:41:37 +00:00
|
|
|
|
CAIRO_OPERATOR_CLEAR,
|
|
|
|
|
|
CAIRO_OPERATOR_SRC,
|
|
|
|
|
|
CAIRO_OPERATOR_DST,
|
|
|
|
|
|
CAIRO_OPERATOR_OVER,
|
|
|
|
|
|
CAIRO_OPERATOR_OVER_REVERSE,
|
|
|
|
|
|
CAIRO_OPERATOR_IN,
|
|
|
|
|
|
CAIRO_OPERATOR_IN_REVERSE,
|
|
|
|
|
|
CAIRO_OPERATOR_OUT,
|
|
|
|
|
|
CAIRO_OPERATOR_OUT_REVERSE,
|
|
|
|
|
|
CAIRO_OPERATOR_ATOP,
|
|
|
|
|
|
CAIRO_OPERATOR_ATOP_REVERSE,
|
|
|
|
|
|
CAIRO_OPERATOR_XOR,
|
|
|
|
|
|
CAIRO_OPERATOR_ADD,
|
2003-12-17 12:59:37 +00:00
|
|
|
|
CAIRO_OPERATOR_SATURATE
|
2003-07-18 11:34:19 +00:00
|
|
|
|
} cairo_operator_t;
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_set_operator (cairo_t *cr, cairo_operator_t op);
|
|
|
|
|
|
|
|
|
|
|
|
/* XXX: Probably want to bite the bullet and expose a cairo_color_t object */
|
|
|
|
|
|
|
2003-07-30 08:30:50 +00:00
|
|
|
|
/* XXX: I've been trying to come up with a sane way to specify:
|
|
|
|
|
|
|
|
|
|
|
|
cairo_set_color (cairo_t *cr, cairo_color_t *color);
|
|
|
|
|
|
|
|
|
|
|
|
Keith wants to be able to support super-luminescent colors,
|
|
|
|
|
|
(premultiplied colors with R/G/B greater than alpha). The current
|
|
|
|
|
|
API does not allow that. Adding a premulitplied RGBA cairo_color_t
|
|
|
|
|
|
would do the trick.
|
|
|
|
|
|
|
|
|
|
|
|
One problem though is that alpha is currently orthogonal to
|
|
|
|
|
|
color. For example, show_surface uses gstate->alpha but ignores the
|
|
|
|
|
|
color. So, it doesn't seem be right to have cairo_set_color modify
|
|
|
|
|
|
the behavior of cairo_show_surface.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_set_rgb_color (cairo_t *cr, double red, double green, double blue);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2004-04-06 09:36:12 +00:00
|
|
|
|
cairo_set_pattern (cairo_t *cr, cairo_pattern_t *pattern);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2004-04-06 09:36:12 +00:00
|
|
|
|
cairo_set_alpha (cairo_t *cr, double alpha);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-02-17 18:38:23 +00:00
|
|
|
|
/* XXX: Currently, the tolerance value is specified by the user in
|
|
|
|
|
|
terms of device-space units. If I'm not mistaken, this is the only
|
|
|
|
|
|
value in this API that is not expressed in user-space units. I
|
|
|
|
|
|
should think whether this value should be user-space instead. */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-30 08:30:50 +00:00
|
|
|
|
cairo_set_tolerance (cairo_t *cr, double tolerance);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2003-07-18 12:42:49 +00:00
|
|
|
|
typedef enum cairo_fill_rule {
|
2003-07-18 11:34:19 +00:00
|
|
|
|
CAIRO_FILL_RULE_WINDING,
|
|
|
|
|
|
CAIRO_FILL_RULE_EVEN_ODD
|
|
|
|
|
|
} cairo_fill_rule_t;
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_set_fill_rule (cairo_t *cr, cairo_fill_rule_t fill_rule);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_set_line_width (cairo_t *cr, double width);
|
|
|
|
|
|
|
2003-07-18 12:42:49 +00:00
|
|
|
|
typedef enum cairo_line_cap {
|
2003-07-18 11:34:19 +00:00
|
|
|
|
CAIRO_LINE_CAP_BUTT,
|
|
|
|
|
|
CAIRO_LINE_CAP_ROUND,
|
|
|
|
|
|
CAIRO_LINE_CAP_SQUARE
|
|
|
|
|
|
} cairo_line_cap_t;
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_set_line_cap (cairo_t *cr, cairo_line_cap_t line_cap);
|
|
|
|
|
|
|
2003-07-18 12:42:49 +00:00
|
|
|
|
typedef enum cairo_line_join {
|
2003-07-18 11:34:19 +00:00
|
|
|
|
CAIRO_LINE_JOIN_MITER,
|
|
|
|
|
|
CAIRO_LINE_JOIN_ROUND,
|
|
|
|
|
|
CAIRO_LINE_JOIN_BEVEL
|
|
|
|
|
|
} cairo_line_join_t;
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_set_line_join (cairo_t *cr, cairo_line_join_t line_join);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_set_dash (cairo_t *cr, double *dashes, int ndash, double offset);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_set_miter_limit (cairo_t *cr, double limit);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_translate (cairo_t *cr, double tx, double ty);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_scale (cairo_t *cr, double sx, double sy);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_rotate (cairo_t *cr, double angle);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_concat_matrix (cairo_t *cr,
|
2004-02-17 18:47:34 +00:00
|
|
|
|
cairo_matrix_t *matrix);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_set_matrix (cairo_t *cr,
|
2004-02-17 18:47:34 +00:00
|
|
|
|
cairo_matrix_t *matrix);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_default_matrix (cairo_t *cr);
|
|
|
|
|
|
|
|
|
|
|
|
/* XXX: There's been a proposal to add cairo_default_matrix_exact */
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_identity_matrix (cairo_t *cr);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_transform_point (cairo_t *cr, double *x, double *y);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_transform_distance (cairo_t *cr, double *dx, double *dy);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_inverse_transform_point (cairo_t *cr, double *x, double *y);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_inverse_transform_distance (cairo_t *cr, double *dx, double *dy);
|
|
|
|
|
|
|
|
|
|
|
|
/* Path creation functions */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_new_path (cairo_t *cr);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_move_to (cairo_t *cr, double x, double y);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_line_to (cairo_t *cr, double x, double y);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_curve_to (cairo_t *cr,
|
2004-02-17 18:38:23 +00:00
|
|
|
|
double x1, double y1,
|
|
|
|
|
|
double x2, double y2,
|
|
|
|
|
|
double x3, double y3);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-09-29 08:36:29 +00:00
|
|
|
|
cairo_arc (cairo_t *cr,
|
|
|
|
|
|
double xc, double yc,
|
|
|
|
|
|
double radius,
|
|
|
|
|
|
double angle1, double angle2);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-09-29 08:36:29 +00:00
|
|
|
|
cairo_arc_negative (cairo_t *cr,
|
|
|
|
|
|
double xc, double yc,
|
|
|
|
|
|
double radius,
|
|
|
|
|
|
double angle1, double angle2);
|
|
|
|
|
|
|
|
|
|
|
|
/* XXX: NYI
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-09-29 08:36:29 +00:00
|
|
|
|
cairo_arc_to (cairo_t *cr,
|
|
|
|
|
|
double x1, double y1,
|
|
|
|
|
|
double x2, double y2,
|
|
|
|
|
|
double radius);
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_rel_move_to (cairo_t *cr, double dx, double dy);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_rel_line_to (cairo_t *cr, double dx, double dy);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_rel_curve_to (cairo_t *cr,
|
2003-07-30 08:30:50 +00:00
|
|
|
|
double dx1, double dy1,
|
|
|
|
|
|
double dx2, double dy2,
|
|
|
|
|
|
double dx3, double dy3);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_rectangle (cairo_t *cr,
|
2003-07-30 08:30:50 +00:00
|
|
|
|
double x, double y,
|
|
|
|
|
|
double width, double height);
|
|
|
|
|
|
|
|
|
|
|
|
/* XXX: This is the same name that PostScript uses, but to me the name
|
|
|
|
|
|
suggests an actual drawing operation ala cairo_stroke --- especially
|
|
|
|
|
|
since I want to add a cairo_path_t and with that it would be
|
|
|
|
|
|
natural to have "cairo_stroke_path (cairo_t *, cairo_path_t *)"
|
|
|
|
|
|
|
|
|
|
|
|
Maybe we could use something like "cairo_outline_path (cairo_t *)"?
|
|
|
|
|
|
*/
|
|
|
|
|
|
/* XXX: NYI
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-30 08:30:50 +00:00
|
|
|
|
cairo_stroke_path (cairo_t *cr);
|
|
|
|
|
|
*/
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_close_path (cairo_t *cr);
|
|
|
|
|
|
|
|
|
|
|
|
/* Painting functions */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_stroke (cairo_t *cr);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_fill (cairo_t *cr);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-11-03 19:17:31 +00:00
|
|
|
|
cairo_copy_page (cairo_t *cr);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-10-31 21:30:35 +00:00
|
|
|
|
cairo_show_page (cairo_t *cr);
|
|
|
|
|
|
|
2003-11-06 18:33:28 +00:00
|
|
|
|
/* Insideness testing */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
int
|
2003-11-06 18:33:28 +00:00
|
|
|
|
cairo_in_stroke (cairo_t *cr, double x, double y);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
int
|
2003-11-06 18:33:28 +00:00
|
|
|
|
cairo_in_fill (cairo_t *cr, double x, double y);
|
|
|
|
|
|
|
2004-04-06 09:36:12 +00:00
|
|
|
|
/* Rectangular extents */
|
|
|
|
|
|
void
|
|
|
|
|
|
cairo_stroke_extents (cairo_t *cr,
|
|
|
|
|
|
double *x1, double *y1,
|
|
|
|
|
|
double *x2, double *y2);
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
cairo_fill_extents (cairo_t *cr,
|
|
|
|
|
|
double *x1, double *y1,
|
|
|
|
|
|
double *x2, double *y2);
|
|
|
|
|
|
|
2003-07-18 11:34:19 +00:00
|
|
|
|
/* Clipping */
|
2004-03-23 10:33:32 +00:00
|
|
|
|
void
|
|
|
|
|
|
cairo_init_clip (cairo_t *cr);
|
|
|
|
|
|
|
2004-05-07 18:52:01 +00:00
|
|
|
|
/* Note: cairo_clip does not consume the current path */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_clip (cairo_t *cr);
|
|
|
|
|
|
|
|
|
|
|
|
/* Font/Text functions */
|
|
|
|
|
|
|
2003-10-23 15:22:28 +00:00
|
|
|
|
typedef struct cairo_font cairo_font_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
|
unsigned long index;
|
|
|
|
|
|
double x;
|
|
|
|
|
|
double y;
|
|
|
|
|
|
} cairo_glyph_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2003-12-15 19:00:15 +00:00
|
|
|
|
double x_bearing;
|
|
|
|
|
|
double y_bearing;
|
|
|
|
|
|
double width;
|
|
|
|
|
|
double height;
|
2003-10-23 15:22:28 +00:00
|
|
|
|
double x_advance;
|
|
|
|
|
|
double y_advance;
|
|
|
|
|
|
} cairo_text_extents_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
|
double ascent;
|
|
|
|
|
|
double descent;
|
|
|
|
|
|
double height;
|
|
|
|
|
|
double max_x_advance;
|
|
|
|
|
|
double max_y_advance;
|
|
|
|
|
|
} cairo_font_extents_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef enum cairo_font_slant {
|
|
|
|
|
|
CAIRO_FONT_SLANT_NORMAL,
|
|
|
|
|
|
CAIRO_FONT_SLANT_ITALIC,
|
|
|
|
|
|
CAIRO_FONT_SLANT_OBLIQUE
|
|
|
|
|
|
} cairo_font_slant_t;
|
|
|
|
|
|
|
2004-04-02 08:01:09 +00:00
|
|
|
|
typedef enum cairo_font_weight {
|
|
|
|
|
|
CAIRO_FONT_WEIGHT_NORMAL,
|
|
|
|
|
|
CAIRO_FONT_WEIGHT_BOLD
|
|
|
|
|
|
} cairo_font_weight_t;
|
|
|
|
|
|
|
2003-10-23 15:22:28 +00:00
|
|
|
|
/* This interface is for dealing with text as text, not caring about the
|
|
|
|
|
|
font object inside the the cairo_t. */
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2004-08-01 23:03:02 +00:00
|
|
|
|
cairo_select_font (cairo_t *cr,
|
2003-12-11 11:12:59 +00:00
|
|
|
|
const char *family,
|
2003-10-23 15:22:28 +00:00
|
|
|
|
cairo_font_slant_t slant,
|
|
|
|
|
|
cairo_font_weight_t weight);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_scale_font (cairo_t *cr, double scale);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-10-23 15:22:28 +00:00
|
|
|
|
cairo_transform_font (cairo_t *cr, cairo_matrix_t *matrix);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2004-08-01 23:03:02 +00:00
|
|
|
|
cairo_show_text (cairo_t *cr, const unsigned char *utf8);
|
2003-10-23 15:22:28 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2004-08-01 23:03:02 +00:00
|
|
|
|
cairo_show_glyphs (cairo_t *cr, cairo_glyph_t *glyphs, int num_glyphs);
|
2003-10-23 15:22:28 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_font_t *
|
2004-08-01 23:03:02 +00:00
|
|
|
|
cairo_current_font (cairo_t *cr);
|
2003-10-23 15:22:28 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2004-08-01 23:03:02 +00:00
|
|
|
|
cairo_current_font_extents (cairo_t *cr,
|
2003-10-23 15:22:28 +00:00
|
|
|
|
cairo_font_extents_t *extents);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2004-08-01 23:03:02 +00:00
|
|
|
|
cairo_set_font (cairo_t *cr, cairo_font_t *font);
|
2003-10-23 15:22:28 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2004-08-01 23:03:02 +00:00
|
|
|
|
cairo_text_extents (cairo_t *cr,
|
2003-10-23 15:22:28 +00:00
|
|
|
|
const unsigned char *utf8,
|
|
|
|
|
|
cairo_text_extents_t *extents);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2004-08-01 23:03:02 +00:00
|
|
|
|
cairo_glyph_extents (cairo_t *cr,
|
2003-10-23 15:22:28 +00:00
|
|
|
|
cairo_glyph_t *glyphs,
|
|
|
|
|
|
int num_glyphs,
|
|
|
|
|
|
cairo_text_extents_t *extents);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2004-08-01 23:03:02 +00:00
|
|
|
|
cairo_text_path (cairo_t *cr, const unsigned char *utf8);
|
2003-10-23 15:22:28 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2004-08-01 23:03:02 +00:00
|
|
|
|
cairo_glyph_path (cairo_t *cr, cairo_glyph_t *glyphs, int num_glyphs);
|
2003-10-23 15:22:28 +00:00
|
|
|
|
|
|
|
|
|
|
/* Portable interface to general font features. */
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-10-23 15:22:28 +00:00
|
|
|
|
cairo_font_reference (cairo_font_t *font);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-10-23 15:22:28 +00:00
|
|
|
|
cairo_font_destroy (cairo_font_t *font);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-10-23 15:22:28 +00:00
|
|
|
|
cairo_font_set_transform (cairo_font_t *font,
|
|
|
|
|
|
cairo_matrix_t *matrix);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-10-23 15:22:28 +00:00
|
|
|
|
cairo_font_current_transform (cairo_font_t *font,
|
|
|
|
|
|
cairo_matrix_t *matrix);
|
|
|
|
|
|
|
|
|
|
|
|
/* Fontconfig/Freetype platform-specific font interface */
|
|
|
|
|
|
|
2003-10-31 10:41:37 +00:00
|
|
|
|
#include <fontconfig/fontconfig.h>
|
2003-11-18 06:18:05 +00:00
|
|
|
|
#include <ft2build.h>
|
|
|
|
|
|
#include FT_FREETYPE_H
|
2003-10-23 15:22:28 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_font_t *
|
2003-10-30 12:39:49 +00:00
|
|
|
|
cairo_ft_font_create (FT_Library ft_library, FcPattern *pattern);
|
2003-10-23 15:22:28 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_font_t *
|
2003-10-23 15:22:28 +00:00
|
|
|
|
cairo_ft_font_create_for_ft_face (FT_Face face);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-10-23 15:22:28 +00:00
|
|
|
|
cairo_ft_font_destroy (cairo_font_t *ft_font);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
FT_Face
|
2003-10-23 15:22:28 +00:00
|
|
|
|
cairo_ft_font_face (cairo_font_t *ft_font);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
FcPattern *
|
2003-10-23 15:22:28 +00:00
|
|
|
|
cairo_ft_font_pattern (cairo_font_t *ft_font);
|
|
|
|
|
|
|
2003-07-18 11:34:19 +00:00
|
|
|
|
/* Image functions */
|
|
|
|
|
|
|
2003-12-16 07:20:20 +00:00
|
|
|
|
/* XXX: Eliminate width/height here */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_show_surface (cairo_t *cr,
|
2003-08-26 07:40:17 +00:00
|
|
|
|
cairo_surface_t *surface,
|
|
|
|
|
|
int width,
|
|
|
|
|
|
int height);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
|
|
|
|
|
/* Query functions */
|
|
|
|
|
|
|
2003-09-04 06:52:01 +00:00
|
|
|
|
/* XXX: It would be nice if I could find a simpler way to make the
|
|
|
|
|
|
definitions for the deprecated functions. Ideally, I would just
|
|
|
|
|
|
have to put DEPRECATE (cairo_get_operator, cairo_current_operator)
|
|
|
|
|
|
into one file and be done with it. For now, I've got a little more
|
|
|
|
|
|
typing than that. */
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_operator_t
|
2003-09-04 06:52:01 +00:00
|
|
|
|
cairo_current_operator (cairo_t *cr);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-09-04 06:52:01 +00:00
|
|
|
|
cairo_current_rgb_color (cairo_t *cr, double *red, double *green, double *blue);
|
2004-04-06 09:36:12 +00:00
|
|
|
|
cairo_pattern_t *
|
|
|
|
|
|
cairo_current_pattern (cairo_t *cr);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
double
|
2003-09-04 06:52:01 +00:00
|
|
|
|
cairo_current_alpha (cairo_t *cr);
|
2003-07-30 08:30:50 +00:00
|
|
|
|
|
2003-09-04 06:52:01 +00:00
|
|
|
|
/* XXX: Do we want cairo_current_pattern as well? */
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
double
|
2003-09-04 06:52:01 +00:00
|
|
|
|
cairo_current_tolerance (cairo_t *cr);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-09-04 06:52:01 +00:00
|
|
|
|
cairo_current_point (cairo_t *cr, double *x, double *y);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_fill_rule_t
|
2003-09-04 06:52:01 +00:00
|
|
|
|
cairo_current_fill_rule (cairo_t *cr);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
double
|
2003-09-04 06:52:01 +00:00
|
|
|
|
cairo_current_line_width (cairo_t *cr);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_line_cap_t
|
2003-09-04 06:52:01 +00:00
|
|
|
|
cairo_current_line_cap (cairo_t *cr);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_line_join_t
|
2003-09-04 06:52:01 +00:00
|
|
|
|
cairo_current_line_join (cairo_t *cr);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
double
|
2003-09-04 06:52:01 +00:00
|
|
|
|
cairo_current_miter_limit (cairo_t *cr);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2003-09-04 06:52:01 +00:00
|
|
|
|
/* XXX: How to do cairo_current_dash??? Do we want to switch to a cairo_dash object? */
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-09-04 06:52:01 +00:00
|
|
|
|
cairo_current_matrix (cairo_t *cr, cairo_matrix_t *matrix);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2003-11-06 12:53:39 +00:00
|
|
|
|
/* XXX: Need to decide the memory mangement semantics of this
|
|
|
|
|
|
function. Should it reference the surface again? */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_surface_t *
|
2003-09-04 06:52:01 +00:00
|
|
|
|
cairo_current_target_surface (cairo_t *cr);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-02-12 19:02:33 +00:00
|
|
|
|
typedef void (cairo_move_to_func_t) (void *closure,
|
|
|
|
|
|
double x, double y);
|
|
|
|
|
|
|
|
|
|
|
|
typedef void (cairo_line_to_func_t) (void *closure,
|
|
|
|
|
|
double x, double y);
|
|
|
|
|
|
|
|
|
|
|
|
typedef void (cairo_curve_to_func_t) (void *closure,
|
|
|
|
|
|
double x1, double y1,
|
|
|
|
|
|
double x2, double y2,
|
|
|
|
|
|
double x3, double y3);
|
|
|
|
|
|
|
|
|
|
|
|
typedef void (cairo_close_path_func_t) (void *closure);
|
|
|
|
|
|
|
2004-02-17 18:38:23 +00:00
|
|
|
|
extern void
|
|
|
|
|
|
cairo_current_path (cairo_t *cr,
|
|
|
|
|
|
cairo_move_to_func_t *move_to,
|
|
|
|
|
|
cairo_line_to_func_t *line_to,
|
|
|
|
|
|
cairo_curve_to_func_t *curve_to,
|
|
|
|
|
|
cairo_close_path_func_t *close_path,
|
|
|
|
|
|
void *closure);
|
|
|
|
|
|
|
|
|
|
|
|
extern void
|
|
|
|
|
|
cairo_current_path_flat (cairo_t *cr,
|
|
|
|
|
|
cairo_move_to_func_t *move_to,
|
|
|
|
|
|
cairo_line_to_func_t *line_to,
|
|
|
|
|
|
cairo_close_path_func_t *close_path,
|
|
|
|
|
|
void *closure);
|
|
|
|
|
|
|
2003-07-18 11:34:19 +00:00
|
|
|
|
/* Error status queries */
|
|
|
|
|
|
|
2003-07-18 12:42:49 +00:00
|
|
|
|
typedef enum cairo_status {
|
2003-07-18 11:34:19 +00:00
|
|
|
|
CAIRO_STATUS_SUCCESS = 0,
|
|
|
|
|
|
CAIRO_STATUS_NO_MEMORY,
|
|
|
|
|
|
CAIRO_STATUS_INVALID_RESTORE,
|
|
|
|
|
|
CAIRO_STATUS_INVALID_POP_GROUP,
|
|
|
|
|
|
CAIRO_STATUS_NO_CURRENT_POINT,
|
2003-09-04 16:27:34 +00:00
|
|
|
|
CAIRO_STATUS_INVALID_MATRIX,
|
2003-10-31 10:41:37 +00:00
|
|
|
|
CAIRO_STATUS_NO_TARGET_SURFACE,
|
|
|
|
|
|
CAIRO_STATUS_NULL_POINTER
|
2003-07-18 11:34:19 +00:00
|
|
|
|
} cairo_status_t;
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_status_t
|
2003-09-04 06:52:01 +00:00
|
|
|
|
cairo_status (cairo_t *cr);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
const char *
|
2003-09-04 06:52:01 +00:00
|
|
|
|
cairo_status_string (cairo_t *cr);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2003-10-31 21:30:35 +00:00
|
|
|
|
/* Surface manipulation */
|
|
|
|
|
|
/* XXX: We may want to rename this function in light of the new
|
|
|
|
|
|
virtualized surface backends... */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_surface_t *
|
2003-10-31 21:30:35 +00:00
|
|
|
|
cairo_surface_create_for_image (char *data,
|
|
|
|
|
|
cairo_format_t format,
|
|
|
|
|
|
int width,
|
|
|
|
|
|
int height,
|
|
|
|
|
|
int stride);
|
|
|
|
|
|
|
|
|
|
|
|
/* XXX: I want to remove this function, (replace with
|
|
|
|
|
|
cairo_set_target_scratch or similar). */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_surface_t *
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_surface_create_similar (cairo_surface_t *other,
|
2003-08-29 17:57:08 +00:00
|
|
|
|
cairo_format_t format,
|
2003-07-30 08:30:50 +00:00
|
|
|
|
int width,
|
|
|
|
|
|
int height);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-09-16 06:45:19 +00:00
|
|
|
|
cairo_surface_reference (cairo_surface_t *surface);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_surface_destroy (cairo_surface_t *surface);
|
|
|
|
|
|
|
|
|
|
|
|
/* XXX: Note: The current Render/Ic implementations don't do the right
|
|
|
|
|
|
thing with repeat when the surface has a non-identity matrix. */
|
2003-10-31 21:30:35 +00:00
|
|
|
|
/* XXX: Rework this as a cairo function with an enum: cairo_set_pattern_extend */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_status_t
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_surface_set_repeat (cairo_surface_t *surface, int repeat);
|
|
|
|
|
|
|
2003-10-31 21:30:35 +00:00
|
|
|
|
/* XXX: Rework this as a cairo function: cairo_set_pattern_transform */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_status_t
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_surface_set_matrix (cairo_surface_t *surface, cairo_matrix_t *matrix);
|
|
|
|
|
|
|
2003-10-31 21:30:35 +00:00
|
|
|
|
/* XXX: Rework this as a cairo function: cairo_current_pattern_transform */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_status_t
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_surface_get_matrix (cairo_surface_t *surface, cairo_matrix_t *matrix);
|
|
|
|
|
|
|
2004-04-06 09:36:12 +00:00
|
|
|
|
typedef enum {
|
2003-10-31 10:41:37 +00:00
|
|
|
|
CAIRO_FILTER_FAST,
|
|
|
|
|
|
CAIRO_FILTER_GOOD,
|
|
|
|
|
|
CAIRO_FILTER_BEST,
|
|
|
|
|
|
CAIRO_FILTER_NEAREST,
|
2004-04-06 09:36:12 +00:00
|
|
|
|
CAIRO_FILTER_BILINEAR,
|
|
|
|
|
|
CAIRO_FILTER_GAUSSIAN
|
2003-07-18 11:34:19 +00:00
|
|
|
|
} cairo_filter_t;
|
2004-04-06 09:36:12 +00:00
|
|
|
|
|
2003-10-31 21:30:35 +00:00
|
|
|
|
/* XXX: Rework this as a cairo function: cairo_set_pattern_filter */
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_status_t
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_surface_set_filter (cairo_surface_t *surface, cairo_filter_t filter);
|
|
|
|
|
|
|
2004-01-30 14:44:18 +00:00
|
|
|
|
cairo_filter_t
|
|
|
|
|
|
cairo_surface_get_filter (cairo_surface_t *surface);
|
|
|
|
|
|
|
2003-10-31 10:41:37 +00:00
|
|
|
|
/* Image-surface functions */
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_surface_t *
|
2003-10-31 10:41:37 +00:00
|
|
|
|
cairo_image_surface_create (cairo_format_t format,
|
|
|
|
|
|
int width,
|
|
|
|
|
|
int height);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_surface_t *
|
2003-10-31 10:41:37 +00:00
|
|
|
|
cairo_image_surface_create_for_data (char *data,
|
|
|
|
|
|
cairo_format_t format,
|
|
|
|
|
|
int width,
|
|
|
|
|
|
int height,
|
|
|
|
|
|
int stride);
|
|
|
|
|
|
|
2004-04-06 09:36:12 +00:00
|
|
|
|
/* Pattern creation functions */
|
|
|
|
|
|
cairo_pattern_t *
|
|
|
|
|
|
cairo_pattern_create_for_surface (cairo_surface_t *surface);
|
|
|
|
|
|
|
|
|
|
|
|
cairo_pattern_t *
|
|
|
|
|
|
cairo_pattern_create_linear (double x0, double y0,
|
|
|
|
|
|
double x1, double y1);
|
|
|
|
|
|
|
|
|
|
|
|
cairo_pattern_t *
|
|
|
|
|
|
cairo_pattern_create_radial (double cx0, double cy0, double radius0,
|
|
|
|
|
|
double cx1, double cy1, double radius1);
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
cairo_pattern_reference (cairo_pattern_t *pattern);
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
cairo_pattern_destroy (cairo_pattern_t *pattern);
|
|
|
|
|
|
|
|
|
|
|
|
cairo_status_t
|
|
|
|
|
|
cairo_pattern_add_color_stop (cairo_pattern_t *pattern,
|
|
|
|
|
|
double offset,
|
|
|
|
|
|
double red, double green, double blue,
|
|
|
|
|
|
double alpha);
|
|
|
|
|
|
|
|
|
|
|
|
cairo_status_t
|
|
|
|
|
|
cairo_pattern_set_matrix (cairo_pattern_t *pattern, cairo_matrix_t *matrix);
|
|
|
|
|
|
|
|
|
|
|
|
cairo_status_t
|
|
|
|
|
|
cairo_pattern_get_matrix (cairo_pattern_t *pattern, cairo_matrix_t *matrix);
|
|
|
|
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
|
|
CAIRO_EXTEND_NONE,
|
|
|
|
|
|
CAIRO_EXTEND_REPEAT,
|
|
|
|
|
|
CAIRO_EXTEND_REFLECT
|
|
|
|
|
|
} cairo_extend_t;
|
|
|
|
|
|
|
|
|
|
|
|
cairo_status_t
|
|
|
|
|
|
cairo_pattern_set_extend (cairo_pattern_t *pattern, cairo_extend_t extend);
|
|
|
|
|
|
|
|
|
|
|
|
cairo_extend_t
|
|
|
|
|
|
cairo_pattern_get_extend (cairo_pattern_t *pattern);
|
|
|
|
|
|
|
|
|
|
|
|
cairo_status_t
|
|
|
|
|
|
cairo_pattern_set_filter (cairo_pattern_t *pattern, cairo_filter_t filter);
|
|
|
|
|
|
|
|
|
|
|
|
cairo_filter_t
|
|
|
|
|
|
cairo_pattern_get_filter (cairo_pattern_t *pattern);
|
|
|
|
|
|
|
2003-12-12 11:44:16 +00:00
|
|
|
|
#ifdef CAIRO_HAS_PS_SURFACE
|
|
|
|
|
|
|
2003-10-31 21:30:35 +00:00
|
|
|
|
/* PS-surface functions */
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_surface_t *
|
2003-10-31 21:30:35 +00:00
|
|
|
|
cairo_ps_surface_create (FILE *file,
|
|
|
|
|
|
double width_inches,
|
|
|
|
|
|
double height_inches,
|
|
|
|
|
|
double x_pixels_per_inch,
|
|
|
|
|
|
double y_pixels_per_inch);
|
2003-12-03 12:27:44 +00:00
|
|
|
|
|
2003-12-12 11:44:16 +00:00
|
|
|
|
#endif /* CAIRO_HAS_PS_SURFACE */
|
|
|
|
|
|
|
2004-02-24 12:28:49 +00:00
|
|
|
|
#ifdef CAIRO_HAS_PNG_SURFACE
|
|
|
|
|
|
|
|
|
|
|
|
/* PNG-surface functions */
|
|
|
|
|
|
|
|
|
|
|
|
cairo_surface_t *
|
|
|
|
|
|
cairo_png_surface_create (FILE *file,
|
|
|
|
|
|
cairo_format_t format,
|
|
|
|
|
|
int width,
|
|
|
|
|
|
int height);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* CAIRO_HAS_PNG_SURFACE */
|
|
|
|
|
|
|
2003-12-05 08:53:07 +00:00
|
|
|
|
#ifdef CAIRO_HAS_XLIB_SURFACE
|
2003-12-03 12:27:44 +00:00
|
|
|
|
|
|
|
|
|
|
/* XXX: This is a mess from the user's POV. Should the Visual or the
|
|
|
|
|
|
cairo_format_t control what render format is used? Maybe I can have
|
|
|
|
|
|
cairo_surface_create_for_window with a visual, and
|
|
|
|
|
|
cairo_surface_create_for_pixmap with a cairo_format_t. Would that work?
|
|
|
|
|
|
*/
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_surface_t *
|
2003-12-03 12:27:44 +00:00
|
|
|
|
cairo_xlib_surface_create (Display *dpy,
|
|
|
|
|
|
Drawable drawable,
|
|
|
|
|
|
Visual *visual,
|
|
|
|
|
|
cairo_format_t format,
|
|
|
|
|
|
Colormap colormap);
|
2004-04-06 09:36:12 +00:00
|
|
|
|
|
2004-03-30 17:24:29 +00:00
|
|
|
|
/* XXX: This has been proposed
|
|
|
|
|
|
cairo_status_t
|
|
|
|
|
|
cairo_xlib_surface_set_size (cairo_surface_t *surface, int width, int height);
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
2003-12-05 08:53:07 +00:00
|
|
|
|
#endif /* CAIRO_HAS_XLIB_SURFACE */
|
2003-10-31 21:30:35 +00:00
|
|
|
|
|
2004-04-09 14:19:47 +00:00
|
|
|
|
#ifdef CAIRO_HAS_GL_SURFACE
|
|
|
|
|
|
|
|
|
|
|
|
cairo_surface_t *
|
|
|
|
|
|
cairo_gl_surface_create (glitz_surface_t *surface);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* CAIRO_HAS_GL_SURFACE */
|
|
|
|
|
|
|
2003-07-18 11:34:19 +00:00
|
|
|
|
/* Matrix functions */
|
|
|
|
|
|
|
2003-10-31 21:30:35 +00:00
|
|
|
|
/* XXX: Rename all of these to cairo_transform_t */
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_matrix_t *
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_matrix_create (void);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
void
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_matrix_destroy (cairo_matrix_t *matrix);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_status_t
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_matrix_copy (cairo_matrix_t *matrix, const cairo_matrix_t *other);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_status_t
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_matrix_set_identity (cairo_matrix_t *matrix);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_status_t
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_matrix_set_affine (cairo_matrix_t *cr,
|
2003-08-26 07:40:17 +00:00
|
|
|
|
double a, double b,
|
|
|
|
|
|
double c, double d,
|
|
|
|
|
|
double tx, double ty);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_status_t
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_matrix_get_affine (cairo_matrix_t *matrix,
|
2003-08-26 07:40:17 +00:00
|
|
|
|
double *a, double *b,
|
|
|
|
|
|
double *c, double *d,
|
|
|
|
|
|
double *tx, double *ty);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_status_t
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_matrix_translate (cairo_matrix_t *matrix, double tx, double ty);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_status_t
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_matrix_scale (cairo_matrix_t *matrix, double sx, double sy);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_status_t
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_matrix_rotate (cairo_matrix_t *matrix, double radians);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_status_t
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_matrix_invert (cairo_matrix_t *matrix);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_status_t
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_matrix_multiply (cairo_matrix_t *result, const cairo_matrix_t *a, const cairo_matrix_t *b);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_status_t
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_matrix_transform_distance (cairo_matrix_t *matrix, double *dx, double *dy);
|
|
|
|
|
|
|
2004-01-22 20:47:24 +00:00
|
|
|
|
cairo_status_t
|
2003-07-18 11:34:19 +00:00
|
|
|
|
cairo_matrix_transform_point (cairo_matrix_t *matrix, double *x, double *y);
|
|
|
|
|
|
|
2003-09-04 06:52:01 +00:00
|
|
|
|
/* Deprecated functions. We've made some effort to allow the
|
|
|
|
|
|
deprecated functions to continue to work for now, (with useful
|
|
|
|
|
|
warnings). But the deprecated functions will not appear in the next
|
|
|
|
|
|
release. */
|
2003-09-04 11:21:15 +00:00
|
|
|
|
#ifndef _CAIROINT_H_
|
2003-09-04 06:52:01 +00:00
|
|
|
|
#define cairo_get_operator cairo_get_operator_DEPRECATED_BY_cairo_current_operator
|
|
|
|
|
|
#define cairo_get_rgb_color cairo_get_rgb_color_DEPRECATED_BY_cairo_current_rgb_color
|
|
|
|
|
|
#define cairo_get_alpha cairo_get_alpha_DEPRECATED_BY_cairo_current_alpha
|
|
|
|
|
|
#define cairo_get_tolerance cairo_get_tolerance_DEPRECATED_BY_cairo_current_tolerance
|
|
|
|
|
|
#define cairo_get_current_point cairo_get_current_point_DEPRECATED_BY_cairo_current_point
|
|
|
|
|
|
#define cairo_get_fill_rule cairo_get_fill_rule_DEPRECATED_BY_cairo_current_fill_rule
|
|
|
|
|
|
#define cairo_get_line_width cairo_get_line_width_DEPRECATED_BY_cairo_current_line_width
|
|
|
|
|
|
#define cairo_get_line_cap cairo_get_line_cap_DEPRECATED_BY_cairo_current_line_cap
|
|
|
|
|
|
#define cairo_get_line_join cairo_get_line_join_DEPRECATED_BY_cairo_current_line_join
|
|
|
|
|
|
#define cairo_get_miter_limit cairo_get_miter_limit_DEPRECATED_BY_cairo_current_miter_limit
|
|
|
|
|
|
#define cairo_get_matrix cairo_get_matrix_DEPRECATED_BY_cairo_current_matrix
|
|
|
|
|
|
#define cairo_get_target_surface cairo_get_target_surface_DEPRECATED_BY_cairo_current_target_surface
|
|
|
|
|
|
#define cairo_get_status cairo_get_status_DEPRECATED_BY_cairo_status
|
|
|
|
|
|
#define cairo_get_status_string cairo_get_status_string_DEPRECATED_BY_cairo_status_string
|
2003-09-04 11:21:15 +00:00
|
|
|
|
#endif
|
2003-09-04 06:52:01 +00:00
|
|
|
|
|
2003-07-18 11:34:19 +00:00
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
2003-07-31 22:41:44 +00:00
|
|
|
|
#endif
|