mirror of
https://github.com/darlinghq/darling-WebCore.git
synced 2024-11-23 20:39:40 +00:00
121 lines
3.9 KiB
C++
121 lines
3.9 KiB
C++
/*
|
|
* Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org>
|
|
* Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public License
|
|
* along with this library; see the file COPYING.LIB. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "FETurbulence.h"
|
|
#include "SVGAnimatedEnumeration.h"
|
|
#include "SVGAnimatedInteger.h"
|
|
#include "SVGAnimatedNumber.h"
|
|
#include "SVGFilterPrimitiveStandardAttributes.h"
|
|
|
|
namespace WebCore {
|
|
|
|
enum SVGStitchOptions {
|
|
SVG_STITCHTYPE_UNKNOWN = 0,
|
|
SVG_STITCHTYPE_STITCH = 1,
|
|
SVG_STITCHTYPE_NOSTITCH = 2
|
|
};
|
|
|
|
template<>
|
|
struct SVGPropertyTraits<SVGStitchOptions> {
|
|
static unsigned highestEnumValue() { return SVG_STITCHTYPE_NOSTITCH; }
|
|
|
|
static String toString(SVGStitchOptions type)
|
|
{
|
|
switch (type) {
|
|
case SVG_STITCHTYPE_UNKNOWN:
|
|
return emptyString();
|
|
case SVG_STITCHTYPE_STITCH:
|
|
return ASCIILiteral("stitch");
|
|
case SVG_STITCHTYPE_NOSTITCH:
|
|
return ASCIILiteral("noStitch");
|
|
}
|
|
|
|
ASSERT_NOT_REACHED();
|
|
return emptyString();
|
|
}
|
|
|
|
static SVGStitchOptions fromString(const String& value)
|
|
{
|
|
if (value == "stitch")
|
|
return SVG_STITCHTYPE_STITCH;
|
|
if (value == "noStitch")
|
|
return SVG_STITCHTYPE_NOSTITCH;
|
|
return SVG_STITCHTYPE_UNKNOWN;
|
|
}
|
|
};
|
|
|
|
template<>
|
|
struct SVGPropertyTraits<TurbulenceType> {
|
|
static unsigned highestEnumValue() { return FETURBULENCE_TYPE_TURBULENCE; }
|
|
|
|
static String toString(TurbulenceType type)
|
|
{
|
|
switch (type) {
|
|
case FETURBULENCE_TYPE_UNKNOWN:
|
|
return emptyString();
|
|
case FETURBULENCE_TYPE_FRACTALNOISE:
|
|
return ASCIILiteral("fractalNoise");
|
|
case FETURBULENCE_TYPE_TURBULENCE:
|
|
return ASCIILiteral("turbulence");
|
|
}
|
|
|
|
ASSERT_NOT_REACHED();
|
|
return emptyString();
|
|
}
|
|
|
|
static TurbulenceType fromString(const String& value)
|
|
{
|
|
if (value == "fractalNoise")
|
|
return FETURBULENCE_TYPE_FRACTALNOISE;
|
|
if (value == "turbulence")
|
|
return FETURBULENCE_TYPE_TURBULENCE;
|
|
return FETURBULENCE_TYPE_UNKNOWN;
|
|
}
|
|
};
|
|
|
|
class SVGFETurbulenceElement final : public SVGFilterPrimitiveStandardAttributes {
|
|
public:
|
|
static Ref<SVGFETurbulenceElement> create(const QualifiedName&, Document&);
|
|
|
|
private:
|
|
SVGFETurbulenceElement(const QualifiedName&, Document&);
|
|
|
|
void parseAttribute(const QualifiedName&, const AtomicString&) override;
|
|
bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& attrName) override;
|
|
void svgAttributeChanged(const QualifiedName&) override;
|
|
RefPtr<FilterEffect> build(SVGFilterBuilder*, Filter&) override;
|
|
|
|
static const AtomicString& baseFrequencyXIdentifier();
|
|
static const AtomicString& baseFrequencyYIdentifier();
|
|
|
|
BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGFETurbulenceElement)
|
|
DECLARE_ANIMATED_NUMBER(BaseFrequencyX, baseFrequencyX)
|
|
DECLARE_ANIMATED_NUMBER(BaseFrequencyY, baseFrequencyY)
|
|
DECLARE_ANIMATED_INTEGER(NumOctaves, numOctaves)
|
|
DECLARE_ANIMATED_NUMBER(Seed, seed)
|
|
DECLARE_ANIMATED_ENUMERATION(StitchTiles, stitchTiles, SVGStitchOptions)
|
|
DECLARE_ANIMATED_ENUMERATION(Type, type, TurbulenceType)
|
|
END_DECLARE_ANIMATED_PROPERTIES
|
|
};
|
|
|
|
} // namespace WebCore
|