/* * Copyright (c) 2018-2020, Andreas Kling * Copyright (c) 2021, Mustafa Quraish * * SPDX-License-Identifier: BSD-2-Clause */ #include "RectangleTool.h" #include "../ImageEditor.h" #include "../Layer.h" #include #include #include #include #include #include #include #include #include namespace PixelPaint { RectangleTool::RectangleTool() { } RectangleTool::~RectangleTool() { } void RectangleTool::draw_using(GUI::Painter& painter, Gfx::IntPoint const& start_position, Gfx::IntPoint const& end_position, int thickness) { Gfx::IntRect rect; if (m_draw_mode == DrawMode::FromCenter) { auto delta = end_position - start_position; rect = Gfx::IntRect::from_two_points(start_position - delta, end_position); } else { rect = Gfx::IntRect::from_two_points(start_position, end_position); } switch (m_fill_mode) { case FillMode::Fill: painter.fill_rect(rect, m_editor->color_for(m_drawing_button)); break; case FillMode::Outline: painter.draw_rect_with_thickness(rect, m_editor->color_for(m_drawing_button), thickness); break; case FillMode::Gradient: painter.fill_rect_with_gradient(rect, m_editor->primary_color(), m_editor->secondary_color()); break; default: VERIFY_NOT_REACHED(); } } void RectangleTool::on_mousedown(Layer* layer, MouseEvent& event) { if (!layer) return; auto& layer_event = event.layer_event(); if (layer_event.button() != GUI::MouseButton::Primary && layer_event.button() != GUI::MouseButton::Secondary) return; if (m_drawing_button != GUI::MouseButton::None) return; m_drawing_button = layer_event.button(); m_rectangle_start_position = layer_event.position(); m_rectangle_end_position = layer_event.position(); m_editor->update(); } void RectangleTool::on_mouseup(Layer* layer, MouseEvent& event) { if (!layer) return; if (event.layer_event().button() == m_drawing_button) { GUI::Painter painter(layer->bitmap()); draw_using(painter, m_rectangle_start_position, m_rectangle_end_position, m_thickness); m_drawing_button = GUI::MouseButton::None; layer->did_modify_bitmap(); m_editor->update(); m_editor->did_complete_action(); } } void RectangleTool::on_mousemove(Layer* layer, MouseEvent& event) { if (!layer) return; if (m_drawing_button == GUI::MouseButton::None) return; m_draw_mode = event.layer_event().alt() ? DrawMode::FromCenter : DrawMode::FromCorner; if (event.layer_event().shift()) m_rectangle_end_position = m_rectangle_start_position.end_point_for_aspect_ratio(event.layer_event().position(), 1.0); else if (m_aspect_ratio.has_value()) m_rectangle_end_position = m_rectangle_start_position.end_point_for_aspect_ratio(event.layer_event().position(), m_aspect_ratio.value()); else m_rectangle_end_position = event.layer_event().position(); m_editor->update(); } void RectangleTool::on_second_paint(Layer const* layer, GUI::PaintEvent& event) { if (!layer || m_drawing_button == GUI::MouseButton::None) return; GUI::Painter painter(*m_editor); painter.add_clip_rect(event.rect()); auto start_position = editor_stroke_position(m_rectangle_start_position, m_thickness); auto end_position = editor_stroke_position(m_rectangle_end_position, m_thickness); draw_using(painter, start_position, end_position, AK::max(m_thickness * m_editor->scale(), 1)); } void RectangleTool::on_keydown(GUI::KeyEvent& event) { Tool::on_keydown(event); if (event.key() == Key_Escape && m_drawing_button != GUI::MouseButton::None) { m_drawing_button = GUI::MouseButton::None; m_editor->update(); event.accept(); } } GUI::Widget* RectangleTool::get_properties_widget() { if (!m_properties_widget) { m_properties_widget = GUI::Widget::construct(); m_properties_widget->set_layout(); auto& thickness_container = m_properties_widget->add(); thickness_container.set_fixed_height(20); thickness_container.set_layout(); auto& thickness_label = thickness_container.add("Thickness:"); thickness_label.set_text_alignment(Gfx::TextAlignment::CenterLeft); thickness_label.set_fixed_size(80, 20); auto& thickness_slider = thickness_container.add(Orientation::Horizontal, "px"); thickness_slider.set_range(1, 10); thickness_slider.set_value(m_thickness); thickness_slider.on_change = [&](int value) { m_thickness = value; }; set_primary_slider(&thickness_slider); auto& mode_container = m_properties_widget->add(); mode_container.set_fixed_height(70); mode_container.set_layout(); auto& mode_label = mode_container.add("Mode:"); mode_label.set_text_alignment(Gfx::TextAlignment::CenterLeft); mode_label.set_fixed_size(80, 20); auto& mode_radio_container = mode_container.add(); mode_radio_container.set_layout(); auto& outline_mode_radio = mode_radio_container.add("Outline"); auto& fill_mode_radio = mode_radio_container.add("Fill"); auto& gradient_mode_radio = mode_radio_container.add("Gradient"); outline_mode_radio.on_checked = [&](bool) { m_fill_mode = FillMode::Outline; }; fill_mode_radio.on_checked = [&](bool) { m_fill_mode = FillMode::Fill; }; gradient_mode_radio.on_checked = [&](bool) { m_fill_mode = FillMode::Gradient; }; outline_mode_radio.set_checked(true); auto& aspect_container = m_properties_widget->add(); aspect_container.set_fixed_height(20); aspect_container.set_layout(); auto& aspect_label = aspect_container.add("Aspect Ratio:"); aspect_label.set_text_alignment(Gfx::TextAlignment::CenterLeft); aspect_label.set_fixed_size(80, 20); m_aspect_w_textbox = aspect_container.add(); m_aspect_w_textbox->set_fixed_height(20); m_aspect_w_textbox->set_fixed_width(25); m_aspect_w_textbox->on_change = [&] { auto x = m_aspect_w_textbox->text().to_int().value_or(0); auto y = m_aspect_h_textbox->text().to_int().value_or(0); if (x > 0 && y > 0) { m_aspect_ratio = (float)x / (float)y; } else { m_aspect_ratio = {}; } }; auto& multiply_label = aspect_container.add("x"); multiply_label.set_text_alignment(Gfx::TextAlignment::Center); multiply_label.set_fixed_size(10, 20); m_aspect_h_textbox = aspect_container.add(); m_aspect_h_textbox->set_fixed_height(20); m_aspect_h_textbox->set_fixed_width(25); m_aspect_h_textbox->on_change = [&] { m_aspect_w_textbox->on_change(); }; } return m_properties_widget.ptr(); } }