blob: 621c5dba964ca44d27722944d7f2825b24fac454 [file] [log] [blame]
darinb9481ed2006-03-20 02:57:59 +00001/*
zimmermann@webkit.org711245f2010-08-03 19:39:01 +00002 * Copyright (C) 2004, 2005 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 */
darinb9481ed2006-03-20 02:57:59 +000020
commit-queue@webkit.org46c0f522016-11-13 10:05:43 +000021#pragma once
darinb9481ed2006-03-20 02:57:59 +000022
zimmermann@webkit.org15de2b82010-12-02 15:19:03 +000023#include "SVGAnimatedString.h"
oliver0099bf72007-10-12 13:47:26 +000024#include "SVGElement.h"
darinb9481ed2006-03-20 02:57:59 +000025
zimmermann@webkit.org057741d2008-07-19 15:46:48 +000026namespace WebCore {
27
andersca@apple.com16d2dd42014-01-16 23:08:24 +000028class SVGFEMergeNodeElement final : public SVGElement {
fpizlo@apple.com197cd322018-03-17 06:11:00 +000029 WTF_MAKE_ISO_ALLOCATED(SVGFEMergeNodeElement);
zimmermann@webkit.org15de2b82010-12-02 15:19:03 +000030public:
weinig@apple.com10923572015-01-07 20:56:24 +000031 static Ref<SVGFEMergeNodeElement> create(const QualifiedName&, Document&);
darin@apple.com3cbd5cb2010-08-30 06:51:56 +000032
zimmermann@webkit.org15de2b82010-12-02 15:19:03 +000033private:
weinig@apple.com52e786e2013-09-15 18:06:06 +000034 SVGFEMergeNodeElement(const QualifiedName&, Document&);
darinb9481ed2006-03-20 02:57:59 +000035
commit-queue@webkit.orge6d3df02016-07-20 21:21:21 +000036 void parseAttribute(const QualifiedName&, const AtomicString&) final;
37 void svgAttributeChanged(const QualifiedName&) final;
38 bool rendererIsNeeded(const RenderStyle&) final { return false; }
ch.dumez@sisa.samsung.com7dd31bf2013-08-22 21:58:09 +000039
zimmermann@webkit.orga2857422011-07-09 11:26:10 +000040 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGFEMergeNodeElement)
41 DECLARE_ANIMATED_STRING(In1, in1)
42 END_DECLARE_ANIMATED_PROPERTIES
zimmermann@webkit.org15de2b82010-12-02 15:19:03 +000043};
weinigab5f09e2006-07-29 23:15:25 +000044
45} // namespace WebCore