Bringing apdf from vendor into main branch.
[AROS-Contrib.git] / apdf / splash / SplashT1FontFile.h
blobc220c04b6ba53b3b96942b2f0c35475929a22462
1 //========================================================================
2 //
3 // SplashT1FontFile.h
4 //
5 //========================================================================
7 #ifndef SPLASHT1FONTFILE_H
8 #define SPLASHT1FONTFILE_H
10 #include <aconf.h>
12 #if HAVE_T1LIB_H
14 #ifdef USE_GCC_PRAGMAS
15 #pragma interface
16 #endif
18 #include "SplashFontFile.h"
20 class SplashT1FontEngine;
22 //------------------------------------------------------------------------
23 // SplashT1FontFile
24 //------------------------------------------------------------------------
26 class SplashT1FontFile: public SplashFontFile {
27 public:
29 static SplashFontFile *loadType1Font(SplashT1FontEngine *engineA,
30 SplashFontFileID *idA,
31 char *fileNameA, GBool deleteFileA,
32 char **encA);
34 virtual ~SplashT1FontFile();
36 // Create a new SplashT1Font, i.e., a scaled instance of this font
37 // file.
38 virtual SplashFont *makeFont(SplashCoord *mat);
40 private:
42 SplashT1FontFile(SplashT1FontEngine *engineA,
43 SplashFontFileID *idA,
44 char *fileNameA, GBool deleteFileA,
45 int t1libIDA, char **encA, char *encStrA);
47 SplashT1FontEngine *engine;
48 int t1libID; // t1lib font ID
49 char **enc;
50 char *encStr;
52 friend class SplashT1Font;
55 #endif // HAVE_T1LIB_H
57 #endif