2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
2021-08-26 19:58:04 +00:00
|
|
|
* Copyright (c) 2021, Mustafa Quraish <mustafa@cs.toronto.edu>
|
2020-01-18 08:38:21 +00:00
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 08:38:21 +00:00
|
|
|
*/
|
|
|
|
|
2019-12-26 19:43:59 +00:00
|
|
|
#include "RectangleTool.h"
|
2020-05-12 21:44:46 +00:00
|
|
|
#include "ImageEditor.h"
|
|
|
|
#include "Layer.h"
|
2020-02-06 19:33:02 +00:00
|
|
|
#include <LibGUI/Action.h>
|
2021-08-02 20:51:12 +00:00
|
|
|
#include <LibGUI/BoxLayout.h>
|
|
|
|
#include <LibGUI/Label.h>
|
2020-02-06 19:33:02 +00:00
|
|
|
#include <LibGUI/Menu.h>
|
|
|
|
#include <LibGUI/Painter.h>
|
2021-08-02 20:51:12 +00:00
|
|
|
#include <LibGUI/RadioButton.h>
|
2021-09-03 12:42:14 +00:00
|
|
|
#include <LibGUI/ValueSlider.h>
|
2020-05-12 21:44:46 +00:00
|
|
|
#include <LibGfx/Rect.h>
|
2019-12-26 19:43:59 +00:00
|
|
|
|
2020-05-20 18:35:35 +00:00
|
|
|
namespace PixelPaint {
|
2020-05-12 21:44:46 +00:00
|
|
|
|
2019-12-26 19:43:59 +00:00
|
|
|
RectangleTool::RectangleTool()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
RectangleTool::~RectangleTool()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-09-07 00:48:36 +00:00
|
|
|
void RectangleTool::draw_using(GUI::Painter& painter, Gfx::IntPoint const& start_position, Gfx::IntPoint const& end_position, int thickness)
|
2019-12-26 19:43:59 +00:00
|
|
|
{
|
2021-08-26 19:58:04 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2021-08-26 20:03:56 +00:00
|
|
|
switch (m_fill_mode) {
|
|
|
|
case FillMode::Fill:
|
2020-05-22 12:57:10 +00:00
|
|
|
painter.fill_rect(rect, m_editor->color_for(m_drawing_button));
|
2019-12-26 19:43:59 +00:00
|
|
|
break;
|
2021-08-26 20:03:56 +00:00
|
|
|
case FillMode::Outline:
|
2021-09-07 00:48:36 +00:00
|
|
|
painter.draw_rect_with_thickness(rect, m_editor->color_for(m_drawing_button), thickness);
|
2019-12-26 19:43:59 +00:00
|
|
|
break;
|
2021-08-26 20:03:56 +00:00
|
|
|
case FillMode::Gradient:
|
2020-05-22 12:57:10 +00:00
|
|
|
painter.fill_rect_with_gradient(rect, m_editor->primary_color(), m_editor->secondary_color());
|
2019-12-26 19:43:59 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-02-23 19:42:32 +00:00
|
|
|
VERIFY_NOT_REACHED();
|
2019-12-26 19:43:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-25 08:07:24 +00:00
|
|
|
void RectangleTool::on_mousedown(Layer* layer, MouseEvent& event)
|
2019-12-26 19:43:59 +00:00
|
|
|
{
|
2021-08-25 08:07:24 +00:00
|
|
|
if (!layer)
|
|
|
|
return;
|
|
|
|
|
2021-08-25 08:06:00 +00:00
|
|
|
auto& layer_event = event.layer_event();
|
|
|
|
if (layer_event.button() != GUI::MouseButton::Left && layer_event.button() != GUI::MouseButton::Right)
|
2019-12-26 19:43:59 +00:00
|
|
|
return;
|
|
|
|
|
2020-02-02 14:07:41 +00:00
|
|
|
if (m_drawing_button != GUI::MouseButton::None)
|
2019-12-26 19:43:59 +00:00
|
|
|
return;
|
|
|
|
|
2021-08-25 08:06:00 +00:00
|
|
|
m_drawing_button = layer_event.button();
|
|
|
|
m_rectangle_start_position = layer_event.position();
|
|
|
|
m_rectangle_end_position = layer_event.position();
|
2020-05-12 21:44:46 +00:00
|
|
|
m_editor->update();
|
2019-12-26 19:43:59 +00:00
|
|
|
}
|
|
|
|
|
2021-08-25 08:07:24 +00:00
|
|
|
void RectangleTool::on_mouseup(Layer* layer, MouseEvent& event)
|
2019-12-26 19:43:59 +00:00
|
|
|
{
|
2021-08-25 08:07:24 +00:00
|
|
|
if (!layer)
|
|
|
|
return;
|
|
|
|
|
2021-08-25 08:06:00 +00:00
|
|
|
if (event.layer_event().button() == m_drawing_button) {
|
2021-08-25 08:07:24 +00:00
|
|
|
GUI::Painter painter(layer->bitmap());
|
2021-09-07 00:48:36 +00:00
|
|
|
draw_using(painter, m_rectangle_start_position, m_rectangle_end_position, m_thickness);
|
2020-02-02 14:07:41 +00:00
|
|
|
m_drawing_button = GUI::MouseButton::None;
|
2021-08-25 08:07:24 +00:00
|
|
|
layer->did_modify_bitmap();
|
2020-10-17 16:47:34 +00:00
|
|
|
m_editor->did_complete_action();
|
2019-12-26 19:43:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-25 08:07:24 +00:00
|
|
|
void RectangleTool::on_mousemove(Layer* layer, MouseEvent& event)
|
2019-12-26 19:43:59 +00:00
|
|
|
{
|
2021-08-25 08:07:24 +00:00
|
|
|
if (!layer)
|
|
|
|
return;
|
|
|
|
|
2020-02-02 14:07:41 +00:00
|
|
|
if (m_drawing_button == GUI::MouseButton::None)
|
2019-12-26 19:43:59 +00:00
|
|
|
return;
|
|
|
|
|
2021-08-26 19:58:04 +00:00
|
|
|
m_draw_mode = event.layer_event().alt() ? DrawMode::FromCenter : DrawMode::FromCorner;
|
|
|
|
|
2021-08-25 08:06:00 +00:00
|
|
|
m_rectangle_end_position = event.layer_event().position();
|
2020-05-12 21:44:46 +00:00
|
|
|
m_editor->update();
|
2019-12-26 19:43:59 +00:00
|
|
|
}
|
|
|
|
|
2021-08-25 08:07:24 +00:00
|
|
|
void RectangleTool::on_second_paint(Layer const* layer, GUI::PaintEvent& event)
|
2019-12-26 19:43:59 +00:00
|
|
|
{
|
2021-08-25 08:07:24 +00:00
|
|
|
if (!layer || m_drawing_button == GUI::MouseButton::None)
|
2019-12-26 19:43:59 +00:00
|
|
|
return;
|
|
|
|
|
2020-05-13 11:41:12 +00:00
|
|
|
GUI::Painter painter(*m_editor);
|
2019-12-26 19:43:59 +00:00
|
|
|
painter.add_clip_rect(event.rect());
|
2021-08-26 19:58:04 +00:00
|
|
|
auto start_position = m_editor->layer_position_to_editor_position(*layer, m_rectangle_start_position).to_type<int>();
|
|
|
|
auto end_position = m_editor->layer_position_to_editor_position(*layer, m_rectangle_end_position).to_type<int>();
|
2021-09-07 00:50:08 +00:00
|
|
|
draw_using(painter, start_position, end_position, m_thickness * m_editor->scale());
|
2019-12-26 19:43:59 +00:00
|
|
|
}
|
|
|
|
|
2020-02-02 14:07:41 +00:00
|
|
|
void RectangleTool::on_keydown(GUI::KeyEvent& event)
|
2019-12-26 19:43:59 +00:00
|
|
|
{
|
2021-09-07 00:50:08 +00:00
|
|
|
Tool::on_keydown(event);
|
2020-02-02 14:07:41 +00:00
|
|
|
if (event.key() == Key_Escape && m_drawing_button != GUI::MouseButton::None) {
|
|
|
|
m_drawing_button = GUI::MouseButton::None;
|
2020-05-12 21:44:46 +00:00
|
|
|
m_editor->update();
|
2019-12-26 19:43:59 +00:00
|
|
|
event.accept();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-02 20:51:12 +00:00
|
|
|
GUI::Widget* RectangleTool::get_properties_widget()
|
2019-12-26 19:43:59 +00:00
|
|
|
{
|
2021-08-02 20:51:12 +00:00
|
|
|
if (!m_properties_widget) {
|
|
|
|
m_properties_widget = GUI::Widget::construct();
|
|
|
|
m_properties_widget->set_layout<GUI::VerticalBoxLayout>();
|
|
|
|
|
2021-09-03 12:42:14 +00:00
|
|
|
auto& thickness_container = m_properties_widget->add<GUI::Widget>();
|
|
|
|
thickness_container.set_fixed_height(20);
|
|
|
|
thickness_container.set_layout<GUI::HorizontalBoxLayout>();
|
|
|
|
|
|
|
|
auto& thickness_label = thickness_container.add<GUI::Label>("Thickness:");
|
|
|
|
thickness_label.set_text_alignment(Gfx::TextAlignment::CenterLeft);
|
|
|
|
thickness_label.set_fixed_size(80, 20);
|
|
|
|
|
|
|
|
auto& thickness_slider = thickness_container.add<GUI::ValueSlider>(Orientation::Horizontal, "px");
|
|
|
|
thickness_slider.set_range(1, 10);
|
|
|
|
thickness_slider.set_value(m_thickness);
|
|
|
|
|
|
|
|
thickness_slider.on_change = [&](int value) {
|
|
|
|
m_thickness = value;
|
|
|
|
};
|
2021-09-07 00:50:08 +00:00
|
|
|
set_primary_slider(&thickness_slider);
|
2021-09-03 12:42:14 +00:00
|
|
|
|
2021-08-02 20:51:12 +00:00
|
|
|
auto& mode_container = m_properties_widget->add<GUI::Widget>();
|
|
|
|
mode_container.set_fixed_height(70);
|
|
|
|
mode_container.set_layout<GUI::HorizontalBoxLayout>();
|
|
|
|
auto& mode_label = mode_container.add<GUI::Label>("Mode:");
|
|
|
|
mode_label.set_text_alignment(Gfx::TextAlignment::CenterLeft);
|
|
|
|
mode_label.set_fixed_size(80, 20);
|
|
|
|
|
|
|
|
auto& mode_radio_container = mode_container.add<GUI::Widget>();
|
|
|
|
mode_radio_container.set_layout<GUI::VerticalBoxLayout>();
|
|
|
|
auto& outline_mode_radio = mode_radio_container.add<GUI::RadioButton>("Outline");
|
|
|
|
auto& fill_mode_radio = mode_radio_container.add<GUI::RadioButton>("Fill");
|
|
|
|
auto& gradient_mode_radio = mode_radio_container.add<GUI::RadioButton>("Gradient");
|
|
|
|
|
|
|
|
outline_mode_radio.on_checked = [&](bool) {
|
2021-08-26 20:03:56 +00:00
|
|
|
m_fill_mode = FillMode::Outline;
|
2021-08-02 20:51:12 +00:00
|
|
|
};
|
|
|
|
fill_mode_radio.on_checked = [&](bool) {
|
2021-08-26 20:03:56 +00:00
|
|
|
m_fill_mode = FillMode::Fill;
|
2021-08-02 20:51:12 +00:00
|
|
|
};
|
|
|
|
gradient_mode_radio.on_checked = [&](bool) {
|
2021-08-26 20:03:56 +00:00
|
|
|
m_fill_mode = FillMode::Gradient;
|
2021-08-02 20:51:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
outline_mode_radio.set_checked(true);
|
2019-12-26 19:43:59 +00:00
|
|
|
}
|
2021-08-02 20:51:12 +00:00
|
|
|
|
|
|
|
return m_properties_widget.ptr();
|
2019-12-26 19:43:59 +00:00
|
|
|
}
|
2020-05-12 21:44:46 +00:00
|
|
|
|
|
|
|
}
|