mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-03 17:02:56 +00:00
Now that StyleProperties is only used to hold computed properties, let's name it ComputedProperties.
26 lines
613 B
C++
26 lines
613 B
C++
/*
|
|
* Copyright (c) 2021, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Forward.h>
|
|
#include <LibWeb/Layout/FormAssociatedLabelableNode.h>
|
|
|
|
namespace Web::Layout {
|
|
|
|
class RadioButton final : public FormAssociatedLabelableNode {
|
|
GC_CELL(RadioButton, FormAssociatedLabelableNode);
|
|
GC_DECLARE_ALLOCATOR(RadioButton);
|
|
|
|
public:
|
|
RadioButton(DOM::Document&, HTML::HTMLInputElement&, CSS::ComputedProperties);
|
|
virtual ~RadioButton() override;
|
|
|
|
private:
|
|
virtual GC::Ptr<Painting::Paintable> create_paintable() const override;
|
|
};
|
|
|
|
}
|