Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGFEGaussianBlurElement.cpp
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 #include "config.h"
22
23 #include "core/svg/SVGFEGaussianBlurElement.h"
24
25 #include "SVGNames.h"
26 #include "platform/graphics/filters/FilterEffect.h"
27 #include "core/svg/SVGElementInstance.h"
28 #include "core/svg/SVGParserUtilities.h"
29 #include "core/svg/graphics/filters/SVGFilterBuilder.h"
30
31 namespace WebCore {
32
33 inline SVGFEGaussianBlurElement::SVGFEGaussianBlurElement(Document& document)
34     : SVGFilterPrimitiveStandardAttributes(SVGNames::feGaussianBlurTag, document)
35     , m_stdDeviation(SVGAnimatedNumberOptionalNumber::create(this, SVGNames::stdDeviationAttr, 0, 0))
36     , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create()))
37 {
38     ScriptWrappable::init(this);
39
40     addToPropertyMap(m_stdDeviation);
41     addToPropertyMap(m_in1);
42 }
43
44 PassRefPtr<SVGFEGaussianBlurElement> SVGFEGaussianBlurElement::create(Document& document)
45 {
46     return adoptRef(new SVGFEGaussianBlurElement(document));
47 }
48
49 void SVGFEGaussianBlurElement::setStdDeviation(float x, float y)
50 {
51     stdDeviationX()->baseValue()->setValue(x);
52     stdDeviationY()->baseValue()->setValue(y);
53     invalidate();
54 }
55
56 bool SVGFEGaussianBlurElement::isSupportedAttribute(const QualifiedName& attrName)
57 {
58     DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
59     if (supportedAttributes.isEmpty()) {
60         supportedAttributes.add(SVGNames::inAttr);
61         supportedAttributes.add(SVGNames::stdDeviationAttr);
62     }
63     return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
64 }
65
66 void SVGFEGaussianBlurElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
67 {
68     if (!isSupportedAttribute(name)) {
69         SVGFilterPrimitiveStandardAttributes::parseAttribute(name, value);
70         return;
71     }
72
73     SVGParsingError parseError = NoError;
74
75     if (name == SVGNames::inAttr)
76         m_in1->setBaseValueAsString(value, parseError);
77     else if (name == SVGNames::stdDeviationAttr)
78         m_stdDeviation->setBaseValueAsString(value, parseError);
79     else
80         ASSERT_NOT_REACHED();
81
82     reportAttributeParsingError(parseError, name, value);
83 }
84
85 void SVGFEGaussianBlurElement::svgAttributeChanged(const QualifiedName& attrName)
86 {
87     if (!isSupportedAttribute(attrName)) {
88         SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName);
89         return;
90     }
91
92     SVGElement::InvalidationGuard invalidationGuard(this);
93
94     if (attrName == SVGNames::inAttr || attrName == SVGNames::stdDeviationAttr) {
95         invalidate();
96         return;
97     }
98
99     ASSERT_NOT_REACHED();
100 }
101
102 PassRefPtr<FilterEffect> SVGFEGaussianBlurElement::build(SVGFilterBuilder* filterBuilder, Filter* filter)
103 {
104     FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value()));
105
106     if (!input1)
107         return nullptr;
108
109     if (stdDeviationX()->currentValue()->value() < 0 || stdDeviationY()->currentValue()->value() < 0)
110         return nullptr;
111
112     RefPtr<FilterEffect> effect = FEGaussianBlur::create(filter, stdDeviationX()->currentValue()->value(), stdDeviationY()->currentValue()->value());
113     effect->inputEffects().append(input1);
114     return effect.release();
115 }
116
117 }