mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
29 lines
640 B
C++
29 lines
640 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Layout/CanvasBox.h>
|
|
#include <LibWeb/Painting/PaintableBox.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
class CanvasPaintable final : public PaintableBox {
|
|
JS_CELL(CanvasPaintable, PaintableBox);
|
|
JS_DECLARE_ALLOCATOR(CanvasPaintable);
|
|
|
|
public:
|
|
static JS::NonnullGCPtr<CanvasPaintable> create(Layout::CanvasBox const&);
|
|
|
|
virtual void paint(PaintContext&, PaintPhase) const override;
|
|
|
|
Layout::CanvasBox const& layout_box() const;
|
|
|
|
private:
|
|
CanvasPaintable(Layout::CanvasBox const&);
|
|
};
|
|
|
|
}
|