ladybird/LibGUI/GButton.cpp

133 lines
3.2 KiB
C++
Raw Normal View History

#include "GButton.h"
#include <LibGUI/GPainter.h>
#include <SharedGraphics/StylePainter.h>
#include <AK/StringBuilder.h>
#include <LibGUI/GAction.h>
2018-10-11 02:48:09 +03:00
//#define GBUTTON_DEBUG
GButton::GButton(GWidget* parent)
: GWidget(parent)
2018-10-11 02:48:09 +03:00
{
}
GButton::~GButton()
2018-10-11 02:48:09 +03:00
{
if (m_action)
m_action->unregister_button({ }, *this);
2018-10-11 02:48:09 +03:00
}
void GButton::set_caption(const String& caption)
2018-10-11 02:48:09 +03:00
{
if (caption == m_caption)
return;
m_caption = caption;
2018-10-11 02:48:09 +03:00
update();
}
void GButton::set_checked(bool checked)
{
if (m_checked == checked)
return;
m_checked = checked;
update();
}
void GButton::paint_event(GPaintEvent& event)
2018-10-11 02:48:09 +03:00
{
GPainter painter(*this);
painter.add_clip_rect(event.rect());
StylePainter::paint_button(painter, rect(), m_button_style, m_being_pressed, m_hovered, m_checkable && m_checked, is_enabled());
if (m_caption.is_empty() && !m_icon)
return;
auto content_rect = rect().shrunken(10, 2);
auto icon_location = m_icon ? content_rect.center().translated(-(m_icon->width() / 2), -(m_icon->height() / 2)) : Point();
if (m_being_pressed) {
content_rect.move_by(1, 1);
icon_location.move_by(1, 1);
2018-10-11 02:48:09 +03:00
}
if (m_icon) {
if (is_enabled())
painter.blit(icon_location, *m_icon, m_icon->rect());
else
painter.blit_dimmed(icon_location, *m_icon, m_icon->rect());
}
auto& font = (m_checkable && m_checked) ? Font::default_bold_font() : this->font();
painter.draw_text(content_rect, m_caption, font, text_alignment(), foreground_color(), TextElision::Right);
2018-10-11 02:48:09 +03:00
}
void GButton::mousemove_event(GMouseEvent& event)
{
if (event.buttons() == GMouseButton::Left) {
if (is_enabled()) {
bool being_pressed = rect().contains(event.position());
if (being_pressed != m_being_pressed) {
m_being_pressed = being_pressed;
update();
}
}
}
GWidget::mousemove_event(event);
}
2019-01-21 02:46:08 +03:00
void GButton::mousedown_event(GMouseEvent& event)
2018-10-11 02:48:09 +03:00
{
#ifdef GBUTTON_DEBUG
dbgprintf("GButton::mouse_down_event: x=%d, y=%d, button=%u\n", event.x(), event.y(), (unsigned)event.button());
#endif
if (event.button() == GMouseButton::Left) {
if (is_enabled()) {
m_being_pressed = true;
update();
}
}
2019-01-21 02:46:08 +03:00
GWidget::mousedown_event(event);
2018-10-11 02:48:09 +03:00
}
void GButton::click()
{
if (!is_enabled())
return;
if (on_click)
on_click(*this);
}
2019-01-21 02:46:08 +03:00
void GButton::mouseup_event(GMouseEvent& event)
2018-10-12 16:52:41 +03:00
{
#ifdef GBUTTON_DEBUG
dbgprintf("GButton::mouse_up_event: x=%d, y=%d, button=%u\n", event.x(), event.y(), (unsigned)event.button());
#endif
if (event.button() == GMouseButton::Left) {
if (is_enabled()) {
bool was_being_pressed = m_being_pressed;
m_being_pressed = false;
update();
if (was_being_pressed)
click();
}
}
GWidget::mouseup_event(event);
2018-10-12 16:52:41 +03:00
}
void GButton::enter_event(CEvent&)
{
m_hovered = true;
update();
}
void GButton::leave_event(CEvent&)
{
m_hovered = false;
update();
}
void GButton::set_action(GAction& action)
{
m_action = action.make_weak_ptr();
action.register_button({ }, *this);
set_enabled(action.is_enabled());
}