OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "config.h" | 21 #include "config.h" |
22 | 22 |
23 #include "core/svg/SVGFETileElement.h" | 23 #include "core/svg/SVGFETileElement.h" |
24 | 24 |
25 #include "SVGNames.h" | 25 #include "SVGNames.h" |
26 #include "platform/graphics/filters/FilterEffect.h" | 26 #include "platform/graphics/filters/FilterEffect.h" |
27 #include "core/svg/graphics/filters/SVGFilterBuilder.h" | 27 #include "core/svg/graphics/filters/SVGFilterBuilder.h" |
28 | 28 |
29 namespace WebCore { | 29 namespace WebCore { |
30 | 30 |
31 SVGFETileElement::SVGFETileElement(Document& document) | 31 inline SVGFETileElement::SVGFETileElement(Document& document) |
32 : SVGFilterPrimitiveStandardAttributes(SVGNames::feTileTag, document) | 32 : SVGFilterPrimitiveStandardAttributes(SVGNames::feTileTag, document) |
33 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create(
))) | 33 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create(
))) |
34 { | 34 { |
35 ScriptWrappable::init(this); | 35 ScriptWrappable::init(this); |
36 addToPropertyMap(m_in1); | 36 addToPropertyMap(m_in1); |
37 } | 37 } |
38 | 38 |
| 39 DEFINE_NODE_FACTORY(SVGFETileElement) |
| 40 |
39 bool SVGFETileElement::isSupportedAttribute(const QualifiedName& attrName) | 41 bool SVGFETileElement::isSupportedAttribute(const QualifiedName& attrName) |
40 { | 42 { |
41 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); | 43 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |
42 if (supportedAttributes.isEmpty()) | 44 if (supportedAttributes.isEmpty()) |
43 supportedAttributes.add(SVGNames::inAttr); | 45 supportedAttributes.add(SVGNames::inAttr); |
44 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); | 46 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); |
45 } | 47 } |
46 | 48 |
47 void SVGFETileElement::parseAttribute(const QualifiedName& name, const AtomicStr
ing& value) | 49 void SVGFETileElement::parseAttribute(const QualifiedName& name, const AtomicStr
ing& value) |
48 { | 50 { |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 | 86 |
85 if (!input1) | 87 if (!input1) |
86 return nullptr; | 88 return nullptr; |
87 | 89 |
88 RefPtr<FilterEffect> effect = FETile::create(filter); | 90 RefPtr<FilterEffect> effect = FETile::create(filter); |
89 effect->inputEffects().append(input1); | 91 effect->inputEffects().append(input1); |
90 return effect.release(); | 92 return effect.release(); |
91 } | 93 } |
92 | 94 |
93 } | 95 } |
OLD | NEW |