mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
47 lines
1.5 KiB
C++
47 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2025, Pavel Shliak <shlyakpavel@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/SVG/SVGElement.h>
|
|
#include <LibWeb/SVG/SVGFilterPrimitiveStandardAttributes.h>
|
|
|
|
namespace Web::SVG {
|
|
|
|
class SVGAnimatedEnumeration;
|
|
class SVGAnimatedString;
|
|
|
|
// https://www.w3.org/TR/filter-effects-1/#InterfaceSVGFEColorMatrixElement
|
|
class SVGFEColorMatrixElement final
|
|
: public SVGElement
|
|
, public SVGFilterPrimitiveStandardAttributes<SVGFEColorMatrixElement> {
|
|
WEB_PLATFORM_OBJECT(SVGFEColorMatrixElement, SVGElement);
|
|
GC_DECLARE_ALLOCATOR(SVGFEColorMatrixElement);
|
|
|
|
public:
|
|
virtual ~SVGFEColorMatrixElement() override = default;
|
|
|
|
static constexpr unsigned short SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0;
|
|
static constexpr unsigned short SVG_FECOLORMATRIX_TYPE_MATRIX = 1;
|
|
static constexpr unsigned short SVG_FECOLORMATRIX_TYPE_SATURATE = 2;
|
|
static constexpr unsigned short SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3;
|
|
static constexpr unsigned short SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4;
|
|
|
|
// IDL attributes
|
|
GC::Ref<SVGAnimatedString> in1();
|
|
GC::Ref<SVGAnimatedEnumeration> type() const;
|
|
GC::Ref<SVGAnimatedString> values();
|
|
|
|
private:
|
|
SVGFEColorMatrixElement(DOM::Document&, DOM::QualifiedName);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
GC::Ptr<SVGAnimatedString> m_in1;
|
|
GC::Ptr<SVGAnimatedString> m_values;
|
|
};
|
|
|
|
}
|