X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fcairo.h;h=9a0e17a1d52bf03461d5095f1c6fe66d54db86ff;hb=074b8460c21980a02dcc545030a4c6bd9d3f9617;hp=af317d9c6b95548db207eac02a5a7c9b87e55aa2;hpb=76a1f0f642df732722bee1f62cce37ebf9092ffc;p=pspp diff --git a/src/output/cairo.h b/src/output/cairo.h index af317d9c6b..9a0e17a1d5 100644 --- a/src/output/cairo.h +++ b/src/output/cairo.h @@ -31,15 +31,17 @@ struct string_map; struct xr_driver *xr_driver_create (cairo_t *, struct string_map *options); void xr_driver_destroy (struct xr_driver *); + /* Functions for rendering a single output item to a Cairo context. Output items are never broken across multiple pages. Used by PSPPIRE to render in the GUI. */ struct xr_rendering *xr_rendering_create (struct xr_driver *, const struct output_item *, cairo_t *); + +void xr_rendering_apply_options (struct xr_rendering *, struct string_map *o); void xr_rendering_measure (struct xr_rendering *, int *w, int *h); -void xr_rendering_draw (struct xr_rendering *, cairo_t *, - int x, int y, int w, int h); +void xr_rendering_draw_all (struct xr_rendering *r, cairo_t *cr); /* Functions for rendering a series of output items to a series of Cairo contexts, with pagination, possibly including headers.