summaryrefslogtreecommitdiff
path: root/font.h
blob: 44aae17bf337cd352a68eface656a3f30d9c6643 (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
51
52
53
54
55
56
/*
 * 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"

#if VDRVERSNUM != 10503

#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;
#if VDRVERSNUM < 10503
	typedef map<string,cFont::tPixelData*> del_map;
#endif
	
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:
#if VDRVERSNUM < 10503
	FT_Library		_library;
	FT_Face			_face;
	FT_GlyphSlot		_slot;
	del_map			_del;
#endif
	cache_map 		_cache;

};
#endif // VDRVERSNUM != 10503
#endif // VDR__GRAPHTFTFONT_H