blob: b36d5aca6dbcbe322e139c725f51d3d1c8b3fcf6 (
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
|
/*
* 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 Andreas Regel <andreas.regel AT powarman.de>
*/
#ifndef _GLCDGRAPHICS_FONT_H_
#define _GLCDGRAPHICS_FONT_H_
#include <string>
#include <vector>
#include "bitmap.h"
namespace GLCD
{
class cFont
{
private:
int totalWidth;
int totalHeight;
int totalAscent;
int spaceBetween;
int lineHeight;
cBitmap * characters[256];
protected:
void Init();
void Unload();
public:
cFont();
~cFont();
bool LoadFNT(const std::string & fileName);
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(char ch) const;
int Width(const std::string & str) const;
int Width(const std::string & str, unsigned int len) const;
int Height(char ch) const;
int Height(const std::string & str) const;
int Height(const std::string & str, unsigned int len) const;
const cBitmap * GetCharacter(char 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;
};
} // end of namespace
#endif
|