| 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, 2006 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 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 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 #include "core/svg/SVGAnimatedEnumeration.h" | 24 #include "core/svg/SVGAnimatedEnumeration.h" |
| 25 #include "core/svg/SVGAnimatedNumber.h" | 25 #include "core/svg/SVGAnimatedNumber.h" |
| 26 #include "core/svg/SVGFilterPrimitiveStandardAttributes.h" | 26 #include "core/svg/SVGFilterPrimitiveStandardAttributes.h" |
| 27 #include "platform/graphics/filters/FEComposite.h" | 27 #include "platform/graphics/filters/FEComposite.h" |
| 28 | 28 |
| 29 namespace blink { | 29 namespace blink { |
| 30 | 30 |
| 31 template<> const SVGEnumerationStringEntries& getStaticStringEntries<CompositeOp
erationType>(); | 31 template<> const SVGEnumerationStringEntries& getStaticStringEntries<CompositeOp
erationType>(); |
| 32 | 32 |
| 33 class SVGFECompositeElement FINAL : public SVGFilterPrimitiveStandardAttributes
{ | 33 class SVGFECompositeElement final : public SVGFilterPrimitiveStandardAttributes
{ |
| 34 DEFINE_WRAPPERTYPEINFO(); | 34 DEFINE_WRAPPERTYPEINFO(); |
| 35 public: | 35 public: |
| 36 DECLARE_NODE_FACTORY(SVGFECompositeElement); | 36 DECLARE_NODE_FACTORY(SVGFECompositeElement); |
| 37 | 37 |
| 38 SVGAnimatedNumber* k1() { return m_k1.get(); } | 38 SVGAnimatedNumber* k1() { return m_k1.get(); } |
| 39 SVGAnimatedNumber* k2() { return m_k2.get(); } | 39 SVGAnimatedNumber* k2() { return m_k2.get(); } |
| 40 SVGAnimatedNumber* k3() { return m_k3.get(); } | 40 SVGAnimatedNumber* k3() { return m_k3.get(); } |
| 41 SVGAnimatedNumber* k4() { return m_k4.get(); } | 41 SVGAnimatedNumber* k4() { return m_k4.get(); } |
| 42 SVGAnimatedString* in1() { return m_in1.get(); } | 42 SVGAnimatedString* in1() { return m_in1.get(); } |
| 43 SVGAnimatedString* in2() { return m_in2.get(); } | 43 SVGAnimatedString* in2() { return m_in2.get(); } |
| 44 SVGAnimatedEnumeration<CompositeOperationType>* svgOperator() { return m_svg
Operator.get(); } | 44 SVGAnimatedEnumeration<CompositeOperationType>* svgOperator() { return m_svg
Operator.get(); } |
| 45 | 45 |
| 46 private: | 46 private: |
| 47 explicit SVGFECompositeElement(Document&); | 47 explicit SVGFECompositeElement(Document&); |
| 48 | 48 |
| 49 bool isSupportedAttribute(const QualifiedName&); | 49 bool isSupportedAttribute(const QualifiedName&); |
| 50 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 50 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; |
| 51 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) O
VERRIDE; | 51 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) o
verride; |
| 52 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; | 52 virtual void svgAttributeChanged(const QualifiedName&) override; |
| 53 virtual PassRefPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) OVERRIDE; | 53 virtual PassRefPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) override; |
| 54 | 54 |
| 55 RefPtr<SVGAnimatedNumber> m_k1; | 55 RefPtr<SVGAnimatedNumber> m_k1; |
| 56 RefPtr<SVGAnimatedNumber> m_k2; | 56 RefPtr<SVGAnimatedNumber> m_k2; |
| 57 RefPtr<SVGAnimatedNumber> m_k3; | 57 RefPtr<SVGAnimatedNumber> m_k3; |
| 58 RefPtr<SVGAnimatedNumber> m_k4; | 58 RefPtr<SVGAnimatedNumber> m_k4; |
| 59 RefPtr<SVGAnimatedString> m_in1; | 59 RefPtr<SVGAnimatedString> m_in1; |
| 60 RefPtr<SVGAnimatedString> m_in2; | 60 RefPtr<SVGAnimatedString> m_in2; |
| 61 RefPtr<SVGAnimatedEnumeration<CompositeOperationType> > m_svgOperator; | 61 RefPtr<SVGAnimatedEnumeration<CompositeOperationType> > m_svgOperator; |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 } // namespace blink | 64 } // namespace blink |
| 65 | 65 |
| 66 #endif // SVGFECompositeElement_h | 66 #endif // SVGFECompositeElement_h |
| OLD | NEW |