blob: 140d1282f3400ffbe2c19233aad95c95f6509c96 (
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
|
#include "GLabel.h"
#include <SharedGraphics/Painter.h>
#include <SharedGraphics/GraphicsBitmap.h>
GLabel::GLabel(GWidget* parent)
: GWidget(parent)
{
}
GLabel::~GLabel()
{
}
void GLabel::set_icon(RetainPtr<GraphicsBitmap>&& icon)
{
m_icon = move(icon);
}
void GLabel::set_text(String&& text)
{
if (text == m_text)
return;
m_text = move(text);
update();
}
void GLabel::paint_event(GPaintEvent&)
{
Painter painter(*this);
if (fill_with_background_color())
painter.fill_rect({ 0, 0, width(), height() }, background_color());
if (m_icon) {
auto icon_location = rect().center().translated(-(m_icon->width() / 2), -(m_icon->height() / 2));
painter.blit(icon_location, *m_icon, m_icon->rect());
}
if (!text().is_empty())
painter.draw_text({ 0, 0, width(), height() }, text(), m_text_alignment, foreground_color());
}
|