2024-03-27 00:13:16 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2024, MacDue <macdue@dueutil.tech>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/Layout/SVGClipBox.h>
|
|
|
|
|
#include <LibWeb/Painting/SVGPaintable.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::Painting {
|
|
|
|
|
|
|
|
|
|
class SVGClipPaintable : public SVGPaintable {
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_CELL(SVGClipPaintable, SVGPaintable);
|
|
|
|
|
GC_DECLARE_ALLOCATOR(SVGClipPaintable);
|
2024-03-27 00:13:16 +00:00
|
|
|
|
|
|
|
|
public:
|
2024-11-15 04:01:23 +13:00
|
|
|
static GC::Ref<SVGClipPaintable> create(Layout::SVGClipBox const&);
|
2024-03-27 00:13:16 +00:00
|
|
|
|
|
|
|
|
bool forms_unconnected_subtree() const override
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
SVGClipPaintable(Layout::SVGClipBox const&);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|