blob: cf991f4635b568a8ca5cb4e122dd3da6df17c047 (
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
50
|
/*
* font.h: 'EnigmaNG' skin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* Taken from GraphTFT
*/
#ifndef VDR__GRAPHTFTFONT_H
#define VDR__GRAPHTFTFONT_H
#include "common.h"
#include <map>
#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;
};
#endif // VDR__GRAPHTFTFONT_H
|