1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-26 18:12:06 +00:00
serenity/LibGUI/Label.cpp
2019-01-19 23:49:56 +01:00

35 lines
736 B
C++

#include "Label.h"
#include <SharedGraphics/Painter.h>
Label::Label(Widget* parent)
: Widget(parent)
{
}
Label::~Label()
{
}
void Label::setText(String&& text)
{
if (text == m_text)
return;
m_text = move(text);
update();
}
void Label::paintEvent(PaintEvent&)
{
Painter painter(*this);
if (fillWithBackgroundColor())
painter.fill_rect({ 0, 0, width(), height() }, backgroundColor());
if (!text().is_empty())
painter.draw_text({ 4, 4, width(), height() }, text(), Painter::TextAlignment::TopLeft, foregroundColor());
}
void Label::mouseMoveEvent(MouseEvent& event)
{
dbgprintf("Label::mouseMoveEvent: x=%d, y=%d\n", event.x(), event.y());
Widget::mouseMoveEvent(event);
}