X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fpdf%2FInfoOutputDev.h;h=2fd3ea53185257ffa29f28b2103c1c7a31310be6;hb=0e482bea37ed1f38e592247984b6e064158c8ea1;hp=699c4c76a1bd2c78805f9b2dfaa237ed9a9d8699;hpb=0eaa557c36055770a90f6ea54c88f30010e1e5d9;p=swftools.git diff --git a/lib/pdf/InfoOutputDev.h b/lib/pdf/InfoOutputDev.h index 699c4c7..2fd3ea5 100644 --- a/lib/pdf/InfoOutputDev.h +++ b/lib/pdf/InfoOutputDev.h @@ -41,12 +41,11 @@ #else #include "GHash.h" #endif +#include "../gfxdevice.h" +#include "../gfxtools.h" +#include "../gfxfont.h" -struct AdvanceSample -{ - double advance; - struct AdvanceSample*next; -}; +#define INTERNAL_FONT_SIZE 1024.0 struct GlyphInfo { @@ -56,9 +55,7 @@ struct GlyphInfo double advance; double x1,y1,x2,y2; - double estimateAdvance(); - - AdvanceSample*advance_samples; + double advance_max; }; struct FontInfo @@ -73,6 +70,7 @@ struct FontInfo void grow(int size); + gfxfont_t*gfxfont; GfxFont*font; double max_size; int num_glyphs; @@ -91,6 +89,8 @@ class InfoOutputDev: public OutputDev GlyphInfo* currentglyph; SplashOutputDev*splash; + gfxfont_t* createGfxFont(GfxFont*xpdffont, FontInfo*src); + public: int x1,y1,x2,y2; int num_links; @@ -98,6 +98,8 @@ class InfoOutputDev: public OutputDev int num_fonts; int num_polygons; + gfxfontlist_t*fonts; + InfoOutputDev(XRef*xref); virtual ~InfoOutputDev(); virtual GBool useTilingPatternFill();