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 16 matching lines...) Expand all Loading... |
27 #include "core/svg/graphics/filters/SVGFilterBuilder.h" | 27 #include "core/svg/graphics/filters/SVGFilterBuilder.h" |
28 | 28 |
29 namespace blink { | 29 namespace blink { |
30 | 30 |
31 inline SVGFEOffsetElement::SVGFEOffsetElement(Document& document) | 31 inline SVGFEOffsetElement::SVGFEOffsetElement(Document& document) |
32 : SVGFilterPrimitiveStandardAttributes(SVGNames::feOffsetTag, document) | 32 : SVGFilterPrimitiveStandardAttributes(SVGNames::feOffsetTag, document) |
33 , m_dx(SVGAnimatedNumber::create(this, SVGNames::dxAttr, SVGNumber::create()
)) | 33 , m_dx(SVGAnimatedNumber::create(this, SVGNames::dxAttr, SVGNumber::create()
)) |
34 , m_dy(SVGAnimatedNumber::create(this, SVGNames::dyAttr, SVGNumber::create()
)) | 34 , m_dy(SVGAnimatedNumber::create(this, SVGNames::dyAttr, SVGNumber::create()
)) |
35 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create(
))) | 35 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create(
))) |
36 { | 36 { |
37 ScriptWrappable::init(this); | |
38 | |
39 addToPropertyMap(m_dx); | 37 addToPropertyMap(m_dx); |
40 addToPropertyMap(m_dy); | 38 addToPropertyMap(m_dy); |
41 addToPropertyMap(m_in1); | 39 addToPropertyMap(m_in1); |
42 } | 40 } |
43 | 41 |
44 DEFINE_NODE_FACTORY(SVGFEOffsetElement) | 42 DEFINE_NODE_FACTORY(SVGFEOffsetElement) |
45 | 43 |
46 bool SVGFEOffsetElement::isSupportedAttribute(const QualifiedName& attrName) | 44 bool SVGFEOffsetElement::isSupportedAttribute(const QualifiedName& attrName) |
47 { | 45 { |
48 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); | 46 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->curr
entValue()->value())); | 95 FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->curr
entValue()->value())); |
98 | 96 |
99 if (!input1) | 97 if (!input1) |
100 return nullptr; | 98 return nullptr; |
101 | 99 |
102 RefPtr<FilterEffect> effect = FEOffset::create(filter, m_dx->currentValue()-
>value(), m_dy->currentValue()->value()); | 100 RefPtr<FilterEffect> effect = FEOffset::create(filter, m_dx->currentValue()-
>value(), m_dy->currentValue()->value()); |
103 effect->inputEffects().append(input1); | 101 effect->inputEffects().append(input1); |
104 return effect.release(); | 102 return effect.release(); |
105 } | 103 } |
106 | 104 |
107 } | 105 } // namespace blink |
OLD | NEW |