X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fpdf%2FInfoOutputDev.h;h=2fd3ea53185257ffa29f28b2103c1c7a31310be6;hb=0e482bea37ed1f38e592247984b6e064158c8ea1;hp=13ba1e4e673ad5141aeb1622d7b5904485a5887e;hpb=dcb935d31dc5cb66997bbca2445b6e4c4eff3257;p=swftools.git diff --git a/lib/pdf/InfoOutputDev.h b/lib/pdf/InfoOutputDev.h index 13ba1e4..2fd3ea5 100644 --- a/lib/pdf/InfoOutputDev.h +++ b/lib/pdf/InfoOutputDev.h @@ -23,26 +23,54 @@ #include "GfxFont.h" #include "OutputDev.h" -#include "SplashFont.h" #include "SplashOutputDev.h" +#ifdef HAVE_POPPLER +#include +#include +#include +#include +#else +#include "SplashTypes.h" #include "SplashPath.h" +#include "SplashFont.h" #include "SplashFontFile.h" +#endif + +#ifdef HAVE_POPPLER +#include +#else #include "GHash.h" +#endif +#include "../gfxdevice.h" +#include "../gfxtools.h" +#include "../gfxfont.h" + +#define INTERNAL_FONT_SIZE 1024.0 struct GlyphInfo { SplashPath*path; int unicode; int glyphid; + double advance; double x1,y1,x2,y2; + + double advance_max; }; struct FontInfo { FontInfo(); ~FontInfo(); + + double lastx,lasty; + int lastchar; + + double ascender,descender; + void grow(int size); + gfxfont_t*gfxfont; GfxFont*font; double max_size; int num_glyphs; @@ -61,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; @@ -68,6 +98,8 @@ class InfoOutputDev: public OutputDev int num_fonts; int num_polygons; + gfxfontlist_t*fonts; + InfoOutputDev(XRef*xref); virtual ~InfoOutputDev(); virtual GBool useTilingPatternFill();