mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 10:14:44 +00:00

* sumatrapdf - vendor import * everything compiles (libjpeg, poppler, fitz, sumatrapdf) * does NOT link (remove the comment tags in the parent directory.rbuild file (rosapps dir) to build it) svn path=/trunk/; revision=29295
57 lines
1.4 KiB
C++
57 lines
1.4 KiB
C++
//========================================================================
|
|
//
|
|
// SplashFTFontEngine.h
|
|
//
|
|
//========================================================================
|
|
|
|
#ifndef SPLASHFTFONTENGINE_H
|
|
#define SPLASHFTFONTENGINE_H
|
|
|
|
#if HAVE_FREETYPE_FREETYPE_H || HAVE_FREETYPE_H
|
|
|
|
#ifdef USE_GCC_PRAGMAS
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include <ft2build.h>
|
|
#include FT_FREETYPE_H
|
|
#include "goo/gtypes.h"
|
|
|
|
class SplashFontFile;
|
|
class SplashFontFileID;
|
|
class SplashFontSrc;
|
|
|
|
//------------------------------------------------------------------------
|
|
// SplashFTFontEngine
|
|
//------------------------------------------------------------------------
|
|
|
|
class SplashFTFontEngine {
|
|
public:
|
|
|
|
static SplashFTFontEngine *init(GBool aaA);
|
|
|
|
~SplashFTFontEngine();
|
|
|
|
// Load fonts.
|
|
SplashFontFile *loadType1Font(SplashFontFileID *idA, SplashFontSrc *src, char **enc);
|
|
SplashFontFile *loadType1CFont(SplashFontFileID *idA, SplashFontSrc *src, char **enc);
|
|
SplashFontFile *loadCIDFont(SplashFontFileID *idA, SplashFontSrc *src);
|
|
SplashFontFile *loadTrueTypeFont(SplashFontFileID *idA, SplashFontSrc *src,
|
|
Gushort *codeToGID, int codeToGIDLen,
|
|
int faceIndex=0);
|
|
|
|
private:
|
|
|
|
SplashFTFontEngine(GBool aaA, FT_Library libA);
|
|
|
|
GBool aa;
|
|
FT_Library lib;
|
|
GBool useCIDs;
|
|
|
|
friend class SplashFTFontFile;
|
|
friend class SplashFTFont;
|
|
};
|
|
|
|
#endif // HAVE_FREETYPE_FREETYPE_H || HAVE_FREETYPE_H
|
|
|
|
#endif
|