summaryrefslogtreecommitdiff
path: root/libcore/fontmanager.h
blob: 1dbdcde37651de710c965010b53b5566adac724c (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
#ifndef __FONTMANAGER_H
#define __FONTMANAGER_H

#include <string>
#include <map>
#include <vector>
#include <vdr/skins.h>

#include "../libtemplate/template.h"

using namespace std;

class cFontManager {
private:
    static cMutex mutex;
    map < string, map< int, cFont* > > fonts;
    cFont *CreateFont(string name, int size);
    void InsertFont(string name, int size);
    bool FontExists(string name, int size);
    cFont *GetFont(string name, int size);
    int GetFontHeight(const char *name, int height, int charWidth = 0);
public:
    cFontManager();
    ~cFontManager();
    void Lock(void) { mutex.Lock(); };
    void Unlock(void) { mutex.Unlock(); };
    void CacheFonts(cTemplate *tpl);
    void DeleteFonts(void);
    int Width(string fontName, int fontSize, const char *text);
    int Height(string fontName, int fontSize);
    cFont *Font(string fontName, int fontSize);
    cFont *FontUncached(string fontName, int fontSize);
    void Debug(void);
    void ListAvailableFonts(void);
    bool FontInstalled(string fontName);
};

#endif //__FONTMANAGER_H