in class/System.Windows/System.Windows/:
[moon.git] / cairo / src / cairo-pdf-surface-private.h
blobab222ded87d3356c19e46f03dd089be6998f4b6b
1 /* -*- Mode: c; tab-width: 8; c-basic-offset: 4; indent-tabs-mode: t; -*- */
2 /* cairo - a vector graphics library with display and print output
4 * Copyright © 2004 Red Hat, Inc
5 * Copyright © 2006 Red Hat, Inc
6 * Copyright © 2007, 2008 Adrian Johnson
8 * This library is free software; you can redistribute it and/or
9 * modify it either under the terms of the GNU Lesser General Public
10 * License version 2.1 as published by the Free Software Foundation
11 * (the "LGPL") or, at your option, under the terms of the Mozilla
12 * Public License Version 1.1 (the "MPL"). If you do not alter this
13 * notice, a recipient may use your version of this file under either
14 * the MPL or the LGPL.
16 * You should have received a copy of the LGPL along with this library
17 * in the file COPYING-LGPL-2.1; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 * You should have received a copy of the MPL along with this library
20 * in the file COPYING-MPL-1.1
22 * The contents of this file are subject to the Mozilla Public License
23 * Version 1.1 (the "License"); you may not use this file except in
24 * compliance with the License. You may obtain a copy of the License at
25 * http://www.mozilla.org/MPL/
27 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
28 * OF ANY KIND, either express or implied. See the LGPL or the MPL for
29 * the specific language governing rights and limitations.
31 * The Original Code is the cairo graphics library.
33 * The Initial Developer of the Original Code is University of Southern
34 * California.
36 * Contributor(s):
37 * Kristian Høgsberg <krh@redhat.com>
38 * Carl Worth <cworth@cworth.org>
39 * Adrian Johnson <ajohnson@redneon.com>
42 #ifndef CAIRO_PDF_SURFACE_PRIVATE_H
43 #define CAIRO_PDF_SURFACE_PRIVATE_H
45 #include "cairo-pdf.h"
47 #include "cairo-surface-private.h"
48 #include "cairo-pdf-operators-private.h"
49 #include "cairo-path-fixed-private.h"
51 typedef struct _cairo_pdf_resource {
52 unsigned int id;
53 } cairo_pdf_resource_t;
55 typedef struct _cairo_pdf_group_resources {
56 cairo_array_t alphas;
57 cairo_array_t smasks;
58 cairo_array_t patterns;
59 cairo_array_t xobjects;
60 cairo_array_t fonts;
61 } cairo_pdf_group_resources_t;
63 typedef struct _cairo_pdf_pattern {
64 double width;
65 double height;
66 cairo_pattern_t *pattern;
67 cairo_pdf_resource_t pattern_res;
68 cairo_pdf_resource_t gstate_res;
69 } cairo_pdf_pattern_t;
71 typedef enum _cairo_pdf_operation {
72 PDF_PAINT,
73 PDF_MASK,
74 PDF_FILL,
75 PDF_STROKE,
76 PDF_SHOW_GLYPHS
77 } cairo_pdf_operation_t;
79 typedef struct _cairo_pdf_smask_group
81 double width;
82 double height;
83 cairo_pdf_resource_t group_res;
84 cairo_pdf_operation_t operation;
85 cairo_pattern_t *source;
86 cairo_pdf_resource_t source_res;
87 cairo_pattern_t *mask;
88 cairo_path_fixed_t path;
89 cairo_fill_rule_t fill_rule;
90 cairo_stroke_style_t *style;
91 cairo_matrix_t ctm;
92 cairo_matrix_t ctm_inverse;
93 char *utf8;
94 int utf8_len;
95 cairo_glyph_t *glyphs;
96 int num_glyphs;
97 cairo_text_cluster_t *clusters;
98 int num_clusters;
99 cairo_bool_t cluster_flags;
100 cairo_scaled_font_t *scaled_font;
101 } cairo_pdf_smask_group_t;
103 typedef struct _cairo_pdf_surface cairo_pdf_surface_t;
105 struct _cairo_pdf_surface {
106 cairo_surface_t base;
108 /* Prefer the name "output" here to avoid confusion over the
109 * structure within a PDF document known as a "stream". */
110 cairo_output_stream_t *output;
112 double width;
113 double height;
114 cairo_matrix_t cairo_to_pdf;
116 cairo_array_t objects;
117 cairo_array_t pages;
118 cairo_array_t rgb_linear_functions;
119 cairo_array_t alpha_linear_functions;
120 cairo_array_t patterns;
121 cairo_array_t smask_groups;
122 cairo_array_t knockout_group;
124 cairo_scaled_font_subsets_t *font_subsets;
125 cairo_array_t fonts;
127 cairo_pdf_resource_t next_available_resource;
128 cairo_pdf_resource_t pages_resource;
130 cairo_bool_t compress_content;
132 cairo_pdf_resource_t content;
133 cairo_pdf_resource_t content_resources;
134 cairo_pdf_group_resources_t resources;
135 cairo_bool_t has_fallback_images;
137 struct {
138 cairo_bool_t active;
139 cairo_pdf_resource_t self;
140 cairo_pdf_resource_t length;
141 long start_offset;
142 cairo_bool_t compressed;
143 cairo_output_stream_t *old_output;
144 } pdf_stream;
146 struct {
147 cairo_bool_t active;
148 cairo_output_stream_t *stream;
149 cairo_output_stream_t *mem_stream;
150 cairo_output_stream_t *old_output;
151 cairo_pdf_resource_t resource;
152 cairo_bool_t is_knockout;
153 } group_stream;
155 cairo_pdf_operators_t pdf_operators;
156 cairo_paginated_mode_t paginated_mode;
157 cairo_bool_t select_pattern_gstate_saved;
159 cairo_bool_t force_fallbacks;
161 cairo_bool_t current_pattern_is_solid_color;
162 cairo_bool_t current_color_is_stroke;
163 double current_color_red;
164 double current_color_green;
165 double current_color_blue;
166 double current_color_alpha;
168 cairo_surface_t *paginated_surface;
171 #endif /* CAIRO_PDF_SURFACE_PRIVATE_H */