tdf#159660: Add support for feMerge and feMergeNode
[libreoffice.git] / svgio / source / svgreader / svgfemergenodenode.cxx
blob0d2b2da56e8415d70033696ea53c6d1d6b79dcbf
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #include <svgfemergenodenode.hxx>
20 #include <o3tl/string_view.hxx>
22 namespace svgio::svgreader
24 SvgFeMergeNodeNode::SvgFeMergeNodeNode(SvgDocument& rDocument, SvgNode* pParent)
25 : SvgFeMergeNode(SVGToken::FeMergeNode, rDocument, pParent)
29 SvgFeMergeNodeNode::~SvgFeMergeNodeNode() {}
31 void SvgFeMergeNodeNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent)
33 // parse own
34 switch (aSVGToken)
36 case SVGToken::In:
38 maIn = aContent.trim();
39 break;
41 default:
43 break;
48 void SvgFeMergeNodeNode::apply(drawinglayer::primitive2d::Primitive2DContainer& rTarget,
49 const SvgFilterNode* pParent) const
51 if (const drawinglayer::primitive2d::Primitive2DContainer* rSource
52 = pParent->findGraphicSource(maIn))
54 rTarget.append(*rSource);
58 } // end of namespace svgio::svgreader
60 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */