| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Oliver Hunt <oliver@nerget.com> | 2 * Copyright (C) 2006 Oliver Hunt <oliver@nerget.com> |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 SVGAnimatedString* in1() { return m_in1.get(); } | 41 SVGAnimatedString* in1() { return m_in1.get(); } |
| 42 SVGAnimatedString* in2() { return m_in2.get(); } | 42 SVGAnimatedString* in2() { return m_in2.get(); } |
| 43 SVGAnimatedEnumeration<ChannelSelectorType>* xChannelSelector() { return m_x
ChannelSelector.get(); } | 43 SVGAnimatedEnumeration<ChannelSelectorType>* xChannelSelector() { return m_x
ChannelSelector.get(); } |
| 44 SVGAnimatedEnumeration<ChannelSelectorType>* yChannelSelector() { return m_y
ChannelSelector.get(); } | 44 SVGAnimatedEnumeration<ChannelSelectorType>* yChannelSelector() { return m_y
ChannelSelector.get(); } |
| 45 | 45 |
| 46 DECLARE_VIRTUAL_TRACE(); | 46 DECLARE_VIRTUAL_TRACE(); |
| 47 | 47 |
| 48 private: | 48 private: |
| 49 explicit SVGFEDisplacementMapElement(Document&); | 49 explicit SVGFEDisplacementMapElement(Document&); |
| 50 | 50 |
| 51 bool isSupportedAttribute(const QualifiedName&); | |
| 52 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& at
trName) override; | 51 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& at
trName) override; |
| 53 virtual void svgAttributeChanged(const QualifiedName&) override; | 52 virtual void svgAttributeChanged(const QualifiedName&) override; |
| 54 virtual PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter
*) override; | 53 virtual PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter
*) override; |
| 55 | 54 |
| 56 RefPtrWillBeMember<SVGAnimatedNumber> m_scale; | 55 RefPtrWillBeMember<SVGAnimatedNumber> m_scale; |
| 57 RefPtrWillBeMember<SVGAnimatedString> m_in1; | 56 RefPtrWillBeMember<SVGAnimatedString> m_in1; |
| 58 RefPtrWillBeMember<SVGAnimatedString> m_in2; | 57 RefPtrWillBeMember<SVGAnimatedString> m_in2; |
| 59 RefPtrWillBeMember<SVGAnimatedEnumeration<ChannelSelectorType>> m_xChannelSe
lector; | 58 RefPtrWillBeMember<SVGAnimatedEnumeration<ChannelSelectorType>> m_xChannelSe
lector; |
| 60 RefPtrWillBeMember<SVGAnimatedEnumeration<ChannelSelectorType>> m_yChannelSe
lector; | 59 RefPtrWillBeMember<SVGAnimatedEnumeration<ChannelSelectorType>> m_yChannelSe
lector; |
| 61 }; | 60 }; |
| 62 | 61 |
| 63 } // namespace blink | 62 } // namespace blink |
| 64 | 63 |
| 65 #endif // SVGFEDisplacementMapElement_h | 64 #endif // SVGFEDisplacementMapElement_h |
| OLD | NEW |