darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 1 | /* |
zimmermann@webkit.org | 711245f | 2010-08-03 19:39:01 +0000 | [diff] [blame] | 2 | * 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 | */ |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 20 | |
commit-queue@webkit.org | 46c0f52 | 2016-11-13 10:05:43 +0000 | [diff] [blame] | 21 | #pragma once |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 22 | |
zimmermann@webkit.org | 15de2b8 | 2010-12-02 15:19:03 +0000 | [diff] [blame] | 23 | #include "SVGAnimatedString.h" |
oliver | 0099bf7 | 2007-10-12 13:47:26 +0000 | [diff] [blame] | 24 | #include "SVGElement.h" |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 25 | |
zimmermann@webkit.org | 057741d | 2008-07-19 15:46:48 +0000 | [diff] [blame] | 26 | namespace WebCore { |
| 27 | |
andersca@apple.com | 16d2dd4 | 2014-01-16 23:08:24 +0000 | [diff] [blame] | 28 | class SVGFEMergeNodeElement final : public SVGElement { |
fpizlo@apple.com | 197cd32 | 2018-03-17 06:11:00 +0000 | [diff] [blame] | 29 | WTF_MAKE_ISO_ALLOCATED(SVGFEMergeNodeElement); |
zimmermann@webkit.org | 15de2b8 | 2010-12-02 15:19:03 +0000 | [diff] [blame] | 30 | public: |
weinig@apple.com | 1092357 | 2015-01-07 20:56:24 +0000 | [diff] [blame] | 31 | static Ref<SVGFEMergeNodeElement> create(const QualifiedName&, Document&); |
darin@apple.com | 3cbd5cb | 2010-08-30 06:51:56 +0000 | [diff] [blame] | 32 | |
zimmermann@webkit.org | 15de2b8 | 2010-12-02 15:19:03 +0000 | [diff] [blame] | 33 | private: |
weinig@apple.com | 52e786e | 2013-09-15 18:06:06 +0000 | [diff] [blame] | 34 | SVGFEMergeNodeElement(const QualifiedName&, Document&); |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 35 | |
commit-queue@webkit.org | e6d3df0 | 2016-07-20 21:21:21 +0000 | [diff] [blame] | 36 | 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.com | 7dd31bf | 2013-08-22 21:58:09 +0000 | [diff] [blame] | 39 | |
zimmermann@webkit.org | a285742 | 2011-07-09 11:26:10 +0000 | [diff] [blame] | 40 | BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGFEMergeNodeElement) |
| 41 | DECLARE_ANIMATED_STRING(In1, in1) |
| 42 | END_DECLARE_ANIMATED_PROPERTIES |
zimmermann@webkit.org | 15de2b8 | 2010-12-02 15:19:03 +0000 | [diff] [blame] | 43 | }; |
weinig | ab5f09e | 2006-07-29 23:15:25 +0000 | [diff] [blame] | 44 | |
| 45 | } // namespace WebCore |