/* * Copyright (c) 2020-2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include #include #include #include #include namespace PixelPaint { class Layer; class ImageClient { public: virtual void image_did_add_layer(size_t) { } virtual void image_did_remove_layer(size_t) { } virtual void image_did_modify_layer(size_t) { } virtual void image_did_modify_layer_stack() { } virtual void image_did_change() { } virtual void image_select_layer(Layer*) { } protected: virtual ~ImageClient() = default; }; class Image : public RefCounted { public: static RefPtr try_create_with_size(Gfx::IntSize const&); static RefPtr try_create_from_file(String const& file_path); static RefPtr try_create_from_bitmap(NonnullRefPtr); size_t layer_count() const { return m_layers.size(); } Layer const& layer(size_t index) const { return m_layers.at(index); } Layer& layer(size_t index) { return m_layers.at(index); } Gfx::IntSize const& size() const { return m_size; } Gfx::IntRect rect() const { return { {}, m_size }; } void add_layer(NonnullRefPtr); RefPtr take_snapshot() const; void restore_snapshot(Image const&); void paint_into(GUI::Painter&, Gfx::IntRect const& dest_rect); void save(String const& file_path) const; void export_bmp(String const& file_path); void export_png(String const& file_path); void move_layer_to_front(Layer&); void move_layer_to_back(Layer&); void move_layer_up(Layer&); void move_layer_down(Layer&); void change_layer_index(size_t old_index, size_t new_index); void remove_layer(Layer&); void select_layer(Layer*); void add_client(ImageClient&); void remove_client(ImageClient&); void layer_did_modify_bitmap(Badge, Layer const&); void layer_did_modify_properties(Badge, Layer const&); size_t index_of(Layer const&) const; private: explicit Image(Gfx::IntSize const&); static RefPtr try_create_from_pixel_paint_file(String const& file_path); void did_change(); void did_modify_layer_stack(); Gfx::IntSize m_size; NonnullRefPtrVector m_layers; HashTable m_clients; }; class ImageUndoCommand : public GUI::Command { public: ImageUndoCommand(Image& image); virtual void undo() override; virtual void redo() override; private: RefPtr m_snapshot; Image& m_image; }; }