ladybird/Userland/Libraries/LibWeb/Painting/CheckBoxPaintable.h
2024-04-09 09:13:06 +02:00

30 lines
700 B
C++

/*
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/Layout/CheckBox.h>
#include <LibWeb/Painting/LabelablePaintable.h>
namespace Web::Painting {
class CheckBoxPaintable final : public LabelablePaintable {
JS_CELL(CheckBoxPaintable, LabelablePaintable);
JS_DECLARE_ALLOCATOR(CheckBoxPaintable);
public:
static JS::NonnullGCPtr<CheckBoxPaintable> create(Layout::CheckBox const&);
Layout::CheckBox const& layout_box() const;
Layout::CheckBox& layout_box();
virtual void paint(PaintContext&, PaintPhase) const override;
private:
CheckBoxPaintable(Layout::CheckBox const&);
};
}