X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fpdf%2FInfoOutputDev.h;h=68b036f6b6c6274a4039adc4213db34502478a17;hb=cdcf434411b35bb57bc3de9dffa6314d6ac70d5f;hp=2fd3ea53185257ffa29f28b2103c1c7a31310be6;hpb=4b0c82ccdca95f335caee5c975f2539574093292;p=swftools.git diff --git a/lib/pdf/InfoOutputDev.h b/lib/pdf/InfoOutputDev.h index 2fd3ea5..68b036f 100644 --- a/lib/pdf/InfoOutputDev.h +++ b/lib/pdf/InfoOutputDev.h @@ -58,11 +58,17 @@ struct GlyphInfo double advance_max; }; -struct FontInfo +class FontInfo { - FontInfo(); + gfxfont_t*gfxfont; + + char*id; +public: + FontInfo(char*id); ~FontInfo(); + gfxfont_t* getGfxFont(); + double lastx,lasty; int lastchar; @@ -70,7 +76,6 @@ struct FontInfo void grow(int size); - gfxfont_t*gfxfont; GfxFont*font; double max_size; int num_glyphs; @@ -89,16 +94,17 @@ class InfoOutputDev: public OutputDev GlyphInfo* currentglyph; SplashOutputDev*splash; - gfxfont_t* createGfxFont(GfxFont*xpdffont, FontInfo*src); - public: int x1,y1,x2,y2; int num_links; - int num_images; + int num_ppm_images; + int num_jpeg_images; int num_fonts; int num_polygons; + int num_textfields; - gfxfontlist_t*fonts; + void finish(); + void dumpfonts(gfxdevice_t*dev); InfoOutputDev(XRef*xref); virtual ~InfoOutputDev(); @@ -142,6 +148,7 @@ class InfoOutputDev: public OutputDev Stream *maskStr, int maskWidth, int maskHeight, GfxImageColorMap *maskColorMap); + virtual FontInfo* getFont(char*id); };