summaryrefslogtreecommitdiff
path: root/Build/source/libs/xpdf/xpdf-3.02/splash/SplashT1Font.h
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2011-08-22 13:45:08 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2011-08-22 13:45:08 +0000
commitd28101658050e6245fc1ea5f67bd1b48f8ff760d (patch)
treea45de21c28a8e9904bfe6b4afe4b5614e7b12a3e /Build/source/libs/xpdf/xpdf-3.02/splash/SplashT1Font.h
parentca71f577a6ad4dbd109007f0f61b0d5a2029b8cc (diff)
xpdf 3.03
git-svn-id: svn://tug.org/texlive/trunk@23646 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/xpdf/xpdf-3.02/splash/SplashT1Font.h')
-rw-r--r--Build/source/libs/xpdf/xpdf-3.02/splash/SplashT1Font.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/Build/source/libs/xpdf/xpdf-3.02/splash/SplashT1Font.h b/Build/source/libs/xpdf/xpdf-3.02/splash/SplashT1Font.h
deleted file mode 100644
index 8ea74de48f8..00000000000
--- a/Build/source/libs/xpdf/xpdf-3.02/splash/SplashT1Font.h
+++ /dev/null
@@ -1,57 +0,0 @@
-//========================================================================
-//
-// SplashT1Font.h
-//
-//========================================================================
-
-#ifndef SPLASHT1FONT_H
-#define SPLASHT1FONT_H
-
-#include <aconf.h>
-
-#if HAVE_T1LIB_H
-
-#ifdef USE_GCC_PRAGMAS
-#pragma interface
-#endif
-
-#include "SplashFont.h"
-
-class SplashT1FontFile;
-
-//------------------------------------------------------------------------
-// SplashT1Font
-//------------------------------------------------------------------------
-
-class SplashT1Font: public SplashFont {
-public:
-
- SplashT1Font(SplashT1FontFile *fontFileA, SplashCoord *matA,
- SplashCoord *textMatA);
-
- virtual ~SplashT1Font();
-
- // Munge xFrac and yFrac before calling SplashFont::getGlyph.
- virtual GBool getGlyph(int c, int xFrac, int yFrac,
- SplashGlyphBitmap *bitmap);
-
- // Rasterize a glyph. The <xFrac> and <yFrac> values are the same
- // as described for getGlyph.
- virtual GBool makeGlyph(int c, int xFrac, int yFrac,
- SplashGlyphBitmap *bitmap);
-
- // Return the path for a glyph.
- virtual SplashPath *getGlyphPath(int c);
-
-private:
-
- int t1libID; // t1lib font ID
- int outlineID; // t1lib font ID for glyph outlines
- float size;
- float outlineSize; // size for glyph outlines
- float outlineMul;
-};
-
-#endif // HAVE_T1LIB_H
-
-#endif