ladybird/Libraries/LibWeb/Painting/CanvasPaintable.h
Aliaksandr Kalenik 61114f6d16 LibWeb: Rename PaintContext to DisplayListRecordingContext
PaintContext dates back to a time when display lists didn't exist and it
truly represented "paint context". Renaming it to better align with its
current role.
2025-08-01 05:25:56 -04:00

29 lines
646 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(DisplayListRecordingContext&, PaintPhase) const override;
Layout::CanvasBox const& layout_box() const;
private:
CanvasPaintable(Layout::CanvasBox const&);
};
}