blob: 185f7c24b033cd4a911af1f1351ffc861cebd0e2 (
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
|
#ifndef __lib_gui_elabel_h
#define __lib_gui_elabel_h
#include <lib/gui/ewidget.h>
class eLabel: public eWidget
{
public:
eLabel(eWidget *parent);
void setText(const std::string &string);
void setFont(gFont *font);
enum
{
alignLeft,
alignTop=alignLeft,
alignCenter,
alignRight,
alignBottom=alignRight,
alignBlock
};
void setVAlign(int align);
void setHAlign(int align);
void setForegroundColor(const gRGB &col);
void clearForegroundColor();
eSize calculateSize();
protected:
ePtr<gFont> m_font;
int m_valign, m_halign;
std::string m_text;
int event(int event, void *data=0, void *data2=0);
private:
int m_have_foreground_color;
gRGB m_foreground_color;
enum eLabelEvent
{
evtChangedText = evtUserWidget,
evtChangedFont,
evtChangedAlignment
};
};
#endif
|