X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fcairo.h;h=974acb444e5f6e191896fad3036891dfc159bb94;hb=d9c6597d5b7a0fb3211d5ba0696b0c9681c776c0;hp=77889d11aa9158b055d79db98bf285f8e847b91f;hpb=e4ef4d0f708651807d91bd92d7ab92c1b5c6d675;p=pspp diff --git a/src/output/cairo.h b/src/output/cairo.h index 77889d11aa..974acb444e 100644 --- a/src/output/cairo.h +++ b/src/output/cairo.h @@ -31,14 +31,18 @@ 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 *); +void xr_rendering_draw (struct xr_rendering *, cairo_t *, + int x, int y, int w, int h); /* Functions for rendering a series of output items to a series of Cairo contexts, with pagination, possibly including headers. @@ -79,8 +83,6 @@ bool xr_driver_need_new_page (const struct xr_driver *); bool xr_driver_is_page_blank (const struct xr_driver *); /* Render charts with Cairo. */ -void xr_draw_chart (const struct chart_item *, cairo_t *, - double x, double y, double width, double height); char *xr_draw_png_chart (const struct chart_item *, const char *file_name_template, int number);