From 6c85243ff859071be4fd2a3847b0fc2086206d31 Mon Sep 17 00:00:00 2001 From: Martin Kretzschmar Date: Mon, 17 May 2004 19:37:57 +0000 Subject: Imported Xpdf 3.00 and fixed build. * ANNOUNCE: * CHANGES: * Makefile.am: * README: * aconf-win32.h: * configure.in: * dj_make.bat: * doc/pdffonts.1: * doc/pdffonts.cat: * doc/pdffonts.hlp: * doc/pdfimages.1: * doc/pdfimages.cat: * doc/pdfimages.hlp: * doc/pdfinfo.1: * doc/pdfinfo.cat: * doc/pdfinfo.hlp: * doc/pdftopbm.1: * doc/pdftopbm.cat: * doc/pdftopbm.hlp: * doc/pdftops.1: * doc/pdftops.cat: * doc/pdftops.hlp: * doc/pdftotext.1: * doc/pdftotext.cat: * doc/pdftotext.hlp: * doc/xpdf.1: * doc/xpdf.cat: * doc/xpdf.hlp: * doc/xpdfrc.5: * doc/xpdfrc.cat: * doc/xpdfrc.hlp: * fofi/Makefile.in: * goo/GHash.cc: * goo/GHash.h: * ms_make.bat: * splash/Makefile.in: * xpdf/DisplayFontTable.h: * xpdf/ErrorCodes.h: * xpdf/FTFont.cc: * xpdf/FTFont.h: * xpdf/FontFile.cc: * xpdf/FontFile.h: * xpdf/Function.h: * xpdf/GPOutputDev.cc: * xpdf/Gfx.cc: * xpdf/Gfx.h: * xpdf/GfxFont.cc: * xpdf/GfxFont.h: * xpdf/GfxState.cc: * xpdf/GfxState.h: * xpdf/GlobalParams.cc: * xpdf/GlobalParams.h: * xpdf/Makefile.am: * xpdf/Object.cc: * xpdf/Object.h: * xpdf/Outline.cc: * xpdf/OutputDev.cc: * xpdf/OutputDev.h: * xpdf/PBMOutputDev.cc: * xpdf/PBMOutputDev.h: * xpdf/PDFDoc.cc: * xpdf/PDFDoc.h: * xpdf/PSOutputDev.cc: * xpdf/PSOutputDev.h: * xpdf/Page.cc: * xpdf/Page.h: * xpdf/Parser.cc: * xpdf/SFont.cc: * xpdf/SFont.h: * xpdf/Stream.cc: * xpdf/Stream.h: * xpdf/T1Font.cc: * xpdf/T1Font.h: * xpdf/TTFont.cc: * xpdf/TTFont.h: * xpdf/TextOutputDev.cc: * xpdf/TextOutputDev.h: * xpdf/XOutputDev.cc: * xpdf/XOutputDev.h: * xpdf/XPixmapOutputDev.cc: * xpdf/XPixmapOutputDev.h: * xpdf/XRef.cc: * xpdf/XRef.h: * xpdf/config.h: * xpdf/gpdf-control.cc: * xpdf/pdffonts.cc: * xpdf/pdfimages.cc: * xpdf/pdfinfo.cc: * xpdf/pdftopbm.cc: * xpdf/pdftops.cc: * xpdf/pdftotext.cc: * xpdf/tests/Makefile.am: * xpdf/vms_make.com: * xpdf/xpdf.cc: Imported Xpdf 3.00 and fixed build. --- (limited to 'pdf/xpdf/TTFont.h') diff --git a/pdf/xpdf/TTFont.h b/pdf/xpdf/TTFont.h deleted file mode 100644 index e4740ea..0000000 --- a/pdf/xpdf/TTFont.h +++ /dev/null @@ -1,127 +0,0 @@ -//======================================================================== -// -// TTFont.h -// -// An X wrapper for the FreeType TrueType font rasterizer. -// -// Copyright 2001-2003 Glyph & Cog, LLC -// -//======================================================================== - -#ifndef TTFONT_H -#define TTFONT_H - -#include - -#if !FREETYPE2 && (HAVE_FREETYPE_FREETYPE_H || HAVE_FREETYPE_H) - -#ifdef USE_GCC_PRAGMAS -#pragma interface -#endif - -#if HAVE_FREETYPE_FREETYPE_H -#include -#include -#else -#include -#include -#endif -#include "gtypes.h" -#include "SFont.h" - -//------------------------------------------------------------------------ - -class TTFontEngine: public SFontEngine { -public: - - TTFontEngine(Display *displayA, Visual *visualA, int depthA, - Colormap colormapA, GBool aaA); - GBool isOk() { return ok; } - virtual ~TTFontEngine(); - -private: - - TT_Engine engine; - GBool aa; - Gulong palette[5]; - GBool ok; - - friend class TTFontFile; - friend class TTFont; -}; - -//------------------------------------------------------------------------ - -enum TTFontIndexMode { - ttFontModeUnicode, - ttFontModeCharCode, - ttFontModeCodeMap, - ttFontModeCIDToGIDMap -}; - -class TTFontFile: public SFontFile { -public: - - // 8-bit font, TrueType or Type 1/1C - TTFontFile(TTFontEngine *engineA, char *fontFileName, - char **fontEnc, GBool pdfFontHasEncoding); - - // CID font, TrueType - TTFontFile(TTFontEngine *engineA, char *fontFileName, - Gushort *cidToGIDA, int cidToGIDLenA); - - GBool isOk() { return ok; } - virtual ~TTFontFile(); - -private: - - TTFontEngine *engine; - TT_Face face; - TT_CharMap charMap; - TTFontIndexMode mode; - Guchar *codeMap; - Gushort *cidToGID; - int cidToGIDLen; - GBool ok; - - friend class TTFont; -}; - -//------------------------------------------------------------------------ - -struct TTFontCacheTag { - Gushort code; - Gushort mru; // valid bit (0x8000) and MRU index -}; - -class TTFont: public SFont { -public: - - TTFont(TTFontFile *fontFileA, double *m); - GBool isOk() { return ok; } - virtual ~TTFont(); - virtual GBool drawChar(Drawable d, int w, int h, GC gc, - int x, int y, int r, int g, int b, - CharCode c, Unicode u); - -private: - - GBool getGlyphPixmap(CharCode c, Unicode u); - - TTFontFile *fontFile; - TT_Instance instance; - TT_Glyph glyph; - TT_Raster_Map ras; - XImage *image; - TT_Matrix matrix; - TT_F26Dot6 xOffset, yOffset; - Guchar *cache; // glyph pixmap cache - TTFontCacheTag *cacheTags; // cache tags, i.e., char codes - int cacheSets; // number of sets in cache - int cacheAssoc; // cache associativity (glyphs per set) - GBool ok; -}; - -#endif // !FREETYPE2 && (HAVE_FREETYPE_FREETYPE_H || HAVE_FREETYPE_H) - -#endif -- cgit v0.9.1