blob: 967b6353f1ac9c59ea6f779e39fb6e9594c615ff (
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
|
/*
* 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 <ft2build.h>
#include FT_FREETYPE_H
#include <vdr/font.h>
#include <vdr/config.h>
#ifndef MINFONTSIZE
#define MINFONTSIZE 10
#endif
using std::map;
using std::string;
class cGraphtftFont
{
private:
typedef map<string,cFont*> cache_map;
public:
cGraphtftFont();
~cGraphtftFont();
const cFont* GetFont(const char *Filename, int Size, int Width = 0);
void Clear();
private:
cache_map _cache;
};
#endif // VDR__GRAPHTFTFONT_H
|