blob: 85647679482de7ff5a17692caf378781847cb9eb [file] [log] [blame]
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +01001/*
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
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010023#include "core/svg/SVGFEGaussianBlurElement.h"
24
Torne (Richard Coles)5d92fed2014-06-20 14:52:37 +010025#include "core/SVGNames.h"
Torne (Richard Coles)a854de02013-12-18 16:25:25 +000026#include "platform/graphics/filters/FilterEffect.h"
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010027#include "core/svg/SVGParserUtilities.h"
28#include "core/svg/graphics/filters/SVGFilterBuilder.h"
29
30namespace WebCore {
31
Torne (Richard Coles)5d92fed2014-06-20 14:52:37 +010032inline SVGFEGaussianBlurElement::SVGFEGaussianBlurElement(Document& document)
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000033 : SVGFilterPrimitiveStandardAttributes(SVGNames::feGaussianBlurTag, document)
Torne (Richard Coles)09380292014-02-21 12:17:33 +000034 , m_stdDeviation(SVGAnimatedNumberOptionalNumber::create(this, SVGNames::stdDeviationAttr, 0, 0))
35 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create()))
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010036{
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010037 ScriptWrappable::init(this);
Torne (Richard Coles)09380292014-02-21 12:17:33 +000038
39 addToPropertyMap(m_stdDeviation);
40 addToPropertyMap(m_in1);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010041}
42
Torne (Richard Coles)5d92fed2014-06-20 14:52:37 +010043DEFINE_NODE_FACTORY(SVGFEGaussianBlurElement)
44
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010045void SVGFEGaussianBlurElement::setStdDeviation(float x, float y)
46{
Torne (Richard Coles)09380292014-02-21 12:17:33 +000047 stdDeviationX()->baseValue()->setValue(x);
48 stdDeviationY()->baseValue()->setValue(y);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010049 invalidate();
50}
51
52bool SVGFEGaussianBlurElement::isSupportedAttribute(const QualifiedName& attrName)
53{
54 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
55 if (supportedAttributes.isEmpty()) {
56 supportedAttributes.add(SVGNames::inAttr);
57 supportedAttributes.add(SVGNames::stdDeviationAttr);
58 }
Ben Murdoch591b9582013-07-10 11:41:44 +010059 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010060}
61
62void SVGFEGaussianBlurElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
63{
64 if (!isSupportedAttribute(name)) {
65 SVGFilterPrimitiveStandardAttributes::parseAttribute(name, value);
66 return;
67 }
68
Torne (Richard Coles)09380292014-02-21 12:17:33 +000069 SVGParsingError parseError = NoError;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010070
Torne (Richard Coles)09380292014-02-21 12:17:33 +000071 if (name == SVGNames::inAttr)
72 m_in1->setBaseValueAsString(value, parseError);
73 else if (name == SVGNames::stdDeviationAttr)
74 m_stdDeviation->setBaseValueAsString(value, parseError);
75 else
76 ASSERT_NOT_REACHED();
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010077
Torne (Richard Coles)09380292014-02-21 12:17:33 +000078 reportAttributeParsingError(parseError, name, value);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010079}
80
81void SVGFEGaussianBlurElement::svgAttributeChanged(const QualifiedName& attrName)
82{
83 if (!isSupportedAttribute(attrName)) {
84 SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName);
85 return;
86 }
87
Torne (Richard Coles)32348042014-05-14 12:12:57 +010088 SVGElement::InvalidationGuard invalidationGuard(this);
Ben Murdoch02772c62013-07-26 10:21:05 +010089
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010090 if (attrName == SVGNames::inAttr || attrName == SVGNames::stdDeviationAttr) {
91 invalidate();
92 return;
93 }
94
95 ASSERT_NOT_REACHED();
96}
97
98PassRefPtr<FilterEffect> SVGFEGaussianBlurElement::build(SVGFilterBuilder* filterBuilder, Filter* filter)
99{
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000100 FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value()));
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100101
102 if (!input1)
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +0000103 return nullptr;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100104
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000105 if (stdDeviationX()->currentValue()->value() < 0 || stdDeviationY()->currentValue()->value() < 0)
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +0000106 return nullptr;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100107
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000108 RefPtr<FilterEffect> effect = FEGaussianBlur::create(filter, stdDeviationX()->currentValue()->value(), stdDeviationY()->currentValue()->value());
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +0100109 effect->inputEffects().append(input1);
110 return effect.release();
111}
112
113}