mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
f87041bf3a
Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
29 lines
631 B
C++
29 lines
631 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 {
|
|
GC_CELL(CanvasPaintable, PaintableBox);
|
|
GC_DECLARE_ALLOCATOR(CanvasPaintable);
|
|
|
|
public:
|
|
static GC::Ref<CanvasPaintable> create(Layout::CanvasBox const&);
|
|
|
|
virtual void paint(PaintContext&, PaintPhase) const override;
|
|
|
|
Layout::CanvasBox const& layout_box() const;
|
|
|
|
private:
|
|
CanvasPaintable(Layout::CanvasBox const&);
|
|
};
|
|
|
|
}
|