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 11 matching lines...) Expand all Loading... |
22 | 22 |
23 #include "core/svg/SVGFEOffsetElement.h" | 23 #include "core/svg/SVGFEOffsetElement.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/SVGElementInstance.h" | 27 #include "core/svg/SVGElementInstance.h" |
28 #include "core/svg/graphics/filters/SVGFilterBuilder.h" | 28 #include "core/svg/graphics/filters/SVGFilterBuilder.h" |
29 | 29 |
30 namespace WebCore { | 30 namespace WebCore { |
31 | 31 |
32 // Animated property definitions | |
33 | |
34 BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGFEOffsetElement) | |
35 REGISTER_PARENT_ANIMATED_PROPERTIES(SVGFilterPrimitiveStandardAttributes) | |
36 END_REGISTER_ANIMATED_PROPERTIES | |
37 | |
38 inline SVGFEOffsetElement::SVGFEOffsetElement(Document& document) | 32 inline SVGFEOffsetElement::SVGFEOffsetElement(Document& document) |
39 : SVGFilterPrimitiveStandardAttributes(SVGNames::feOffsetTag, document) | 33 : SVGFilterPrimitiveStandardAttributes(SVGNames::feOffsetTag, document) |
40 , m_dx(SVGAnimatedNumber::create(this, SVGNames::dxAttr, SVGNumber::create()
)) | 34 , m_dx(SVGAnimatedNumber::create(this, SVGNames::dxAttr, SVGNumber::create()
)) |
41 , m_dy(SVGAnimatedNumber::create(this, SVGNames::dyAttr, SVGNumber::create()
)) | 35 , m_dy(SVGAnimatedNumber::create(this, SVGNames::dyAttr, SVGNumber::create()
)) |
42 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create(
))) | 36 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create(
))) |
43 { | 37 { |
44 ScriptWrappable::init(this); | 38 ScriptWrappable::init(this); |
45 | 39 |
46 addToPropertyMap(m_dx); | 40 addToPropertyMap(m_dx); |
47 addToPropertyMap(m_dy); | 41 addToPropertyMap(m_dy); |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 | 102 |
109 if (!input1) | 103 if (!input1) |
110 return nullptr; | 104 return nullptr; |
111 | 105 |
112 RefPtr<FilterEffect> effect = FEOffset::create(filter, m_dx->currentValue()-
>value(), m_dy->currentValue()->value()); | 106 RefPtr<FilterEffect> effect = FEOffset::create(filter, m_dx->currentValue()-
>value(), m_dy->currentValue()->value()); |
113 effect->inputEffects().append(input1); | 107 effect->inputEffects().append(input1); |
114 return effect.release(); | 108 return effect.release(); |
115 } | 109 } |
116 | 110 |
117 } | 111 } |
OLD | NEW |