X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fgfxdevice.h;h=a61f27cb14466fc27ed3403081959e698815fe64;hb=47f4e05ca2188b8055a38381846a42487fe76ef1;hp=47068ed670965a8abc3a846c1febe096c5cd2609;hpb=d49ac8c9bcdee2b43b4286eda0e1bf8d0fadd3f3;p=swftools.git diff --git a/lib/gfxdevice.h b/lib/gfxdevice.h index 47068ed..a61f27c 100644 --- a/lib/gfxdevice.h +++ b/lib/gfxdevice.h @@ -82,11 +82,21 @@ typedef struct _gfxbbox gfxcoord_t xmin, ymin, xmax, ymax; } gfxbbox_t; +typedef struct _gfxresult +{ + void (*write)(struct _gfxresult*gfx, int filedesc); + int (*save)(struct _gfxresult*gfx, char*filename); + void* (*get)(struct _gfxresult*gfx, char*name); + void (*destroy)(struct _gfxresult*gfx); + + void*internal; +} gfxresult_t; + typedef struct _gfxdevice { int (*setparameter)(struct _gfxdevice*dev, const char*key, const char*value); - void (*startpage)(struct _gfxdevice*dev, int xmin, int ymin, int xmax, int ymax); /*xmin/ymin?*/ + void (*startpage)(struct _gfxdevice*dev, int width, int height); void (*startclip)(struct _gfxdevice*dev, gfxline_t*line); void (*endclip)(struct _gfxdevice*dev); @@ -100,9 +110,9 @@ typedef struct _gfxdevice void (*drawlink)(struct _gfxdevice*dev, gfxline_t*line, char*action); - void (*endpage)(struct _gfxdevice*dev); //? + void (*endpage)(struct _gfxdevice*dev); - void* (*finish)(struct _gfxdevice*dev); + gfxresult_t* (*finish)(struct _gfxdevice*dev); void* internal; } gfxdevice_t;