splasht1fontengine.h

来自「这是一个做pdf阅读器的源代码文件,是大家学习阅读器资料的很好参考」· C头文件 代码 · 共 54 行

H
54
字号
//========================================================================//// SplashT1FontEngine.h////========================================================================#ifndef SPLASHT1FONTENGINE_H#define SPLASHT1FONTENGINE_H#include <aconf.h>#if HAVE_T1LIB_H#ifdef USE_GCC_PRAGMAS#pragma interface#endif#include "gtypes.h"class SplashFontFile;class SplashFontFileID;//------------------------------------------------------------------------// SplashT1FontEngine//------------------------------------------------------------------------class SplashT1FontEngine {public:  static SplashT1FontEngine *init(GBool aaA);  ~SplashT1FontEngine();  // Load fonts.  SplashFontFile *loadType1Font(SplashFontFileID *idA, char *fileName,				GBool deleteFile, char **enc);  SplashFontFile *loadType1CFont(SplashFontFileID *idA, char *fileName,				 GBool deleteFile, char **enc);private:  SplashT1FontEngine(GBool aaA);  static int t1libInitCount;  GBool aa;  friend class SplashT1FontFile;  friend class SplashT1Font;};#endif // HAVE_T1LIB_H#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?