12345678910111213141516171819202122232425262728293031 |
- /*
- * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <LibWeb/Layout/SVGBox.h>
- #include <LibWeb/Painting/PaintableBox.h>
- namespace Web::Painting {
- class SVGPaintable : public PaintableBox {
- JS_CELL(SVGPaintable, PaintableBox);
- public:
- Layout::SVGBox const& layout_box() const;
- protected:
- virtual bool is_svg_paintable() const override { return true; }
- SVGPaintable(Layout::SVGBox const&);
- virtual CSSPixelRect compute_absolute_rect() const override;
- };
- template<>
- inline bool Paintable::fast_is<SVGPaintable>() const { return is_svg_paintable(); }
- }
|