2020-03-19 19:07:56 +01:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2020, Andreas Kling <andreas@ladybird.org>
|
2020-03-19 19:07:56 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-03-19 19:07:56 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-07-26 15:08:16 +02:00
|
|
|
#include <LibWeb/HTML/HTMLCanvasElement.h>
|
2020-11-22 15:53:01 +01:00
|
|
|
#include <LibWeb/Layout/ReplacedBox.h>
|
2020-03-19 19:07:56 +01:00
|
|
|
|
2020-11-22 15:53:01 +01:00
|
|
|
namespace Web::Layout {
|
2020-03-19 19:07:56 +01:00
|
|
|
|
2023-01-11 14:01:33 +01:00
|
|
|
class CanvasBox final : public ReplacedBox {
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_CELL(CanvasBox, ReplacedBox);
|
|
|
|
GC_DECLARE_ALLOCATOR(CanvasBox);
|
2022-10-17 14:41:50 +02:00
|
|
|
|
2020-03-19 19:07:56 +01:00
|
|
|
public:
|
2024-12-20 16:35:12 +01:00
|
|
|
CanvasBox(DOM::Document&, HTML::HTMLCanvasElement&, GC::Ref<CSS::ComputedProperties>);
|
2020-11-22 15:53:01 +01:00
|
|
|
virtual ~CanvasBox() override;
|
2020-03-19 19:07:56 +01:00
|
|
|
|
2020-11-22 13:38:18 +01:00
|
|
|
virtual void prepare_for_replaced_layout() override;
|
2020-03-19 19:07:56 +01:00
|
|
|
|
2020-11-22 15:53:01 +01:00
|
|
|
const HTML::HTMLCanvasElement& dom_node() const { return static_cast<const HTML::HTMLCanvasElement&>(ReplacedBox::dom_node()); }
|
2022-03-10 14:02:25 +01:00
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
virtual GC::Ptr<Painting::Paintable> create_paintable() const override;
|
2020-03-19 19:07:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|