summaryrefslogtreecommitdiff
path: root/graphtft/font.h
blob: 041baef9001faad866a467341724ff5f74a40078 (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
/*
 *  $Id: font.h,v 1.1 2004/12/19 22:03:24 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;
#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:
	FT_Library		_library;
	FT_Face			_face;
	FT_GlyphSlot		_slot;
	cache_map 		_cache;
#if VDRVERSNUM < 10503
	del_map			_del;
#endif

};

extern cGraphtftFont GraphtftFont;

#endif