2020-05-12 22:22:45 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
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-01-01 15:55:48 +01:00
|
|
|
#include "MoveTool.h"
|
2020-05-12 23:44:46 +02:00
|
|
|
#include "Tool.h"
|
2020-11-13 13:19:24 +00:00
|
|
|
#include <LibGUI/Command.h>
|
2020-05-12 22:22:45 +02:00
|
|
|
#include <LibGUI/Painter.h>
|
|
|
|
#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
|
|
|
|
|
|
|
ImageEditor::ImageEditor()
|
2020-11-13 13:19:24 +00:00
|
|
|
: m_undo_stack(make<GUI::UndoStack>())
|
2020-05-12 22:22:45 +02:00
|
|
|
{
|
2020-10-30 10:58:27 +01:00
|
|
|
set_focus_policy(GUI::FocusPolicy::StrongFocus);
|
2020-05-12 22:22:45 +02:00
|
|
|
}
|
|
|
|
|
2020-05-25 23:48:09 +02:00
|
|
|
ImageEditor::~ImageEditor()
|
|
|
|
{
|
|
|
|
if (m_image)
|
|
|
|
m_image->remove_client(*this);
|
|
|
|
}
|
|
|
|
|
2020-05-12 22:22:45 +02:00
|
|
|
void ImageEditor::set_image(RefPtr<Image> image)
|
|
|
|
{
|
2020-05-25 23:48:09 +02:00
|
|
|
if (m_image)
|
|
|
|
m_image->remove_client(*this);
|
|
|
|
|
2020-05-12 22:22:45 +02:00
|
|
|
m_image = move(image);
|
2020-10-18 17:17:49 +00:00
|
|
|
m_active_layer = nullptr;
|
2020-11-13 13:19:24 +00:00
|
|
|
m_undo_stack = make<GUI::UndoStack>();
|
|
|
|
m_undo_stack->push(make<ImageUndoCommand>(*m_image));
|
2020-05-12 22:22:45 +02:00
|
|
|
update();
|
2020-10-18 17:17:49 +00:00
|
|
|
relayout();
|
2020-05-25 23:48:09 +02:00
|
|
|
|
|
|
|
if (m_image)
|
|
|
|
m_image->add_client(*this);
|
2020-05-12 22:22:45 +02:00
|
|
|
}
|
|
|
|
|
2020-10-17 16:47:34 +00:00
|
|
|
void ImageEditor::did_complete_action()
|
|
|
|
{
|
|
|
|
if (!m_image)
|
|
|
|
return;
|
2020-11-13 13:19:24 +00:00
|
|
|
m_undo_stack->finalize_current_combo();
|
|
|
|
m_undo_stack->push(make<ImageUndoCommand>(*m_image));
|
2020-10-17 16:47:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ImageEditor::undo()
|
|
|
|
{
|
|
|
|
if (!m_image)
|
|
|
|
return false;
|
2020-11-13 13:19:24 +00:00
|
|
|
if (m_undo_stack->can_undo()) {
|
|
|
|
m_undo_stack->undo();
|
2020-10-17 16:47:34 +00:00
|
|
|
layers_did_change();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ImageEditor::redo()
|
|
|
|
{
|
|
|
|
if (!m_image)
|
|
|
|
return false;
|
2020-11-13 13:19:24 +00:00
|
|
|
if (m_undo_stack->can_redo()) {
|
|
|
|
m_undo_stack->redo();
|
2020-10-17 16:47:34 +00:00
|
|
|
layers_did_change();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2020-09-25 16:33:36 +02:00
|
|
|
Gfx::StylePainter::paint_transparency_grid(painter, rect(), palette());
|
2020-05-12 22:22:45 +02:00
|
|
|
|
|
|
|
if (m_image) {
|
2020-05-20 22:29:04 +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 22:22:45 +02:00
|
|
|
}
|
2020-05-12 23:00:23 +02:00
|
|
|
|
|
|
|
if (m_active_layer) {
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-10 10:57:59 +02:00
|
|
|
Gfx::FloatRect ImageEditor::layer_rect_to_editor_rect(const Layer& layer, const Gfx::IntRect& layer_rect) const
|
2020-05-22 14:45:14 +02:00
|
|
|
{
|
|
|
|
return image_rect_to_editor_rect(layer_rect.translated(layer.location()));
|
|
|
|
}
|
|
|
|
|
2020-06-10 10:57:59 +02:00
|
|
|
Gfx::FloatRect ImageEditor::image_rect_to_editor_rect(const Gfx::IntRect& 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;
|
|
|
|
}
|
|
|
|
|
2020-06-10 10:57:59 +02:00
|
|
|
Gfx::FloatRect ImageEditor::editor_rect_to_image_rect(const Gfx::IntRect& 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;
|
|
|
|
}
|
|
|
|
|
2020-06-10 10:57:59 +02:00
|
|
|
Gfx::FloatPoint ImageEditor::layer_position_to_editor_position(const Layer& layer, const Gfx::IntPoint& layer_position) const
|
2020-05-22 14:45:14 +02:00
|
|
|
{
|
|
|
|
return image_position_to_editor_position(layer_position.translated(layer.location()));
|
|
|
|
}
|
|
|
|
|
2020-06-10 10:57:59 +02:00
|
|
|
Gfx::FloatPoint ImageEditor::image_position_to_editor_position(const Gfx::IntPoint& 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;
|
|
|
|
}
|
|
|
|
|
2020-06-10 10:57:59 +02:00
|
|
|
Gfx::FloatPoint ImageEditor::editor_position_to_image_position(const Gfx::IntPoint& 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)
|
|
|
|
{
|
|
|
|
if (m_active_tool && m_active_layer)
|
|
|
|
m_active_tool->on_second_paint(*m_active_layer, event);
|
|
|
|
}
|
|
|
|
|
2020-05-20 22:29:04 +02:00
|
|
|
GUI::MouseEvent ImageEditor::event_with_pan_and_scale_applied(const GUI::MouseEvent& event) const
|
|
|
|
{
|
|
|
|
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()
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
GUI::MouseEvent ImageEditor::event_adjusted_for_layer(const GUI::MouseEvent& event, const Layer& 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());
|
|
|
|
image_position.move_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;
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!m_active_layer)
|
2020-05-12 23:44:46 +02:00
|
|
|
return;
|
2020-05-13 21:46:19 +02:00
|
|
|
|
2020-05-12 23:44:46 +02:00
|
|
|
auto layer_event = event_adjusted_for_layer(event, *m_active_layer);
|
2020-05-21 21:57:57 +02:00
|
|
|
auto image_event = event_with_pan_and_scale_applied(event);
|
|
|
|
m_active_tool->on_mousedown(*m_active_layer, layer_event, image_event);
|
2020-05-12 23:44:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImageEditor::mousemove_event(GUI::MouseEvent& event)
|
|
|
|
{
|
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(
|
|
|
|
-delta.x() / m_scale,
|
|
|
|
-delta.y() / m_scale);
|
|
|
|
|
|
|
|
relayout();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-05-12 23:44:46 +02:00
|
|
|
if (!m_active_layer || !m_active_tool)
|
|
|
|
return;
|
|
|
|
auto layer_event = event_adjusted_for_layer(event, *m_active_layer);
|
2020-05-21 21:57:57 +02:00
|
|
|
auto image_event = event_with_pan_and_scale_applied(event);
|
2020-05-20 22:29:04 +02:00
|
|
|
|
2020-05-21 21:57:57 +02:00
|
|
|
m_active_tool->on_mousemove(*m_active_layer, layer_event, image_event);
|
2020-05-12 23:44:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImageEditor::mouseup_event(GUI::MouseEvent& event)
|
|
|
|
{
|
|
|
|
if (!m_active_layer || !m_active_tool)
|
|
|
|
return;
|
|
|
|
auto layer_event = event_adjusted_for_layer(event, *m_active_layer);
|
2020-05-21 21:57:57 +02:00
|
|
|
auto image_event = event_with_pan_and_scale_applied(event);
|
|
|
|
m_active_tool->on_mouseup(*m_active_layer, layer_event, image_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)
|
|
|
|
{
|
|
|
|
if (!m_active_layer || !m_active_tool)
|
|
|
|
return;
|
|
|
|
m_active_tool->on_context_menu(*m_active_layer, event);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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) {
|
|
|
|
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({});
|
|
|
|
}
|
|
|
|
|
|
|
|
layers_did_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;
|
|
|
|
|
|
|
|
if (m_active_tool)
|
|
|
|
m_active_tool->setup(*this);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
if (button == GUI::MouseButton::Left)
|
|
|
|
return m_primary_color;
|
|
|
|
if (button == GUI::MouseButton::Right)
|
|
|
|
return m_secondary_color;
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-05-13 12:47:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Color ImageEditor::color_for(const GUI::MouseEvent& event) const
|
|
|
|
{
|
|
|
|
if (event.buttons() & GUI::MouseButton::Left)
|
|
|
|
return m_primary_color;
|
|
|
|
if (event.buttons() & GUI::MouseButton::Right)
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2020-06-10 10:57:59 +02:00
|
|
|
Layer* ImageEditor::layer_at_editor_position(const Gfx::IntPoint& editor_position)
|
2020-05-13 21:46:19 +02:00
|
|
|
{
|
|
|
|
if (!m_image)
|
|
|
|
return nullptr;
|
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-04-15 22:06:25 -04:00
|
|
|
void ImageEditor::clamped_scale(float scale_delta)
|
2021-03-22 14:33:30 -03:00
|
|
|
{
|
|
|
|
m_scale += scale_delta;
|
|
|
|
if (m_scale < 0.1f)
|
|
|
|
m_scale = 0.1f;
|
|
|
|
if (m_scale > 100.0f)
|
|
|
|
m_scale = 100.0f;
|
2021-04-15 22:06:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImageEditor::scale_centered_on_position(const Gfx::IntPoint& position, float scale_delta)
|
|
|
|
{
|
|
|
|
auto old_scale = m_scale;
|
|
|
|
clamped_scale(scale_delta);
|
2021-03-22 14:33:30 -03:00
|
|
|
|
2021-04-15 00:36:14 -07:00
|
|
|
Gfx::FloatPoint focus_point {
|
|
|
|
m_pan_origin.x() - (position.x() - width() / 2.0f) / old_scale,
|
|
|
|
m_pan_origin.y() - (position.y() - height() / 2.0f) / old_scale
|
|
|
|
};
|
2021-03-22 14:33:30 -03:00
|
|
|
|
|
|
|
m_pan_origin = Gfx::FloatPoint(
|
|
|
|
focus_point.x() - m_scale / old_scale * (focus_point.x() - m_pan_origin.x()),
|
|
|
|
focus_point.y() - m_scale / old_scale * (focus_point.y() - m_pan_origin.y()));
|
|
|
|
|
|
|
|
if (old_scale != m_scale)
|
|
|
|
relayout();
|
|
|
|
}
|
|
|
|
|
2021-04-15 22:06:25 -04:00
|
|
|
void ImageEditor::scale_by(float scale_delta)
|
|
|
|
{
|
|
|
|
if (scale_delta != 0) {
|
|
|
|
clamped_scale(scale_delta);
|
|
|
|
relayout();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-15 21:09:25 -04:00
|
|
|
void ImageEditor::reset_scale_and_position()
|
|
|
|
{
|
|
|
|
if (m_scale != 1.0f)
|
|
|
|
m_scale = 1.0f;
|
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()
|
|
|
|
{
|
|
|
|
if (!image())
|
|
|
|
return;
|
|
|
|
auto& image = *this->image();
|
|
|
|
|
2020-06-10 10:57:59 +02:00
|
|
|
Gfx::IntSize new_size;
|
2020-05-20 22:29:04 +02:00
|
|
|
new_size.set_width(image.size().width() * m_scale);
|
|
|
|
new_size.set_height(image.size().height() * m_scale);
|
|
|
|
m_editor_image_rect.set_size(new_size);
|
|
|
|
|
2020-06-10 10:57:59 +02:00
|
|
|
Gfx::IntPoint new_location;
|
2020-05-20 22:29:04 +02:00
|
|
|
new_location.set_x((width() / 2) - (new_size.width() / 2) - (m_pan_origin.x() * m_scale));
|
|
|
|
new_location.set_y((height() / 2) - (new_size.height() / 2) - (m_pan_origin.y() * m_scale));
|
|
|
|
m_editor_image_rect.set_location(new_location);
|
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2020-05-25 22:49:50 +02:00
|
|
|
void ImageEditor::image_did_change()
|
|
|
|
{
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2020-10-17 16:47:34 +00:00
|
|
|
void ImageEditor::image_select_layer(Layer* layer)
|
|
|
|
{
|
|
|
|
set_active_layer(layer);
|
|
|
|
}
|
|
|
|
|
2020-05-12 22:22:45 +02:00
|
|
|
}
|