| 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 23 matching lines...) Expand all Loading... |
| 34 BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGFETileElement) | 34 BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGFETileElement) |
| 35 REGISTER_PARENT_ANIMATED_PROPERTIES(SVGFilterPrimitiveStandardAttributes) | 35 REGISTER_PARENT_ANIMATED_PROPERTIES(SVGFilterPrimitiveStandardAttributes) |
| 36 END_REGISTER_ANIMATED_PROPERTIES | 36 END_REGISTER_ANIMATED_PROPERTIES |
| 37 | 37 |
| 38 inline SVGFETileElement::SVGFETileElement(Document& document) | 38 inline SVGFETileElement::SVGFETileElement(Document& document) |
| 39 : SVGFilterPrimitiveStandardAttributes(SVGNames::feTileTag, document) | 39 : SVGFilterPrimitiveStandardAttributes(SVGNames::feTileTag, document) |
| 40 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create(
))) | 40 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create(
))) |
| 41 { | 41 { |
| 42 ScriptWrappable::init(this); | 42 ScriptWrappable::init(this); |
| 43 addToPropertyMap(m_in1); | 43 addToPropertyMap(m_in1); |
| 44 registerAnimatedPropertiesForSVGFETileElement(); | |
| 45 } | 44 } |
| 46 | 45 |
| 47 PassRefPtr<SVGFETileElement> SVGFETileElement::create(Document& document) | 46 PassRefPtr<SVGFETileElement> SVGFETileElement::create(Document& document) |
| 48 { | 47 { |
| 49 return adoptRef(new SVGFETileElement(document)); | 48 return adoptRef(new SVGFETileElement(document)); |
| 50 } | 49 } |
| 51 | 50 |
| 52 bool SVGFETileElement::isSupportedAttribute(const QualifiedName& attrName) | 51 bool SVGFETileElement::isSupportedAttribute(const QualifiedName& attrName) |
| 53 { | 52 { |
| 54 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); | 53 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 | 96 |
| 98 if (!input1) | 97 if (!input1) |
| 99 return nullptr; | 98 return nullptr; |
| 100 | 99 |
| 101 RefPtr<FilterEffect> effect = FETile::create(filter); | 100 RefPtr<FilterEffect> effect = FETile::create(filter); |
| 102 effect->inputEffects().append(input1); | 101 effect->inputEffects().append(input1); |
| 103 return effect.release(); | 102 return effect.release(); |
| 104 } | 103 } |
| 105 | 104 |
| 106 } | 105 } |
| OLD | NEW |