mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05:00
36bb03b6dd
Comes with a checkbox to turn it off if you dislike it.
85 lines
2.5 KiB
C++
85 lines
2.5 KiB
C++
#include "EraseTool.h"
|
|
#include "PaintableWidget.h"
|
|
#include <LibGUI/GAction.h>
|
|
#include <LibGUI/GMenu.h>
|
|
#include <LibGUI/GPainter.h>
|
|
|
|
EraseTool::EraseTool()
|
|
{
|
|
}
|
|
|
|
EraseTool::~EraseTool()
|
|
{
|
|
}
|
|
|
|
Rect EraseTool::build_rect(const Point& pos, const Rect& widget_rect)
|
|
{
|
|
const int base_eraser_size = 10;
|
|
const int eraser_size = (base_eraser_size * m_thickness);
|
|
const int eraser_radius = eraser_size / 2;
|
|
const auto ex = pos.x();
|
|
const auto ey = pos.y();
|
|
return Rect(ex - eraser_radius, ey - eraser_radius, eraser_size, eraser_size).intersected(widget_rect);
|
|
}
|
|
|
|
void EraseTool::on_mousedown(GMouseEvent& event)
|
|
{
|
|
if (event.button() != GMouseButton::Left && event.button() != GMouseButton::Right)
|
|
return;
|
|
Rect r = build_rect(event.position(), m_widget->bitmap().rect());
|
|
GPainter painter(m_widget->bitmap());
|
|
painter.fill_rect(r, get_color());
|
|
m_widget->update();
|
|
}
|
|
|
|
void EraseTool::on_mousemove(GMouseEvent& event)
|
|
{
|
|
if (!m_widget->rect().contains(event.position()))
|
|
return;
|
|
|
|
if (event.buttons() & GMouseButton::Left || event.buttons() & GMouseButton::Right) {
|
|
Rect r = build_rect(event.position(), m_widget->bitmap().rect());
|
|
GPainter painter(m_widget->bitmap());
|
|
painter.fill_rect(r, get_color());
|
|
m_widget->update();
|
|
}
|
|
}
|
|
|
|
void EraseTool::on_contextmenu(GContextMenuEvent& event)
|
|
{
|
|
if (!m_context_menu) {
|
|
m_context_menu = make<GMenu>();
|
|
|
|
NonnullRefPtr<GAction> eraser_color_toggler = GAction::create("Use secondary color", [&](GAction& action) {
|
|
bool toggled = !m_use_secondary_color;
|
|
m_use_secondary_color = toggled;
|
|
action.set_checked(toggled);
|
|
});
|
|
eraser_color_toggler->set_checkable(true);
|
|
eraser_color_toggler->set_checked(m_use_secondary_color);
|
|
|
|
m_context_menu->add_action(eraser_color_toggler);
|
|
m_context_menu->add_separator();
|
|
m_context_menu->add_action(GAction::create("1", [this](auto&) {
|
|
m_thickness = 1;
|
|
}));
|
|
m_context_menu->add_action(GAction::create("2", [this](auto&) {
|
|
m_thickness = 2;
|
|
}));
|
|
m_context_menu->add_action(GAction::create("3", [this](auto&) {
|
|
m_thickness = 3;
|
|
}));
|
|
m_context_menu->add_action(GAction::create("4", [this](auto&) {
|
|
m_thickness = 4;
|
|
}));
|
|
}
|
|
|
|
m_context_menu->popup(event.screen_position());
|
|
}
|
|
|
|
Color EraseTool::get_color() const
|
|
{
|
|
if (m_use_secondary_color)
|
|
return m_widget->secondary_color();
|
|
return Color(Color::White);
|
|
}
|