blob: 8969287d95a086b10e2806efaa91288e3f4331b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/*
* $Id: font.h,v 1.5 2004/12/14 20:02:31 lordjaxom Exp $
*
* Taken from GraphTFT
*/
#ifndef VDR__GRAPHTFTFONT_H
#define VDR__GRAPHTFTFONT_H
#include <map>
#include <string>
#include <vector>
#include <ft2build.h>
#include FT_FREETYPE_H
#include <vdr/font.h>
#include <vdr/config.h>
using std::map;
using std::string;
using std::vector;
class cGraphtftFont
{
private:
typedef map<string,cFont*> cache_map;
typedef map<string,cFont::tPixelData*> del_map;
public:
cGraphtftFont();
~cGraphtftFont();
bool Load(string Filename, string CacheName, int Size, int Language = 0, int Width = 0, int Format = 0);
const cFont* GetFont(string CacheName);
void Clear(string CacheName);
void Clear();
private:
FT_Library _library;
FT_Face _face;
FT_GlyphSlot _slot;
cache_map _cache;
del_map _del;
};
extern cGraphtftFont GraphtftFont;
#endif
|