2020-03-19 15:07:56 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-03-19 15:07:56 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2020-07-26 10:08:16 -03:00
|
|
|
#include <LibWeb/HTML/HTMLCanvasElement.h>
|
2020-11-22 11:53:01 -03:00
|
|
|
#include <LibWeb/Layout/ReplacedBox.h>
|
2020-03-19 15:07:56 -03:00
|
|
|
|
2020-11-22 11:53:01 -03:00
|
|
|
namespace Web::Layout {
|
2020-03-19 15:07:56 -03:00
|
|
|
|
2020-11-22 11:53:01 -03:00
|
|
|
class CanvasBox : public ReplacedBox {
|
2020-03-19 15:07:56 -03:00
|
|
|
public:
|
2020-11-22 11:53:01 -03:00
|
|
|
CanvasBox(DOM::Document&, HTML::HTMLCanvasElement&, NonnullRefPtr<CSS::StyleProperties>);
|
|
|
|
|
virtual ~CanvasBox() override;
|
2020-03-19 15:07:56 -03:00
|
|
|
|
2020-11-22 09:38:18 -03:00
|
|
|
virtual void prepare_for_replaced_layout() override;
|
2020-06-18 16:35:44 -03:00
|
|
|
virtual void paint(PaintContext&, PaintPhase) override;
|
2020-03-19 15:07:56 -03:00
|
|
|
|
2020-11-22 11:53:01 -03:00
|
|
|
const HTML::HTMLCanvasElement& dom_node() const { return static_cast<const HTML::HTMLCanvasElement&>(ReplacedBox::dom_node()); }
|
2020-03-19 15:07:56 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|