blob: cf9b473b82aebb3d2c5e911e9e5018b9843b12e3 (
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
|
/*
ui/label.cc
This file is part of the Osirion project and is distributed under
the terms of the GNU General Public License version 2
*/
#include "math/vector2f.h"
#include "ui/paint.h"
#include "ui/label.h"
using math::Vector2f;
namespace ui
{
Label::Label(Widget *parent, const char *text) : Widget(parent)
{
set_label("label");
set_text(text);
set_alignment(AlignLeft | AlignTop);
}
Label::~Label()
{
}
void Label::print(const size_t indent) const
{
std::string marker("");
con_print << aux::pad_left(marker, indent*2) << label() << " \"" << text() << "\"" << std::endl;
}
void Label::set_text(const char *text)
{
if (text)
label_text.assign(text);
else
label_text.clear();
}
void Label::set_text(const std::string &text)
{
label_text.assign(text);
}
void Label::set_alignment(const unsigned int alignment)
{
label_alignment = alignment;
}
void Label::draw()
{
if (!label_text.size())
return;
paint::color(palette()->foreground());
paint::label(global_location(), size(), font(), text(), alignment());
}
}
|