Home | History | Annotate | Download | only in svg
      1 /*
      2  * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann (at) kde.org>
      3  * Copyright (C) 2004, 2005, 2006 Rob Buis <buis (at) 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 WebCore {
     30 
     31 template<> const SVGEnumerationStringEntries& getStaticStringEntries<CompositeOperationType>();
     32 
     33 class SVGFECompositeElement FINAL : public SVGFilterPrimitiveStandardAttributes {
     34 public:
     35     DECLARE_NODE_FACTORY(SVGFECompositeElement);
     36 
     37     SVGAnimatedNumber* k1() { return m_k1.get(); }
     38     SVGAnimatedNumber* k2() { return m_k2.get(); }
     39     SVGAnimatedNumber* k3() { return m_k3.get(); }
     40     SVGAnimatedNumber* k4() { return m_k4.get(); }
     41     SVGAnimatedString* in1() { return m_in1.get(); }
     42     SVGAnimatedString* in2() { return m_in2.get(); }
     43     SVGAnimatedEnumeration<CompositeOperationType>* svgOperator() { return m_svgOperator.get(); }
     44 
     45 private:
     46     explicit SVGFECompositeElement(Document&);
     47 
     48     bool isSupportedAttribute(const QualifiedName&);
     49     virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
     50     virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) OVERRIDE;
     51     virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
     52     virtual PassRefPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) OVERRIDE;
     53 
     54     RefPtr<SVGAnimatedNumber> m_k1;
     55     RefPtr<SVGAnimatedNumber> m_k2;
     56     RefPtr<SVGAnimatedNumber> m_k3;
     57     RefPtr<SVGAnimatedNumber> m_k4;
     58     RefPtr<SVGAnimatedString> m_in1;
     59     RefPtr<SVGAnimatedString> m_in2;
     60     RefPtr<SVGAnimatedEnumeration<CompositeOperationType> > m_svgOperator;
     61 };
     62 
     63 } // namespace WebCore
     64 
     65 #endif
     66