ladybird/Libraries/LibWeb/Layout/CheckBox.h
Andreas Kling c1cad8fa0e LibWeb: Rename CSS::StyleProperties => CSS::ComputedProperties
Now that StyleProperties is only used to hold computed properties, let's
name it ComputedProperties.
2024-12-22 10:12:49 +01:00

26 lines
598 B
C++

/*
* Copyright (c) 2020, Andreas Kling <andreas@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/Forward.h>
#include <LibWeb/Layout/FormAssociatedLabelableNode.h>
namespace Web::Layout {
class CheckBox final : public FormAssociatedLabelableNode {
GC_CELL(CheckBox, FormAssociatedLabelableNode);
GC_DECLARE_ALLOCATOR(CheckBox);
public:
CheckBox(DOM::Document&, HTML::HTMLInputElement&, CSS::ComputedProperties);
virtual ~CheckBox() override;
private:
virtual GC::Ptr<Painting::Paintable> create_paintable() const override;
};
}