mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 01:32:14 -05:00
38 lines
1 KiB
C++
38 lines
1 KiB
C++
/*
|
|
* Copyright (c) 2024, Kostya Farber <kostya.farber@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Forward.h>
|
|
#include <LibWeb/Layout/BlockContainer.h>
|
|
#include <LibWeb/Painting/FieldSetPaintable.h>
|
|
namespace Web::Layout {
|
|
|
|
class FieldSetBox final : public BlockContainer {
|
|
GC_CELL(FieldSetBox, BlockContainer);
|
|
GC_DECLARE_ALLOCATOR(FieldSetBox);
|
|
|
|
public:
|
|
FieldSetBox(DOM::Document&, DOM::Element&, GC::Ref<CSS::ComputedProperties>);
|
|
virtual ~FieldSetBox() override;
|
|
|
|
DOM::Element& dom_node() { return static_cast<DOM::Element&>(*BlockContainer::dom_node()); }
|
|
DOM::Element const& dom_node() const { return static_cast<DOM::Element const&>(*BlockContainer::dom_node()); }
|
|
|
|
bool has_rendered_legend() const;
|
|
virtual GC::Ptr<Painting::Paintable> create_paintable() const override;
|
|
|
|
private:
|
|
virtual bool is_fieldset_box() const final
|
|
{
|
|
return true;
|
|
}
|
|
};
|
|
|
|
template<>
|
|
inline bool Node::fast_is<FieldSetBox>() const { return is_fieldset_box(); }
|
|
|
|
}
|