You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.4 KiB
60 lines
1.4 KiB
//======================================================================== |
|
// |
|
// SplashFTFontEngine.h |
|
// |
|
//======================================================================== |
|
|
|
#ifndef SPLASHFTFONTENGINE_H |
|
#define SPLASHFTFONTENGINE_H |
|
|
|
#include <aconf.h> |
|
|
|
#if HAVE_FREETYPE_FREETYPE_H || HAVE_FREETYPE_H |
|
|
|
#ifdef USE_GCC_PRAGMAS |
|
#pragma interface |
|
#endif |
|
|
|
#include <ft2build.h> |
|
#include FT_FREETYPE_H |
|
#include "gtypes.h" |
|
|
|
class SplashFontFile; |
|
class SplashFontFileID; |
|
|
|
//------------------------------------------------------------------------ |
|
// SplashFTFontEngine |
|
//------------------------------------------------------------------------ |
|
|
|
class SplashFTFontEngine { |
|
public: |
|
|
|
static SplashFTFontEngine *init(GBool aaA); |
|
|
|
~SplashFTFontEngine(); |
|
|
|
// Load fonts. |
|
SplashFontFile *loadType1Font(SplashFontFileID *idA, char *fileName, |
|
GBool deleteFile, const char **enc); |
|
SplashFontFile *loadType1CFont(SplashFontFileID *idA, char *fileName, |
|
GBool deleteFile, const char **enc); |
|
SplashFontFile *loadCIDFont(SplashFontFileID *idA, char *fileName, |
|
GBool deleteFile); |
|
SplashFontFile *loadTrueTypeFont(SplashFontFileID *idA, char *fileName, |
|
GBool deleteFile, |
|
Gushort *codeToGID, int codeToGIDLen); |
|
|
|
private: |
|
|
|
SplashFTFontEngine(GBool aaA, FT_Library libA); |
|
|
|
GBool aa; |
|
FT_Library lib; |
|
|
|
friend class SplashFTFontFile; |
|
friend class SplashFTFont; |
|
}; |
|
|
|
#endif // HAVE_FREETYPE_FREETYPE_H || HAVE_FREETYPE_H |
|
|
|
#endif
|
|
|