2020-01-18 09:38:21 +01:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2020-05-28 20:40:53 +02:00
|
|
|
#pragma once
|
|
|
|
|
2020-03-07 10:32:51 +01:00
|
|
|
#include <LibWeb/DOM/Element.h>
|
2020-11-22 15:53:01 +01:00
|
|
|
#include <LibWeb/Layout/Box.h>
|
2019-10-05 22:07:45 +02:00
|
|
|
|
2020-11-22 15:53:01 +01:00
|
|
|
namespace Web::Layout {
|
2020-03-07 10:27:02 +01:00
|
|
|
|
2020-11-22 15:53:01 +01:00
|
|
|
class ReplacedBox : public Box {
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_CELL(ReplacedBox, Box);
|
2022-10-17 14:41:50 +02:00
|
|
|
|
2019-10-05 22:07:45 +02:00
|
|
|
public:
|
2025-07-26 14:22:50 +02:00
|
|
|
ReplacedBox(DOM::Document&, GC::Ptr<DOM::Element>, GC::Ref<CSS::ComputedProperties>);
|
2020-11-22 15:53:01 +01:00
|
|
|
virtual ~ReplacedBox() override;
|
2019-10-05 22:07:45 +02:00
|
|
|
|
2025-07-26 14:22:50 +02:00
|
|
|
GC::Ptr<DOM::Element const> dom_node() const { return as<DOM::Element>(Node::dom_node()); }
|
|
|
|
GC::Ptr<DOM::Element> dom_node() { return as<DOM::Element>(Node::dom_node()); }
|
2019-10-05 22:07:45 +02:00
|
|
|
|
2020-11-22 13:38:18 +01:00
|
|
|
virtual void prepare_for_replaced_layout() { }
|
|
|
|
|
2020-11-29 15:29:10 +01:00
|
|
|
virtual bool can_have_children() const override { return false; }
|
|
|
|
|
2019-10-05 22:07:45 +02:00
|
|
|
private:
|
2022-03-13 17:21:27 +01:00
|
|
|
virtual bool is_replaced_box() const final { return true; }
|
2019-10-05 22:07:45 +02:00
|
|
|
};
|
2019-10-15 14:19:52 +02:00
|
|
|
|
2022-03-13 17:21:27 +01:00
|
|
|
template<>
|
|
|
|
inline bool Node::fast_is<ReplacedBox>() const { return is_replaced_box(); }
|
|
|
|
|
2019-10-15 14:19:52 +02:00
|
|
|
}
|