Rubber-stamped by Brady Eidson.
[webbrowser.git] / WebCore / svg / SVGFECompositeElement.h
blob1bb6b0505b1e677436ce45fbcfd06791bfa4c836
1 /*
2 Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org>
3 2004, 2005, 2006 Rob Buis <buis@kde.org>
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.
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.
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.
21 #ifndef SVGFECompositeElement_h
22 #define SVGFECompositeElement_h
24 #if ENABLE(SVG) && ENABLE(FILTERS)
25 #include "FEComposite.h"
26 #include "SVGFilterPrimitiveStandardAttributes.h"
28 namespace WebCore {
30 class SVGFECompositeElement : public SVGFilterPrimitiveStandardAttributes {
31 public:
32 SVGFECompositeElement(const QualifiedName&, Document*);
33 virtual ~SVGFECompositeElement();
35 virtual void parseMappedAttribute(MappedAttribute*);
36 virtual bool build(SVGResourceFilter*);
38 private:
39 ANIMATED_PROPERTY_DECLARATIONS(SVGFECompositeElement, SVGNames::feCompositeTagString, SVGNames::inAttrString, String, In1, in1)
40 ANIMATED_PROPERTY_DECLARATIONS(SVGFECompositeElement, SVGNames::feCompositeTagString, SVGNames::in2AttrString, String, In2, in2)
41 ANIMATED_PROPERTY_DECLARATIONS(SVGFECompositeElement, SVGNames::feCompositeTagString, SVGNames::operatorAttrString, int, _operator, _operator)
42 ANIMATED_PROPERTY_DECLARATIONS(SVGFECompositeElement, SVGNames::feCompositeTagString, SVGNames::k1AttrString, float, K1, k1)
43 ANIMATED_PROPERTY_DECLARATIONS(SVGFECompositeElement, SVGNames::feCompositeTagString, SVGNames::k2AttrString, float, K2, k2)
44 ANIMATED_PROPERTY_DECLARATIONS(SVGFECompositeElement, SVGNames::feCompositeTagString, SVGNames::k3AttrString, float, K3, k3)
45 ANIMATED_PROPERTY_DECLARATIONS(SVGFECompositeElement, SVGNames::feCompositeTagString, SVGNames::k4AttrString, float, K4, k4)
48 } // namespace WebCore
50 #endif // ENABLE(SVG)
51 #endif