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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
#include <lib/gui/elabel.h>
#include <lib/gdi/font.h>
eLabel::eLabel(eWidget *parent): eWidget(parent)
{
ePtr<eWindowStyle> style;
getStyle(style);
style->getFont(eWindowStyle::fontStatic, m_font);
/* default to topleft alignment */
m_valign = alignTop;
m_halign = alignLeft;
m_have_foreground_color = 0;
}
int eLabel::event(int event, void *data, void *data2)
{
switch (event)
{
case evtPaint:
{
ePtr<eWindowStyle> style;
getStyle(style);
eWidget::event(event, data, data2);
gPainter &painter = *(gPainter*)data2;
painter.setFont(m_font);
style->setStyle(painter, eWindowStyle::styleLabel);
if (m_have_foreground_color)
painter.setForegroundColor(m_foreground_color);
int flags = 0;
if (m_valign == alignTop)
flags |= gPainter::RT_VALIGN_TOP;
else if (m_valign == alignCenter)
flags |= gPainter::RT_VALIGN_CENTER;
else if (m_valign == alignBottom)
flags |= gPainter::RT_VALIGN_BOTTOM;
if (m_halign == alignLeft)
flags |= gPainter::RT_HALIGN_LEFT;
else if (m_halign == alignCenter)
flags |= gPainter::RT_HALIGN_CENTER;
else if (m_halign == alignRight)
flags |= gPainter::RT_HALIGN_RIGHT;
else if (m_halign == alignBlock)
flags |= gPainter::RT_HALIGN_BLOCK;
flags |= gPainter::RT_WRAP;
painter.renderText(eRect(0, 0, size().width(), size().height()), m_text, flags);
return 0;
}
case evtChangedFont:
case evtChangedText:
case evtChangedAlignment:
invalidate();
return 0;
default:
return eWidget::event(event, data, data2);
}
}
void eLabel::setText(const std::string &string)
{
if (m_text == string)
return;
m_text = string;
event(evtChangedText);
}
void eLabel::setFont(gFont *font)
{
m_font = font;
event(evtChangedFont);
}
void eLabel::setVAlign(int align)
{
m_valign = align;
event(evtChangedAlignment);
}
void eLabel::setHAlign(int align)
{
m_halign = align;
event(evtChangedAlignment);
}
void eLabel::setForegroundColor(const gRGB &col)
{
m_foreground_color = col;
m_have_foreground_color = 1;
}
void eLabel::clearForegroundColor()
{
m_have_foreground_color = 0;
}
eSize eLabel::calculateSize()
{
ePtr<eTextPara> p = new eTextPara(eRect(0, 0, size().width(), size().height()));
p->setFont(m_font);
p->renderString(m_text, RS_WRAP);
eRect bbox = p->getBoundBox();
return bbox.size();
}
|