2024-04-25 20:08:40 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2024, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/Painting/PaintContext.h>
|
|
|
|
|
#include <LibWeb/PixelUnits.h>
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
namespace Web::Painting {
|
|
|
|
|
|
|
|
|
|
class SVGMaskable {
|
|
|
|
|
public:
|
|
|
|
|
virtual ~SVGMaskable() = default;
|
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
virtual GC::Ptr<DOM::Node const> dom_node_of_svg() const = 0;
|
2024-04-25 20:08:40 +02:00
|
|
|
|
|
|
|
|
Optional<CSSPixelRect> get_masking_area_of_svg() const;
|
|
|
|
|
Optional<Gfx::Bitmap::MaskKind> get_mask_type_of_svg() const;
|
2024-11-10 01:50:09 +01:00
|
|
|
RefPtr<Gfx::ImmutableBitmap> calculate_mask_of_svg(PaintContext&, CSSPixelRect const& masking_area) const;
|
2024-04-25 20:08:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|