/* * Copyright (c) 2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::Painting { class ImagePaintable final : public PaintableBox { public: static NonnullRefPtr create(Layout::ImageBox const&); virtual void paint(PaintContext&, PaintPhase) const override; Layout::ImageBox const& layout_box() const; private: ImagePaintable(Layout::ImageBox const&); }; }