mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
27 lines
628 B
C++
27 lines
628 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Forward.h>
|
|
#include <LibWeb/Painting/LabelablePaintable.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
class RadioButtonPaintable final : public LabelablePaintable {
|
|
JS_CELL(RadioButtonPaintable, LabelablePaintable);
|
|
JS_DECLARE_ALLOCATOR(RadioButtonPaintable);
|
|
|
|
public:
|
|
static JS::NonnullGCPtr<RadioButtonPaintable> create(Layout::RadioButton const&);
|
|
|
|
virtual void paint(PaintContext&, PaintPhase) const override;
|
|
|
|
private:
|
|
RadioButtonPaintable(Layout::RadioButton const&);
|
|
};
|
|
|
|
}
|