2019-01-20 01:49:48 -02:00
|
|
|
#include "GLabel.h"
|
2019-03-28 13:19:56 -03:00
|
|
|
#include <LibGUI/GPainter.h>
|
2019-07-18 05:15:00 -03:00
|
|
|
#include <LibDraw/GraphicsBitmap.h>
|
2018-10-10 11:49:36 -03:00
|
|
|
|
2019-01-20 01:49:48 -02:00
|
|
|
GLabel::GLabel(GWidget* parent)
|
2019-03-28 11:30:29 -03:00
|
|
|
: GFrame(parent)
|
2018-10-10 11:49:36 -03:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-02 09:58:02 -03:00
|
|
|
GLabel::GLabel(const StringView& text, GWidget* parent)
|
2019-03-28 11:30:29 -03:00
|
|
|
: GFrame(parent)
|
2019-03-10 09:16:36 -03:00
|
|
|
, m_text(text)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-20 01:49:48 -02:00
|
|
|
GLabel::~GLabel()
|
2018-10-10 11:49:36 -03:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-11 10:52:15 -03:00
|
|
|
void GLabel::set_icon(GraphicsBitmap* icon)
|
2019-02-12 12:23:07 -02:00
|
|
|
{
|
2019-08-09 18:48:44 -03:00
|
|
|
if (m_icon == icon)
|
|
|
|
|
return;
|
2019-07-11 10:52:15 -03:00
|
|
|
m_icon = icon;
|
2019-08-09 18:48:44 -03:00
|
|
|
update();
|
2019-02-12 12:23:07 -02:00
|
|
|
}
|
|
|
|
|
|
2019-06-02 09:58:02 -03:00
|
|
|
void GLabel::set_text(const StringView& text)
|
2018-10-10 15:06:58 -03:00
|
|
|
{
|
|
|
|
|
if (text == m_text)
|
|
|
|
|
return;
|
2019-09-15 12:29:23 -03:00
|
|
|
m_text = text;
|
2018-10-10 15:06:58 -03:00
|
|
|
update();
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-28 15:34:55 -03:00
|
|
|
void GLabel::paint_event(GPaintEvent& event)
|
2018-10-10 11:49:36 -03:00
|
|
|
{
|
2019-03-28 11:30:29 -03:00
|
|
|
GFrame::paint_event(event);
|
|
|
|
|
|
2019-03-28 13:19:56 -03:00
|
|
|
GPainter painter(*this);
|
2019-03-29 11:01:54 -03:00
|
|
|
painter.add_clip_rect(event.rect());
|
2019-03-22 00:20:48 -03:00
|
|
|
|
2019-02-12 12:23:07 -02:00
|
|
|
if (m_icon) {
|
2019-03-22 00:20:48 -03:00
|
|
|
if (m_should_stretch_icon) {
|
2019-03-28 11:30:29 -03:00
|
|
|
painter.draw_scaled_bitmap(frame_inner_rect(), *m_icon, m_icon->rect());
|
2019-03-22 00:20:48 -03:00
|
|
|
} else {
|
2019-03-28 11:30:29 -03:00
|
|
|
auto icon_location = frame_inner_rect().center().translated(-(m_icon->width() / 2), -(m_icon->height() / 2));
|
2019-03-22 00:20:48 -03:00
|
|
|
painter.blit(icon_location, *m_icon, m_icon->rect());
|
|
|
|
|
}
|
2019-02-12 12:23:07 -02:00
|
|
|
}
|
2019-05-24 18:00:07 -03:00
|
|
|
if (text().is_empty())
|
|
|
|
|
return;
|
|
|
|
|
int indent = 0;
|
|
|
|
|
if (frame_thickness() > 0)
|
|
|
|
|
indent = font().glyph_width('x') / 2;
|
|
|
|
|
auto text_rect = frame_inner_rect();
|
|
|
|
|
text_rect.move_by(indent, 0);
|
|
|
|
|
text_rect.set_width(text_rect.width() - indent * 2);
|
|
|
|
|
|
|
|
|
|
if (is_enabled()) {
|
|
|
|
|
painter.draw_text(text_rect, text(), m_text_alignment, foreground_color(), TextElision::Right);
|
|
|
|
|
} else {
|
|
|
|
|
painter.draw_text(text_rect.translated(1, 1), text(), font(), text_alignment(), Color::White, TextElision::Right);
|
|
|
|
|
painter.draw_text(text_rect, text(), font(), text_alignment(), Color::from_rgb(0x808080), TextElision::Right);
|
2019-03-28 11:30:29 -03:00
|
|
|
}
|
2018-10-10 11:49:36 -03:00
|
|
|
}
|
2019-03-20 18:01:02 -03:00
|
|
|
|
|
|
|
|
void GLabel::size_to_fit()
|
|
|
|
|
{
|
|
|
|
|
set_size_policy(SizePolicy::Fixed, SizePolicy::Fill);
|
2019-07-20 17:39:24 -03:00
|
|
|
set_preferred_size(font().width(m_text), 0);
|
2019-03-20 18:01:02 -03:00
|
|
|
}
|