X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fgfxdevice.h;h=a61f27cb14466fc27ed3403081959e698815fe64;hb=4d50e9ccf474061088318da8e7a67789fd488a2a;hp=79f8f1c6dd65f16a7bf634422c794c8e052a8152;hpb=f46a94646d446b43165e9043c07113cd366a77ca;p=swftools.git diff --git a/lib/gfxdevice.h b/lib/gfxdevice.h index 79f8f1c..a61f27c 100644 --- a/lib/gfxdevice.h +++ b/lib/gfxdevice.h @@ -32,7 +32,6 @@ typedef struct _gfxglyph typedef struct _gfxfont { - char*name; int num_glyphs; int max_unicode; gfxglyph_t*glyphs; @@ -71,10 +70,10 @@ typedef struct _gfxgradient typedef struct _gfxcxform { - float rr,rg,rb,ra; - float gr,gg,gb,ga; - float br,bg,bb,ba; - float ar,ag,ab,aa; + float rr,rg,rb,ra, tr; + float gr,gg,gb,ga, tg; + float br,bg,bb,ba, tb; + float ar,ag,ab,aa, ta; gfxcolor_t t; } gfxcxform_t; @@ -83,27 +82,37 @@ 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); - int (*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); void (*stroke)(struct _gfxdevice*dev, gfxline_t*line, gfxcoord_t width, gfxcolor_t*color, gfx_capType cap_style, gfx_joinType joint_style, gfxcoord_t miterLimit); void (*fill)(struct _gfxdevice*dev, gfxline_t*line, gfxcolor_t*color); void (*fillbitmap)(struct _gfxdevice*dev, gfxline_t*line, gfximage_t*img, gfxmatrix_t*matrix, gfxcxform_t*cxform); //cxform? tiling? - void (*fillgradient)(struct _gfxdevice*dev, gfxgradient_t*gradient, gfxgradienttype_t type, gfxmatrix_t*matrix); //? + void (*fillgradient)(struct _gfxdevice*dev, gfxline_t*line, gfxgradient_t*gradient, gfxgradienttype_t type, gfxmatrix_t*matrix); //? - void (*addfont)(struct _gfxdevice*dev, char*fontid, gfxfont_t*font, gfxmatrix_t*matrix); - void (*drawchar)(struct _gfxdevice*dev, char*fontid, int glyph, int x, int y); + void (*addfont)(struct _gfxdevice*dev, char*fontid, gfxfont_t*font); + void (*drawchar)(struct _gfxdevice*dev, char*fontid, int glyph, gfxcolor_t*color, gfxmatrix_t*matrix); - void (*drawlink)(struct _gfxdevice*dev, int x1, int y1, int x2, int y2, char*action); + void (*drawlink)(struct _gfxdevice*dev, gfxline_t*line, char*action); - int (*endpage)(struct _gfxdevice*dev); //? + void (*endpage)(struct _gfxdevice*dev); - int (*finish)(struct _gfxdevice*dev); + gfxresult_t* (*finish)(struct _gfxdevice*dev); void* internal; } gfxdevice_t;