2020-09-11 13:17:39 -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-09-11 13:17:39 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/HTML/HTMLInputElement.h>
|
2022-03-14 20:05:55 -03:00
|
|
|
#include <LibWeb/Layout/FormAssociatedLabelableNode.h>
|
2020-09-11 13:17:39 -03:00
|
|
|
|
2020-11-22 11:53:01 -03:00
|
|
|
namespace Web::Layout {
|
2020-09-11 13:17:39 -03:00
|
|
|
|
2022-03-14 20:05:55 -03:00
|
|
|
class CheckBox : public FormAssociatedLabelableNode {
|
2020-09-11 13:17:39 -03:00
|
|
|
public:
|
2020-11-22 11:53:01 -03:00
|
|
|
CheckBox(DOM::Document&, HTML::HTMLInputElement&, NonnullRefPtr<CSS::StyleProperties>);
|
|
|
|
|
virtual ~CheckBox() override;
|
2020-09-11 13:17:39 -03:00
|
|
|
|
|
|
|
|
private:
|
2022-03-10 18:46:35 -03:00
|
|
|
virtual RefPtr<Painting::Paintable> create_paintable() const override;
|
2020-09-11 13:17:39 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|