/* * Copyright (c) 2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::Painting { class MarkerPaintable final : public PaintableBox { public: static NonnullRefPtr create(Layout::ListItemMarkerBox const&); virtual void paint(PaintContext&, PaintPhase) const override; Layout::ListItemMarkerBox const& layout_box() const; private: MarkerPaintable(Layout::ListItemMarkerBox const&); }; }