2020-05-12 22:22:45 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
2021-08-31 21:02:38 +02:00
|
|
|
* Copyright (c) 2021, Tobias Christiansen <tobyase@serenityos.org>
|
2022-01-04 21:42:26 -05:00
|
|
|
* Copyright (c) 2021-2022, Mustafa Quraish <mustafa@serenityos.org>
|
2021-09-05 12:26:15 +02:00
|
|
|
* Copyright (c) 2021, David Isaksson <davidisaksson93@gmail.com>
|
2020-05-12 22:22:45 +02:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-05-12 22:22:45 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ImageEditor.h"
|
|
|
|
#include "Image.h"
|
|
|
|
#include "Layer.h"
|
2021-09-17 09:54:55 +02:00
|
|
|
#include "Tools/MoveTool.h"
|
|
|
|
#include "Tools/Tool.h"
|
2022-01-04 21:42:26 -05:00
|
|
|
#include <AK/LexicalPath.h>
|
2021-09-11 13:40:55 -04:00
|
|
|
#include <LibConfig/Client.h>
|
2022-01-07 17:35:31 -05:00
|
|
|
#include <LibFileSystemAccessClient/Client.h>
|
2020-11-13 13:19:24 +00:00
|
|
|
#include <LibGUI/Command.h>
|
2022-01-07 17:35:31 -05:00
|
|
|
#include <LibGUI/MessageBox.h>
|
2020-05-12 22:22:45 +02:00
|
|
|
#include <LibGUI/Painter.h>
|
2021-07-06 12:23:02 +02:00
|
|
|
#include <LibGfx/DisjointRectSet.h>
|
2020-05-12 22:22:45 +02:00
|
|
|
#include <LibGfx/Palette.h>
|
2020-09-18 09:49:51 +02:00
|
|
|
#include <LibGfx/Rect.h>
|
2020-05-12 22:22:45 +02:00
|
|
|
|
2020-05-20 20:35:35 +02:00
|
|
|
namespace PixelPaint {
|
2020-05-12 22:22:45 +02:00
|
|
|
|
2021-06-15 21:05:56 +02:00
|
|
|
ImageEditor::ImageEditor(NonnullRefPtr<Image> image)
|
|
|
|
: m_image(move(image))
|
2022-01-04 21:42:26 -05:00
|
|
|
, m_title("Untitled")
|
2021-06-14 17:45:59 +02:00
|
|
|
, m_selection(*this)
|
2020-05-12 22:22:45 +02:00
|
|
|
{
|
2020-10-30 10:58:27 +01:00
|
|
|
set_focus_policy(GUI::FocusPolicy::StrongFocus);
|
2022-01-04 17:58:40 +01:00
|
|
|
m_undo_stack.push(make<ImageUndoCommand>(*m_image));
|
2021-06-15 21:05:56 +02:00
|
|
|
m_image->add_client(*this);
|
2021-09-11 23:40:59 -04:00
|
|
|
|
2021-09-11 13:40:55 -04:00
|
|
|
m_pixel_grid_threshold = (float)Config::read_i32("PixelPaint", "PixelGrid", "Threshold", 15);
|
2021-09-11 23:40:59 -04:00
|
|
|
m_show_pixel_grid = Config::read_bool("PixelPaint", "PixelGrid", "Show", true);
|
|
|
|
|
|
|
|
m_show_rulers = Config::read_bool("PixelPaint", "Rulers", "Show", true);
|
|
|
|
m_show_guides = Config::read_bool("PixelPaint", "Guides", "Show", true);
|
2020-05-12 22:22:45 +02:00
|
|
|
}
|
|
|
|
|
2020-05-25 23:48:09 +02:00
|
|
|
ImageEditor::~ImageEditor()
|
|
|
|
{
|
2021-06-15 21:05:56 +02:00
|
|
|
m_image->remove_client(*this);
|
2020-05-12 22:22:45 +02:00
|
|
|
}
|
|
|
|
|
2020-10-17 16:47:34 +00:00
|
|
|
void ImageEditor::did_complete_action()
|
|
|
|
{
|
2022-01-04 17:58:40 +01:00
|
|
|
m_undo_stack.push(make<ImageUndoCommand>(*m_image));
|
2020-10-17 16:47:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ImageEditor::undo()
|
|
|
|
{
|
2022-01-04 17:58:40 +01:00
|
|
|
if (!m_undo_stack.can_undo())
|
2021-10-03 01:05:06 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Without this you need to undo twice to actually start undoing stuff.
|
|
|
|
* This is due to the fact that the top of the UndoStack contains the snapshot of the currently
|
|
|
|
* shown image but what we actually want to restore is the snapshot right below it.
|
|
|
|
* Doing "undo->undo->redo" restores the 2nd topmost snapshot on the stack while lowering the
|
|
|
|
* stack pointer only by 1. This is important because we want the UndoStack's pointer to always point
|
|
|
|
* at the currently shown snapshot, otherwise doing 'undo->undo->draw something else' would delete
|
|
|
|
* one of the snapshots.
|
|
|
|
* This works because UndoStack::undo first decrements the stack pointer and then restores the snapshot,
|
|
|
|
* while UndoStack::redo first restores the snapshot and then increments the stack pointer.
|
|
|
|
*/
|
2022-01-04 17:58:40 +01:00
|
|
|
m_undo_stack.undo();
|
|
|
|
m_undo_stack.undo();
|
|
|
|
m_undo_stack.redo();
|
2021-10-03 01:05:06 +02:00
|
|
|
layers_did_change();
|
|
|
|
return true;
|
2020-10-17 16:47:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ImageEditor::redo()
|
|
|
|
{
|
2022-01-04 17:58:40 +01:00
|
|
|
if (!m_undo_stack.can_redo())
|
2021-10-03 01:05:06 +02:00
|
|
|
return false;
|
|
|
|
|
2022-01-04 17:58:40 +01:00
|
|
|
m_undo_stack.redo();
|
2021-10-03 01:05:06 +02:00
|
|
|
layers_did_change();
|
|
|
|
return true;
|
2020-10-17 16:47:34 +00:00
|
|
|
}
|
|
|
|
|
2022-01-04 21:42:26 -05:00
|
|
|
void ImageEditor::set_title(String title)
|
|
|
|
{
|
|
|
|
m_title = move(title);
|
|
|
|
if (on_title_change)
|
|
|
|
on_title_change(m_title);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ImageEditor::set_path(String path)
|
|
|
|
{
|
|
|
|
m_path = move(path);
|
|
|
|
set_title(LexicalPath::basename(m_path));
|
|
|
|
}
|
|
|
|
|
2020-05-12 22:22:45 +02:00
|
|
|
void ImageEditor::paint_event(GUI::PaintEvent& event)
|
|
|
|
{
|
|
|
|
GUI::Frame::paint_event(event);
|
|
|
|
|
|
|
|
GUI::Painter painter(*this);
|
|
|
|
painter.add_clip_rect(event.rect());
|
2020-05-13 19:49:11 +02:00
|
|
|
painter.add_clip_rect(frame_inner_rect());
|
2020-05-12 22:22:45 +02:00
|
|
|
|
2021-07-06 12:23:02 +02:00
|
|
|
{
|
|
|
|
Gfx::DisjointRectSet background_rects;
|
|
|
|
background_rects.add(frame_inner_rect());
|
|
|
|
background_rects.shatter(m_editor_image_rect);
|
|
|
|
for (auto& rect : background_rects.rects())
|
|
|
|
painter.fill_rect(rect, palette().color(Gfx::ColorRole::Tray));
|
|
|
|
}
|
|
|
|
|
|
|
|
Gfx::StylePainter::paint_transparency_grid(painter, m_editor_image_rect, palette());
|
2020-05-12 22:22:45 +02:00
|
|
|
|
2021-06-15 21:05:56 +02:00
|
|
|
painter.draw_rect(m_editor_image_rect.inflated(2, 2), Color::Black);
|
|
|
|
m_image->paint_into(painter, m_editor_image_rect);
|
2020-05-12 23:00:23 +02:00
|
|
|
|
2021-11-19 17:26:49 +01:00
|
|
|
if (m_active_layer && m_show_active_layer_boundary) {
|
2020-05-20 22:29:04 +02:00
|
|
|
painter.draw_rect(enclosing_int_rect(image_rect_to_editor_rect(m_active_layer->relative_rect())).inflated(2, 2), Color::Black);
|
2020-05-12 23:00:23 +02:00
|
|
|
}
|
2021-06-14 17:36:18 +02:00
|
|
|
|
2021-09-11 13:40:55 -04:00
|
|
|
if (m_show_pixel_grid && m_scale > m_pixel_grid_threshold) {
|
2021-09-11 13:29:25 -04:00
|
|
|
auto event_image_rect = enclosing_int_rect(editor_rect_to_image_rect(event.rect())).inflated(1, 1);
|
|
|
|
auto image_rect = m_image->rect().inflated(1, 1).intersected(event_image_rect);
|
2021-09-10 22:54:36 -04:00
|
|
|
|
|
|
|
for (auto i = image_rect.left(); i < image_rect.right(); i++) {
|
|
|
|
auto start_point = image_position_to_editor_position({ i, image_rect.top() }).to_type<int>();
|
|
|
|
auto end_point = image_position_to_editor_position({ i, image_rect.bottom() }).to_type<int>();
|
|
|
|
painter.draw_line(start_point, end_point, Color::LightGray);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto i = image_rect.top(); i < image_rect.bottom(); i++) {
|
|
|
|
auto start_point = image_position_to_editor_position({ image_rect.left(), i }).to_type<int>();
|
|
|
|
auto end_point = image_position_to_editor_position({ image_rect.right(), i }).to_type<int>();
|
|
|
|
painter.draw_line(start_point, end_point, Color::LightGray);
|
|
|
|
}
|
|
|
|
}
|
2021-09-11 16:12:44 +02:00
|
|
|
|
|
|
|
if (m_show_guides) {
|
|
|
|
for (auto& guide : m_guides) {
|
|
|
|
if (guide.orientation() == Guide::Orientation::Horizontal) {
|
|
|
|
int y_coordinate = (int)image_position_to_editor_position({ 0.0f, guide.offset() }).y();
|
|
|
|
painter.draw_line({ 0, y_coordinate }, { rect().width(), y_coordinate }, Color::Cyan, 1, Gfx::Painter::LineStyle::Dashed, Color::LightGray);
|
|
|
|
} else if (guide.orientation() == Guide::Orientation::Vertical) {
|
|
|
|
int x_coordinate = (int)image_position_to_editor_position({ guide.offset(), 0.0f }).x();
|
|
|
|
painter.draw_line({ x_coordinate, 0 }, { x_coordinate, rect().height() }, Color::Cyan, 1, Gfx::Painter::LineStyle::Dashed, Color::LightGray);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!m_selection.is_empty())
|
|
|
|
m_selection.paint(painter);
|
2021-09-05 12:22:27 +02:00
|
|
|
|
|
|
|
if (m_show_rulers) {
|
|
|
|
const auto ruler_bg_color = palette().color(Gfx::ColorRole::InactiveSelection);
|
|
|
|
const auto ruler_fg_color = palette().color(Gfx::ColorRole::Ruler);
|
|
|
|
const auto ruler_text_color = palette().color(Gfx::ColorRole::InactiveSelectionText);
|
2021-09-05 12:26:15 +02:00
|
|
|
const auto mouse_indicator_color = Color::White;
|
2021-09-05 12:22:27 +02:00
|
|
|
|
|
|
|
// Ruler background
|
|
|
|
painter.fill_rect({ { 0, 0 }, { m_ruler_thickness, rect().height() } }, ruler_bg_color);
|
|
|
|
painter.fill_rect({ { 0, 0 }, { rect().width(), m_ruler_thickness } }, ruler_bg_color);
|
|
|
|
|
|
|
|
const auto ruler_step = calculate_ruler_step_size();
|
|
|
|
const auto editor_origin_to_image = editor_position_to_image_position({ 0, 0 });
|
|
|
|
const auto editor_max_to_image = editor_position_to_image_position({ width(), height() });
|
|
|
|
|
|
|
|
// Horizontal ruler
|
|
|
|
painter.draw_line({ 0, m_ruler_thickness }, { rect().width(), m_ruler_thickness }, ruler_fg_color);
|
|
|
|
const auto x_start = floor(editor_origin_to_image.x()) - ((int)floor(editor_origin_to_image.x()) % ruler_step) - ruler_step;
|
|
|
|
for (int x = x_start; x < editor_max_to_image.x(); x += ruler_step) {
|
|
|
|
const int num_sub_divisions = min(ruler_step, 10);
|
|
|
|
for (int x_sub = 0; x_sub < num_sub_divisions; ++x_sub) {
|
|
|
|
const int x_pos = x + (int)(ruler_step * x_sub / num_sub_divisions);
|
|
|
|
const int editor_x_sub = image_position_to_editor_position({ x_pos, 0 }).x();
|
|
|
|
const int line_length = (x_sub % 2 == 0) ? m_ruler_thickness / 3 : m_ruler_thickness / 6;
|
|
|
|
painter.draw_line({ editor_x_sub, m_ruler_thickness - line_length }, { editor_x_sub, m_ruler_thickness }, ruler_fg_color);
|
|
|
|
}
|
|
|
|
|
|
|
|
const int editor_x = image_position_to_editor_position({ x, 0 }).x();
|
|
|
|
painter.draw_line({ editor_x, 0 }, { editor_x, m_ruler_thickness }, ruler_fg_color);
|
|
|
|
painter.draw_text({ { editor_x + 2, 0 }, { m_ruler_thickness, m_ruler_thickness - 2 } }, String::formatted("{}", x), painter.font(), Gfx::TextAlignment::CenterLeft, ruler_text_color);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Vertical ruler
|
|
|
|
painter.draw_line({ m_ruler_thickness, 0 }, { m_ruler_thickness, rect().height() }, ruler_fg_color);
|
|
|
|
const auto y_start = floor(editor_origin_to_image.y()) - ((int)floor(editor_origin_to_image.y()) % ruler_step) - ruler_step;
|
|
|
|
for (int y = y_start; y < editor_max_to_image.y(); y += ruler_step) {
|
|
|
|
const int num_sub_divisions = min(ruler_step, 10);
|
|
|
|
for (int y_sub = 0; y_sub < num_sub_divisions; ++y_sub) {
|
|
|
|
const int y_pos = y + (int)(ruler_step * y_sub / num_sub_divisions);
|
|
|
|
const int editor_y_sub = image_position_to_editor_position({ 0, y_pos }).y();
|
|
|
|
const int line_length = (y_sub % 2 == 0) ? m_ruler_thickness / 3 : m_ruler_thickness / 6;
|
|
|
|
painter.draw_line({ m_ruler_thickness - line_length, editor_y_sub }, { m_ruler_thickness, editor_y_sub }, ruler_fg_color);
|
|
|
|
}
|
|
|
|
|
|
|
|
const int editor_y = image_position_to_editor_position({ 0, y }).y();
|
|
|
|
painter.draw_line({ 0, editor_y }, { m_ruler_thickness, editor_y }, ruler_fg_color);
|
|
|
|
painter.draw_text({ { 0, editor_y - m_ruler_thickness }, { m_ruler_thickness, m_ruler_thickness } }, String::formatted("{}", y), painter.font(), Gfx::TextAlignment::BottomRight, ruler_text_color);
|
|
|
|
}
|
|
|
|
|
2021-09-05 12:26:15 +02:00
|
|
|
// Mouse position indicator
|
|
|
|
const Gfx::IntPoint indicator_x({ m_mouse_position.x(), m_ruler_thickness });
|
|
|
|
const Gfx::IntPoint indicator_y({ m_ruler_thickness, m_mouse_position.y() });
|
|
|
|
painter.draw_triangle(indicator_x, indicator_x + Gfx::IntPoint(-m_mouse_indicator_triangle_size, -m_mouse_indicator_triangle_size), indicator_x + Gfx::IntPoint(m_mouse_indicator_triangle_size, -m_mouse_indicator_triangle_size), mouse_indicator_color);
|
|
|
|
painter.draw_triangle(indicator_y, indicator_y + Gfx::IntPoint(-m_mouse_indicator_triangle_size, -m_mouse_indicator_triangle_size), indicator_y + Gfx::IntPoint(-m_mouse_indicator_triangle_size, m_mouse_indicator_triangle_size), mouse_indicator_color);
|
|
|
|
|
2021-09-05 12:22:27 +02:00
|
|
|
// Top left square
|
|
|
|
painter.fill_rect({ { 0, 0 }, { m_ruler_thickness, m_ruler_thickness } }, ruler_bg_color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int ImageEditor::calculate_ruler_step_size() const
|
|
|
|
{
|
|
|
|
const auto step_target = 80 / m_scale;
|
|
|
|
const auto max_factor = 5;
|
|
|
|
for (int factor = 0; factor < max_factor; ++factor) {
|
|
|
|
if (step_target <= 1 * (float)pow(10, factor))
|
|
|
|
return 1 * pow(10, factor);
|
|
|
|
if (step_target <= 2 * (float)pow(10, factor))
|
|
|
|
return 2 * pow(10, factor);
|
|
|
|
if (step_target <= 5 * (float)pow(10, factor))
|
|
|
|
return 5 * pow(10, factor);
|
|
|
|
}
|
|
|
|
return 1 * pow(10, max_factor);
|
2020-05-12 23:00:23 +02:00
|
|
|
}
|
|
|
|
|
2021-09-05 12:26:15 +02:00
|
|
|
Gfx::IntRect ImageEditor::mouse_indicator_rect_x() const
|
|
|
|
{
|
|
|
|
const Gfx::IntPoint top_left({ m_ruler_thickness, m_ruler_thickness - m_mouse_indicator_triangle_size });
|
|
|
|
const Gfx::IntSize size({ width() + 1, m_mouse_indicator_triangle_size + 1 });
|
|
|
|
return Gfx::IntRect(top_left, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
Gfx::IntRect ImageEditor::mouse_indicator_rect_y() const
|
|
|
|
{
|
|
|
|
const Gfx::IntPoint top_left({ m_ruler_thickness - m_mouse_indicator_triangle_size, m_ruler_thickness });
|
|
|
|
const Gfx::IntSize size({ m_mouse_indicator_triangle_size + 1, height() + 1 });
|
|
|
|
return Gfx::IntRect(top_left, size);
|
|
|
|
}
|
|
|
|
|
2021-06-11 13:27:47 +02:00
|
|
|
Gfx::FloatRect ImageEditor::layer_rect_to_editor_rect(Layer const& layer, Gfx::IntRect const& layer_rect) const
|
2020-05-22 14:45:14 +02:00
|
|
|
{
|
|
|
|
return image_rect_to_editor_rect(layer_rect.translated(layer.location()));
|
|
|
|
}
|
|
|
|
|
2021-06-11 13:27:47 +02:00
|
|
|
Gfx::FloatRect ImageEditor::image_rect_to_editor_rect(Gfx::IntRect const& image_rect) const
|
2020-05-20 22:29:04 +02:00
|
|
|
{
|
|
|
|
Gfx::FloatRect editor_rect;
|
|
|
|
editor_rect.set_location(image_position_to_editor_position(image_rect.location()));
|
|
|
|
editor_rect.set_width((float)image_rect.width() * m_scale);
|
|
|
|
editor_rect.set_height((float)image_rect.height() * m_scale);
|
|
|
|
return editor_rect;
|
|
|
|
}
|
|
|
|
|
2021-06-11 13:27:47 +02:00
|
|
|
Gfx::FloatRect ImageEditor::editor_rect_to_image_rect(Gfx::IntRect const& editor_rect) const
|
2020-05-20 22:29:04 +02:00
|
|
|
{
|
|
|
|
Gfx::FloatRect image_rect;
|
|
|
|
image_rect.set_location(editor_position_to_image_position(editor_rect.location()));
|
|
|
|
image_rect.set_width((float)editor_rect.width() / m_scale);
|
|
|
|
image_rect.set_height((float)editor_rect.height() / m_scale);
|
|
|
|
return image_rect;
|
|
|
|
}
|
|
|
|
|
2021-06-11 13:27:47 +02:00
|
|
|
Gfx::FloatPoint ImageEditor::layer_position_to_editor_position(Layer const& layer, Gfx::IntPoint const& layer_position) const
|
2020-05-22 14:45:14 +02:00
|
|
|
{
|
|
|
|
return image_position_to_editor_position(layer_position.translated(layer.location()));
|
|
|
|
}
|
|
|
|
|
2021-06-11 13:27:47 +02:00
|
|
|
Gfx::FloatPoint ImageEditor::image_position_to_editor_position(Gfx::IntPoint const& image_position) const
|
2020-05-20 22:29:04 +02:00
|
|
|
{
|
|
|
|
Gfx::FloatPoint editor_position;
|
|
|
|
editor_position.set_x(m_editor_image_rect.x() + ((float)image_position.x() * m_scale));
|
|
|
|
editor_position.set_y(m_editor_image_rect.y() + ((float)image_position.y() * m_scale));
|
|
|
|
return editor_position;
|
|
|
|
}
|
|
|
|
|
2021-06-11 13:27:47 +02:00
|
|
|
Gfx::FloatPoint ImageEditor::editor_position_to_image_position(Gfx::IntPoint const& editor_position) const
|
2020-05-20 22:29:04 +02:00
|
|
|
{
|
|
|
|
Gfx::FloatPoint image_position;
|
|
|
|
image_position.set_x(((float)editor_position.x() - m_editor_image_rect.x()) / m_scale);
|
|
|
|
image_position.set_y(((float)editor_position.y() - m_editor_image_rect.y()) / m_scale);
|
|
|
|
return image_position;
|
|
|
|
}
|
|
|
|
|
2020-05-13 13:41:12 +02:00
|
|
|
void ImageEditor::second_paint_event(GUI::PaintEvent& event)
|
|
|
|
{
|
2021-08-25 10:07:24 +02:00
|
|
|
if (m_active_tool)
|
|
|
|
m_active_tool->on_second_paint(m_active_layer, event);
|
2020-05-13 13:41:12 +02:00
|
|
|
}
|
|
|
|
|
2021-06-11 13:27:47 +02:00
|
|
|
GUI::MouseEvent ImageEditor::event_with_pan_and_scale_applied(GUI::MouseEvent const& event) const
|
2020-05-20 22:29:04 +02:00
|
|
|
{
|
|
|
|
auto image_position = editor_position_to_image_position(event.position());
|
|
|
|
return {
|
|
|
|
static_cast<GUI::Event::Type>(event.type()),
|
2020-06-10 10:57:59 +02:00
|
|
|
Gfx::IntPoint(image_position.x(), image_position.y()),
|
2020-05-20 22:29:04 +02:00
|
|
|
event.buttons(),
|
|
|
|
event.button(),
|
|
|
|
event.modifiers(),
|
|
|
|
event.wheel_delta()
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-06-11 13:27:47 +02:00
|
|
|
GUI::MouseEvent ImageEditor::event_adjusted_for_layer(GUI::MouseEvent const& event, Layer const& layer) const
|
2020-05-12 23:44:46 +02:00
|
|
|
{
|
2020-05-20 22:29:04 +02:00
|
|
|
auto image_position = editor_position_to_image_position(event.position());
|
2021-04-12 11:47:09 -07:00
|
|
|
image_position.translate_by(-layer.location().x(), -layer.location().y());
|
2020-05-12 23:44:46 +02:00
|
|
|
return {
|
2020-05-20 22:29:04 +02:00
|
|
|
static_cast<GUI::Event::Type>(event.type()),
|
2020-06-10 10:57:59 +02:00
|
|
|
Gfx::IntPoint(image_position.x(), image_position.y()),
|
2020-05-20 22:29:04 +02:00
|
|
|
event.buttons(),
|
|
|
|
event.button(),
|
|
|
|
event.modifiers(),
|
|
|
|
event.wheel_delta()
|
2020-05-12 23:44:46 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
void ImageEditor::mousedown_event(GUI::MouseEvent& event)
|
|
|
|
{
|
2020-05-20 22:29:04 +02:00
|
|
|
if (event.button() == GUI::MouseButton::Middle) {
|
|
|
|
m_click_position = event.position();
|
|
|
|
m_saved_pan_origin = m_pan_origin;
|
2021-08-08 20:50:27 +02:00
|
|
|
set_override_cursor(Gfx::StandardCursor::Drag);
|
2020-05-20 22:29:04 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-05-13 21:46:19 +02:00
|
|
|
if (!m_active_tool)
|
|
|
|
return;
|
|
|
|
|
2021-01-01 15:55:48 +01:00
|
|
|
if (is<MoveTool>(*m_active_tool)) {
|
2020-05-20 22:29:04 +02:00
|
|
|
if (auto* other_layer = layer_at_editor_position(event.position())) {
|
2020-05-13 21:46:19 +02:00
|
|
|
set_active_layer(other_layer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-25 10:07:24 +02:00
|
|
|
auto layer_event = m_active_layer ? event_adjusted_for_layer(event, *m_active_layer) : event;
|
2020-05-21 21:57:57 +02:00
|
|
|
auto image_event = event_with_pan_and_scale_applied(event);
|
2021-08-25 10:06:00 +02:00
|
|
|
Tool::MouseEvent tool_event(Tool::MouseEvent::Action::MouseDown, layer_event, image_event, event);
|
2021-08-25 10:07:24 +02:00
|
|
|
m_active_tool->on_mousedown(m_active_layer.ptr(), tool_event);
|
2020-05-12 23:44:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImageEditor::mousemove_event(GUI::MouseEvent& event)
|
|
|
|
{
|
2021-09-05 12:26:15 +02:00
|
|
|
m_mouse_position = event.position();
|
|
|
|
if (m_show_rulers) {
|
|
|
|
update(mouse_indicator_rect_x());
|
|
|
|
update(mouse_indicator_rect_y());
|
|
|
|
}
|
|
|
|
|
2020-05-20 22:29:04 +02:00
|
|
|
if (event.buttons() & GUI::MouseButton::Middle) {
|
|
|
|
auto delta = event.position() - m_click_position;
|
|
|
|
m_pan_origin = m_saved_pan_origin.translated(
|
2021-09-12 14:03:17 +02:00
|
|
|
-delta.x(),
|
|
|
|
-delta.y());
|
2020-05-20 22:29:04 +02:00
|
|
|
|
|
|
|
relayout();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-09-06 22:16:17 -04:00
|
|
|
auto image_event = event_with_pan_and_scale_applied(event);
|
|
|
|
if (on_image_mouse_position_change) {
|
|
|
|
on_image_mouse_position_change(image_event.position());
|
|
|
|
}
|
|
|
|
|
2021-08-25 10:07:24 +02:00
|
|
|
if (!m_active_tool)
|
2020-05-12 23:44:46 +02:00
|
|
|
return;
|
2021-08-25 10:06:00 +02:00
|
|
|
|
2021-08-25 10:07:24 +02:00
|
|
|
auto layer_event = m_active_layer ? event_adjusted_for_layer(event, *m_active_layer) : event;
|
2021-08-25 10:06:00 +02:00
|
|
|
Tool::MouseEvent tool_event(Tool::MouseEvent::Action::MouseDown, layer_event, image_event, event);
|
2021-08-25 10:07:24 +02:00
|
|
|
m_active_tool->on_mousemove(m_active_layer.ptr(), tool_event);
|
2020-05-12 23:44:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImageEditor::mouseup_event(GUI::MouseEvent& event)
|
|
|
|
{
|
2021-08-08 20:50:27 +02:00
|
|
|
set_override_cursor(m_active_cursor);
|
|
|
|
|
2021-08-25 10:07:24 +02:00
|
|
|
if (!m_active_tool)
|
2020-05-12 23:44:46 +02:00
|
|
|
return;
|
2021-08-25 10:07:24 +02:00
|
|
|
auto layer_event = m_active_layer ? event_adjusted_for_layer(event, *m_active_layer) : event;
|
2020-05-21 21:57:57 +02:00
|
|
|
auto image_event = event_with_pan_and_scale_applied(event);
|
2021-08-25 10:06:00 +02:00
|
|
|
Tool::MouseEvent tool_event(Tool::MouseEvent::Action::MouseDown, layer_event, image_event, event);
|
2021-08-25 10:07:24 +02:00
|
|
|
m_active_tool->on_mouseup(m_active_layer.ptr(), tool_event);
|
2020-05-20 22:29:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImageEditor::mousewheel_event(GUI::MouseEvent& event)
|
|
|
|
{
|
2021-03-22 14:33:30 -03:00
|
|
|
auto scale_delta = -event.wheel_delta() * 0.1f;
|
|
|
|
scale_centered_on_position(event.position(), scale_delta);
|
2020-05-12 23:44:46 +02:00
|
|
|
}
|
|
|
|
|
2020-05-13 22:03:29 +02:00
|
|
|
void ImageEditor::context_menu_event(GUI::ContextMenuEvent& event)
|
|
|
|
{
|
2021-08-25 10:07:24 +02:00
|
|
|
if (!m_active_tool)
|
2020-05-13 22:03:29 +02:00
|
|
|
return;
|
2021-08-25 10:07:24 +02:00
|
|
|
m_active_tool->on_context_menu(m_active_layer, event);
|
2020-05-13 22:03:29 +02:00
|
|
|
}
|
|
|
|
|
2020-05-20 22:29:04 +02:00
|
|
|
void ImageEditor::resize_event(GUI::ResizeEvent& event)
|
|
|
|
{
|
|
|
|
relayout();
|
|
|
|
GUI::Frame::resize_event(event);
|
|
|
|
}
|
|
|
|
|
2020-05-13 13:20:25 +02:00
|
|
|
void ImageEditor::keydown_event(GUI::KeyEvent& event)
|
|
|
|
{
|
|
|
|
if (m_active_tool)
|
|
|
|
m_active_tool->on_keydown(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ImageEditor::keyup_event(GUI::KeyEvent& event)
|
|
|
|
{
|
|
|
|
if (m_active_tool)
|
2020-05-13 14:37:12 +02:00
|
|
|
m_active_tool->on_keyup(event);
|
2020-05-13 13:20:25 +02:00
|
|
|
}
|
|
|
|
|
2021-08-08 20:50:27 +02:00
|
|
|
void ImageEditor::enter_event(Core::Event&)
|
|
|
|
{
|
|
|
|
set_override_cursor(m_active_cursor);
|
|
|
|
}
|
|
|
|
|
2021-08-01 11:59:47 +02:00
|
|
|
void ImageEditor::leave_event(Core::Event&)
|
|
|
|
{
|
2021-08-08 20:50:27 +02:00
|
|
|
set_override_cursor(Gfx::StandardCursor::None);
|
|
|
|
|
2021-08-01 11:59:47 +02:00
|
|
|
if (on_leave)
|
|
|
|
on_leave();
|
|
|
|
}
|
|
|
|
|
2020-05-12 23:00:23 +02:00
|
|
|
void ImageEditor::set_active_layer(Layer* layer)
|
|
|
|
{
|
|
|
|
if (m_active_layer == layer)
|
|
|
|
return;
|
|
|
|
m_active_layer = layer;
|
2020-05-13 21:46:19 +02:00
|
|
|
|
|
|
|
if (m_active_layer) {
|
2021-06-15 21:05:56 +02:00
|
|
|
VERIFY(&m_active_layer->image() == m_image.ptr());
|
2020-05-13 21:46:19 +02:00
|
|
|
size_t index = 0;
|
|
|
|
for (; index < m_image->layer_count(); ++index) {
|
|
|
|
if (&m_image->layer(index) == layer)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (on_active_layer_change)
|
2020-05-26 09:51:28 +02:00
|
|
|
on_active_layer_change(layer);
|
2020-05-13 21:46:19 +02:00
|
|
|
} else {
|
|
|
|
if (on_active_layer_change)
|
|
|
|
on_active_layer_change({});
|
|
|
|
}
|
2020-05-12 22:22:45 +02:00
|
|
|
}
|
|
|
|
|
2020-05-12 23:44:46 +02:00
|
|
|
void ImageEditor::set_active_tool(Tool* tool)
|
|
|
|
{
|
|
|
|
if (m_active_tool == tool)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (m_active_tool)
|
|
|
|
m_active_tool->clear();
|
|
|
|
|
|
|
|
m_active_tool = tool;
|
|
|
|
|
2021-08-08 20:50:27 +02:00
|
|
|
if (m_active_tool) {
|
2020-05-12 23:44:46 +02:00
|
|
|
m_active_tool->setup(*this);
|
2021-08-13 22:40:29 +02:00
|
|
|
m_active_tool->on_tool_activation();
|
2021-08-08 20:50:27 +02:00
|
|
|
m_active_cursor = m_active_tool->cursor();
|
2021-08-27 23:24:38 -04:00
|
|
|
set_override_cursor(m_active_cursor);
|
2021-08-08 20:50:27 +02:00
|
|
|
}
|
2020-05-12 23:44:46 +02:00
|
|
|
}
|
|
|
|
|
2021-09-12 16:55:55 -04:00
|
|
|
void ImageEditor::update_tool_cursor()
|
|
|
|
{
|
|
|
|
if (m_active_tool) {
|
|
|
|
m_active_cursor = m_active_tool->cursor();
|
|
|
|
set_override_cursor(m_active_cursor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-13 22:40:29 +02:00
|
|
|
void ImageEditor::set_guide_visibility(bool show_guides)
|
|
|
|
{
|
|
|
|
if (m_show_guides == show_guides)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_show_guides = show_guides;
|
|
|
|
|
|
|
|
if (on_set_guide_visibility)
|
|
|
|
on_set_guide_visibility(m_show_guides);
|
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2021-09-05 12:22:27 +02:00
|
|
|
void ImageEditor::set_ruler_visibility(bool show_rulers)
|
|
|
|
{
|
|
|
|
if (m_show_rulers == show_rulers)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_show_rulers = show_rulers;
|
|
|
|
|
|
|
|
if (on_set_ruler_visibility)
|
|
|
|
on_set_ruler_visibility(m_show_rulers);
|
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2021-09-10 23:12:25 -04:00
|
|
|
void ImageEditor::set_pixel_grid_visibility(bool show_pixel_grid)
|
|
|
|
{
|
|
|
|
if (m_show_pixel_grid == show_pixel_grid)
|
|
|
|
return;
|
|
|
|
m_show_pixel_grid = show_pixel_grid;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2020-05-13 00:21:13 +02:00
|
|
|
void ImageEditor::layers_did_change()
|
|
|
|
{
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2020-05-13 12:47:47 +02:00
|
|
|
Color ImageEditor::color_for(GUI::MouseButton button) const
|
|
|
|
{
|
2021-10-27 13:20:27 +02:00
|
|
|
if (button == GUI::MouseButton::Primary)
|
2020-05-13 12:47:47 +02:00
|
|
|
return m_primary_color;
|
2021-10-27 13:20:27 +02:00
|
|
|
if (button == GUI::MouseButton::Secondary)
|
2020-05-13 12:47:47 +02:00
|
|
|
return m_secondary_color;
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-05-13 12:47:47 +02:00
|
|
|
}
|
|
|
|
|
2021-06-11 13:27:47 +02:00
|
|
|
Color ImageEditor::color_for(GUI::MouseEvent const& event) const
|
2020-05-13 12:47:47 +02:00
|
|
|
{
|
2021-10-27 13:20:27 +02:00
|
|
|
if (event.buttons() & GUI::MouseButton::Primary)
|
2020-05-13 12:47:47 +02:00
|
|
|
return m_primary_color;
|
2021-10-27 13:20:27 +02:00
|
|
|
if (event.buttons() & GUI::MouseButton::Secondary)
|
2020-05-13 12:47:47 +02:00
|
|
|
return m_secondary_color;
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-05-13 12:47:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImageEditor::set_primary_color(Color color)
|
|
|
|
{
|
|
|
|
if (m_primary_color == color)
|
|
|
|
return;
|
|
|
|
m_primary_color = color;
|
|
|
|
if (on_primary_color_change)
|
|
|
|
on_primary_color_change(color);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ImageEditor::set_secondary_color(Color color)
|
|
|
|
{
|
|
|
|
if (m_secondary_color == color)
|
|
|
|
return;
|
|
|
|
m_secondary_color = color;
|
|
|
|
if (on_secondary_color_change)
|
|
|
|
on_secondary_color_change(color);
|
|
|
|
}
|
|
|
|
|
2021-06-11 13:27:47 +02:00
|
|
|
Layer* ImageEditor::layer_at_editor_position(Gfx::IntPoint const& editor_position)
|
2020-05-13 21:46:19 +02:00
|
|
|
{
|
2020-05-20 22:29:04 +02:00
|
|
|
auto image_position = editor_position_to_image_position(editor_position);
|
2020-05-13 21:46:19 +02:00
|
|
|
for (ssize_t i = m_image->layer_count() - 1; i >= 0; --i) {
|
|
|
|
auto& layer = m_image->layer(i);
|
2020-07-23 20:35:51 +02:00
|
|
|
if (!layer.is_visible())
|
|
|
|
continue;
|
2020-06-10 10:57:59 +02:00
|
|
|
if (layer.relative_rect().contains(Gfx::IntPoint(image_position.x(), image_position.y())))
|
2020-05-13 21:46:19 +02:00
|
|
|
return const_cast<Layer*>(&layer);
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-11-22 00:28:16 +01:00
|
|
|
void ImageEditor::set_absolute_scale(float scale, bool do_relayout)
|
2021-03-22 14:33:30 -03:00
|
|
|
{
|
2021-11-22 00:28:16 +01:00
|
|
|
if (scale < 0.1f)
|
|
|
|
scale = 0.1f;
|
|
|
|
if (scale > 100.0f)
|
|
|
|
scale = 100.0f;
|
|
|
|
if (scale == m_scale)
|
|
|
|
return;
|
|
|
|
m_scale = scale;
|
|
|
|
if (on_scale_changed)
|
|
|
|
on_scale_changed(m_scale);
|
|
|
|
if (do_relayout)
|
|
|
|
relayout();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ImageEditor::clamped_scale_by(float scale_delta, bool do_relayout)
|
|
|
|
{
|
|
|
|
set_absolute_scale(m_scale * AK::exp2(scale_delta), do_relayout);
|
2021-04-15 22:06:25 -04:00
|
|
|
}
|
|
|
|
|
2021-06-11 13:27:47 +02:00
|
|
|
void ImageEditor::scale_centered_on_position(Gfx::IntPoint const& position, float scale_delta)
|
2021-04-15 22:06:25 -04:00
|
|
|
{
|
|
|
|
auto old_scale = m_scale;
|
2021-09-12 14:03:17 +02:00
|
|
|
auto image_coord_of_position = editor_position_to_image_position(position);
|
2021-03-22 14:33:30 -03:00
|
|
|
|
2021-09-12 14:03:17 +02:00
|
|
|
auto image_size = m_image->size();
|
|
|
|
Gfx::FloatPoint offset_from_center_in_image_coords = {
|
|
|
|
image_coord_of_position.x() - image_size.width() / 2.0f,
|
|
|
|
image_coord_of_position.y() - image_size.height() / 2.0f
|
|
|
|
};
|
|
|
|
Gfx::FloatPoint offset_from_center_in_editor_coords = {
|
|
|
|
position.x() - width() / 2.0f,
|
|
|
|
position.y() - height() / 2.0f
|
2021-04-15 00:36:14 -07:00
|
|
|
};
|
2021-03-22 14:33:30 -03:00
|
|
|
|
2021-11-22 00:28:16 +01:00
|
|
|
clamped_scale_by(scale_delta, false);
|
2021-09-12 14:03:17 +02:00
|
|
|
|
|
|
|
m_pan_origin = {
|
|
|
|
offset_from_center_in_image_coords.x() * m_scale - offset_from_center_in_editor_coords.x(),
|
|
|
|
offset_from_center_in_image_coords.y() * m_scale - offset_from_center_in_editor_coords.y()
|
|
|
|
};
|
2021-03-22 14:33:30 -03:00
|
|
|
|
|
|
|
if (old_scale != m_scale)
|
|
|
|
relayout();
|
|
|
|
}
|
|
|
|
|
2021-04-15 22:06:25 -04:00
|
|
|
void ImageEditor::scale_by(float scale_delta)
|
|
|
|
{
|
2021-11-22 00:28:16 +01:00
|
|
|
if (scale_delta == 0)
|
|
|
|
return;
|
|
|
|
clamped_scale_by(scale_delta, true);
|
2021-04-15 22:06:25 -04:00
|
|
|
}
|
|
|
|
|
2021-09-11 23:14:15 -04:00
|
|
|
void ImageEditor::set_pan_origin(Gfx::FloatPoint const& pan_origin)
|
|
|
|
{
|
|
|
|
if (m_pan_origin == pan_origin)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_pan_origin = pan_origin;
|
|
|
|
relayout();
|
|
|
|
}
|
|
|
|
|
2021-11-22 00:33:55 +01:00
|
|
|
void ImageEditor::fit_image_to_view(FitType type)
|
2021-09-07 14:14:18 -04:00
|
|
|
{
|
2021-09-11 14:31:41 -04:00
|
|
|
auto viewport_rect = rect();
|
|
|
|
m_pan_origin = Gfx::FloatPoint(0, 0);
|
|
|
|
|
|
|
|
if (m_show_rulers) {
|
|
|
|
viewport_rect = {
|
|
|
|
viewport_rect.x() + m_ruler_thickness,
|
|
|
|
viewport_rect.y() + m_ruler_thickness,
|
|
|
|
viewport_rect.width() - m_ruler_thickness,
|
|
|
|
viewport_rect.height() - m_ruler_thickness
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-09-07 14:14:18 -04:00
|
|
|
const float border_ratio = 0.95f;
|
|
|
|
auto image_size = image().size();
|
2021-11-21 15:37:46 +01:00
|
|
|
auto height_ratio = floorf(border_ratio * viewport_rect.height()) / (float)image_size.height();
|
|
|
|
auto width_ratio = floorf(border_ratio * viewport_rect.width()) / (float)image_size.width();
|
2021-11-22 00:33:55 +01:00
|
|
|
switch (type) {
|
|
|
|
case FitType::Width:
|
|
|
|
set_absolute_scale(width_ratio, false);
|
|
|
|
break;
|
|
|
|
case FitType::Height:
|
|
|
|
set_absolute_scale(height_ratio, false);
|
|
|
|
break;
|
|
|
|
case FitType::Image:
|
|
|
|
set_absolute_scale(min(height_ratio, width_ratio), false);
|
|
|
|
break;
|
|
|
|
}
|
2021-09-07 14:14:18 -04:00
|
|
|
|
2021-09-11 14:31:41 -04:00
|
|
|
float offset = m_show_rulers ? -m_ruler_thickness / (m_scale * 2.0f) : 0.0f;
|
|
|
|
m_pan_origin = Gfx::FloatPoint(offset, offset);
|
|
|
|
|
2021-09-07 14:14:18 -04:00
|
|
|
relayout();
|
|
|
|
}
|
|
|
|
|
2021-04-15 21:09:25 -04:00
|
|
|
void ImageEditor::reset_scale_and_position()
|
|
|
|
{
|
2021-11-22 00:28:16 +01:00
|
|
|
set_absolute_scale(1.0f, false);
|
2021-04-15 22:06:25 -04:00
|
|
|
|
2021-04-15 21:09:25 -04:00
|
|
|
m_pan_origin = Gfx::FloatPoint(0, 0);
|
|
|
|
relayout();
|
|
|
|
}
|
|
|
|
|
2020-05-20 22:29:04 +02:00
|
|
|
void ImageEditor::relayout()
|
|
|
|
{
|
2020-06-10 10:57:59 +02:00
|
|
|
Gfx::IntSize new_size;
|
2021-06-15 21:35:04 +02:00
|
|
|
new_size.set_width(image().size().width() * m_scale);
|
|
|
|
new_size.set_height(image().size().height() * m_scale);
|
2020-05-20 22:29:04 +02:00
|
|
|
m_editor_image_rect.set_size(new_size);
|
|
|
|
|
2020-06-10 10:57:59 +02:00
|
|
|
Gfx::IntPoint new_location;
|
2021-09-12 14:03:17 +02:00
|
|
|
new_location.set_x((width() / 2) - (new_size.width() / 2) - (m_pan_origin.x()));
|
|
|
|
new_location.set_y((height() / 2) - (new_size.height() / 2) - (m_pan_origin.y()));
|
2020-05-20 22:29:04 +02:00
|
|
|
m_editor_image_rect.set_location(new_location);
|
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2021-07-06 20:35:19 +02:00
|
|
|
void ImageEditor::image_did_change(Gfx::IntRect const& modified_image_rect)
|
2020-05-25 22:49:50 +02:00
|
|
|
{
|
2021-07-06 20:35:19 +02:00
|
|
|
update(m_editor_image_rect.intersected(enclosing_int_rect(image_rect_to_editor_rect(modified_image_rect))));
|
2020-05-25 22:49:50 +02:00
|
|
|
}
|
|
|
|
|
2021-09-02 19:29:03 -04:00
|
|
|
void ImageEditor::image_did_change_rect(Gfx::IntRect const& new_image_rect)
|
|
|
|
{
|
|
|
|
m_editor_image_rect = enclosing_int_rect(image_rect_to_editor_rect(new_image_rect));
|
|
|
|
update(m_editor_image_rect);
|
|
|
|
}
|
|
|
|
|
2020-10-17 16:47:34 +00:00
|
|
|
void ImageEditor::image_select_layer(Layer* layer)
|
|
|
|
{
|
|
|
|
set_active_layer(layer);
|
|
|
|
}
|
2021-08-31 20:30:51 +02:00
|
|
|
|
2022-01-07 17:49:18 -05:00
|
|
|
bool ImageEditor::request_close()
|
|
|
|
{
|
|
|
|
if (!undo_stack().is_current_modified())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
auto result = GUI::MessageBox::ask_about_unsaved_changes(window(), path(), undo_stack().last_unmodified_timestamp());
|
|
|
|
|
|
|
|
if (result == GUI::MessageBox::ExecYes) {
|
|
|
|
save_project();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result == GUI::MessageBox::ExecNo)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-01-07 17:35:31 -05:00
|
|
|
void ImageEditor::save_project()
|
|
|
|
{
|
|
|
|
if (path().is_empty()) {
|
|
|
|
save_project_as();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto response = FileSystemAccessClient::Client::the().request_file(window()->window_id(), path(), Core::OpenMode::Truncate | Core::OpenMode::WriteOnly);
|
|
|
|
if (response.error != 0)
|
|
|
|
return;
|
|
|
|
auto result = save_project_to_fd_and_close(*response.fd);
|
|
|
|
if (result.is_error()) {
|
|
|
|
GUI::MessageBox::show_error(window(), String::formatted("Could not save {}: {}", *response.chosen_file, result.error()));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
undo_stack().set_current_unmodified();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ImageEditor::save_project_as()
|
|
|
|
{
|
|
|
|
auto save_result = FileSystemAccessClient::Client::the().save_file(window()->window_id(), "untitled", "pp");
|
|
|
|
if (save_result.error != 0)
|
|
|
|
return;
|
|
|
|
auto result = save_project_to_fd_and_close(*save_result.fd);
|
|
|
|
if (result.is_error()) {
|
|
|
|
GUI::MessageBox::show_error(window(), String::formatted("Could not save {}: {}", *save_result.chosen_file, result.error()));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
set_path(*save_result.chosen_file);
|
|
|
|
undo_stack().set_current_unmodified();
|
|
|
|
}
|
|
|
|
|
2021-08-31 20:30:51 +02:00
|
|
|
Result<void, String> ImageEditor::save_project_to_fd_and_close(int fd) const
|
|
|
|
{
|
|
|
|
StringBuilder builder;
|
|
|
|
JsonObjectSerializer json(builder);
|
|
|
|
m_image->serialize_as_json(json);
|
2021-08-31 21:02:38 +02:00
|
|
|
auto json_guides = json.add_array("guides");
|
|
|
|
for (const auto& guide : m_guides) {
|
|
|
|
auto json_guide = json_guides.add_object();
|
|
|
|
json_guide.add("offset"sv, (double)guide.offset());
|
|
|
|
if (guide.orientation() == Guide::Orientation::Vertical)
|
|
|
|
json_guide.add("orientation", "vertical");
|
|
|
|
else if (guide.orientation() == Guide::Orientation::Horizontal)
|
|
|
|
json_guide.add("orientation", "horizontal");
|
|
|
|
json_guide.finish();
|
|
|
|
}
|
|
|
|
json_guides.finish();
|
2021-08-31 20:30:51 +02:00
|
|
|
json.finish();
|
|
|
|
|
|
|
|
auto file = Core::File::construct();
|
|
|
|
file->open(fd, Core::OpenMode::WriteOnly | Core::OpenMode::Truncate, Core::File::ShouldCloseFileDescriptor::Yes);
|
|
|
|
if (file->has_error())
|
|
|
|
return String { file->error_string() };
|
|
|
|
|
|
|
|
if (!file->write(builder.string_view()))
|
|
|
|
return String { file->error_string() };
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2021-11-19 17:26:49 +01:00
|
|
|
void ImageEditor::set_show_active_layer_boundary(bool show)
|
|
|
|
{
|
|
|
|
if (m_show_active_layer_boundary == show)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_show_active_layer_boundary = show;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2020-05-12 22:22:45 +02:00
|
|
|
}
|