Prep for moving display-list rasterization out of LibWeb by moving the device-pixel corner radius, corner clip, and anti-aliasing types to LibGfx. Keep BorderRadiiData in LibWeb as the CSS-pixel representation and convert it to Gfx corner radii when recording display-list commands.
36 lines
945 B
C++
36 lines
945 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGfx/AntiAliasing.h>
|
|
#include <LibWeb/Layout/SVGBox.h>
|
|
#include <LibWeb/Painting/PaintableBox.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
class SVGPaintable : public PaintableBox {
|
|
public:
|
|
virtual StringView class_name() const override { return "SVGPaintable"sv; }
|
|
|
|
Layout::SVGBox const& layout_box() const;
|
|
virtual Optional<CSSPixelRect> clip_path_geometry_bounds(Gfx::AffineTransform const& additional_transform) const;
|
|
bool contributes_to_clip_path() const;
|
|
|
|
protected:
|
|
virtual bool is_svg_paintable() const override { return true; }
|
|
|
|
SVGPaintable(Layout::SVGBox const&);
|
|
|
|
virtual CSSPixelRect compute_absolute_rect() const override;
|
|
|
|
Gfx::ShouldAntiAlias should_anti_alias() const;
|
|
};
|
|
|
|
template<>
|
|
inline bool Paintable::fast_is<SVGPaintable>() const { return is_svg_paintable(); }
|
|
|
|
}
|