Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGFECompositeElement.h
1 /*
2  * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org>
3  * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public License
16  * along with this library; see the file COPYING.LIB.  If not, write to
17  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20
21 #ifndef SVGFECompositeElement_h
22 #define SVGFECompositeElement_h
23
24 #include "core/svg/SVGAnimatedEnumeration.h"
25 #include "core/svg/SVGAnimatedNumber.h"
26 #include "core/svg/SVGFilterPrimitiveStandardAttributes.h"
27 #include "platform/graphics/filters/FEComposite.h"
28
29 namespace blink {
30
31 template<> const SVGEnumerationStringEntries& getStaticStringEntries<CompositeOperationType>();
32
33 class SVGFECompositeElement FINAL : public SVGFilterPrimitiveStandardAttributes {
34     DEFINE_WRAPPERTYPEINFO();
35 public:
36     DECLARE_NODE_FACTORY(SVGFECompositeElement);
37
38     SVGAnimatedNumber* k1() { return m_k1.get(); }
39     SVGAnimatedNumber* k2() { return m_k2.get(); }
40     SVGAnimatedNumber* k3() { return m_k3.get(); }
41     SVGAnimatedNumber* k4() { return m_k4.get(); }
42     SVGAnimatedString* in1() { return m_in1.get(); }
43     SVGAnimatedString* in2() { return m_in2.get(); }
44     SVGAnimatedEnumeration<CompositeOperationType>* svgOperator() { return m_svgOperator.get(); }
45
46 private:
47     explicit SVGFECompositeElement(Document&);
48
49     bool isSupportedAttribute(const QualifiedName&);
50     virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
51     virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) OVERRIDE;
52     virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
53     virtual PassRefPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) OVERRIDE;
54
55     RefPtr<SVGAnimatedNumber> m_k1;
56     RefPtr<SVGAnimatedNumber> m_k2;
57     RefPtr<SVGAnimatedNumber> m_k3;
58     RefPtr<SVGAnimatedNumber> m_k4;
59     RefPtr<SVGAnimatedString> m_in1;
60     RefPtr<SVGAnimatedString> m_in2;
61     RefPtr<SVGAnimatedEnumeration<CompositeOperationType> > m_svgOperator;
62 };
63
64 } // namespace blink
65
66 #endif // SVGFECompositeElement_h