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
77
78
79
80
81
82
83
84
85
86
87
88
|
/*
* GraphLCD graphics library
*
* font.h - font handling
*
* based on graphlcd plugin 0.1.1 for the Video Disc Recorder
* (c) 2001-2004 Carsten Siebholz <c.siebholz AT t-online.de>
*
* This file is released under the GNU General Public License. Refer
* to the COPYING file distributed with this package.
*
* (c) 2004-2010 Andreas Regel <andreas.regel AT powarman.de>
* (c) 2010-2011 Wolfgang Astleitner <mrwastl AT users sourceforge net>
* Andreas 'randy' Weinberger
*/
#ifndef _GLCDGRAPHICS_FONT_H_
#define _GLCDGRAPHICS_FONT_H_
#include <string>
#include <vector>
#include "bitmap.h"
namespace GLCD
{
class cBitmapCache;
class cFont
{
private:
int totalWidth;
int totalHeight;
int totalAscent;
int spaceBetween;
int lineHeight;
cBitmap * characters[256];
int fontType; //original or FT2 font, 1-original, 2-ft2
bool isutf8;
wchar_t iconv_lut[256]; // lookup table needed if encoding != UTF-8
cBitmapCache *characters_cache;
void *ft2_library; //FT_Library
void *ft2_face; //FT_Face
protected:
void Init();
void Unload();
public:
cFont();
~cFont();
bool LoadFNT(const std::string & fileName, const std::string & encoding = "UTF-8");
bool SaveFNT(const std::string & fileName) const;
bool LoadFT2(const std::string & fileName, const std::string & encoding,
int size, bool dingBats = false);
int TotalWidth() const { return totalWidth; };
int TotalHeight() const { return totalHeight; };
int TotalAscent() const { return totalAscent; };
int SpaceBetween() const { return spaceBetween; };
int LineHeight() const { return lineHeight; };
void SetTotalWidth(int width) { totalWidth = width; };
void SetTotalHeight(int height) { totalHeight = height; };
void SetTotalAscent(int ascent) { totalAscent = ascent; };
void SetSpaceBetween(int width) { spaceBetween = width; };
void SetLineHeight(int height) { lineHeight = height; };
int Width(uint32_t ch) const;
int Width(const std::string & str) const;
int Width(const std::string & str, unsigned int len) const;
int Height(uint32_t ch) const;
int Height(const std::string & str) const;
int Height(const std::string & str, unsigned int len) const;
const cBitmap * GetCharacter(uint32_t ch) const;
void SetCharacter(char ch, cBitmap * bitmapChar);
void WrapText(int Width, int Height, std::string & Text,
std::vector <std::string> & Lines, int * TextWidth = NULL) const;
bool IsUTF8(void) const { return isutf8; }
};
} // end of namespace
#endif
|