/* * Copyright (c) 2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::Painting { class RadioButtonPaintable final : public LabelablePaintable { JS_CELL(RadioButtonPaintable, LabelablePaintable); public: static JS::NonnullGCPtr create(Layout::RadioButton const&); virtual void paint(PaintContext&, PaintPhase) const override; private: RadioButtonPaintable(Layout::RadioButton const&); }; }