summaryrefslogtreecommitdiff
path: root/glcdskin/font.h
blob: 80e555672ee3499357f74f7dba337dedff692da0 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
 * GraphLCD skin library
 *
 * font.h  -  font class
 *
 * This file is released under the GNU General Public License. Refer
 * to the COPYING file distributed with this package.
 *
 * based on text2skin
 *
 */

#ifndef _GLCDSKIN_FONT_H_
#define _GLCDSKIN_FONT_H_

#include <string>
#include <vector>

#include <glcdgraphics/font.h>

#include "display.h"
#include "object.h"

namespace GLCD
{

class cSkin;

class cSkinFont
{
    friend bool StartElem(const std::string &name, std::map<std::string,std::string> &attrs);
    friend bool EndElem(const std::string &name);

public:
    enum eType
    {
        ftFNT,
        ftFT2
    };

private:
    cSkin * mSkin;
    std::string mId;
    eType mType;
    std::string mFile;
    int mSize;
    cFont mFont;
    cSkinFunction * mCondition;
    cSkinDisplay mDummyDisplay;
    cSkinObject mDummyObject;

    static int FcInitCount;

public:
    cSkinFont(cSkin * Parent);
    ~cSkinFont(void);

    bool ParseUrl(const std::string & Text);
    bool ParseCondition(const std::string & Text);

    cSkin * Skin(void) const { return mSkin; }
    const std::string & Id(void) const { return mId; }
    const cFont * Font(void) const { return &mFont; }
    cSkinFunction * Condition(void) const { return mCondition; }
};

class cSkinFonts: public std::vector<cSkinFont *>
{
public:
    cSkinFonts(void);
    ~cSkinFonts(void);
};

} // end of namespace

#endif