tdf#159660: Add support for feMerge and feMergeNode
[libreoffice.git] / svgio / source / svgreader / svgfemergenode.cxx
blob4f25df038ab98c8ef09e8ec935a369553bbf7520
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 <svgfemergenode.hxx>
20 #include <o3tl/string_view.hxx>
22 namespace svgio::svgreader
24 SvgFeMergeNode::SvgFeMergeNode(SVGToken aType, SvgDocument& rDocument, SvgNode* pParent)
25 : SvgFilterNode(aType, rDocument, pParent)
29 SvgFeMergeNode::~SvgFeMergeNode() {}
31 void SvgFeMergeNode::parseAttribute(SVGToken aSVGToken, const OUString& aContent)
33 // parse own
34 switch (aSVGToken)
36 case SVGToken::Style:
38 readLocalCssStyle(aContent);
39 break;
41 case SVGToken::Result:
43 maResult = aContent.trim();
44 break;
46 default:
48 break;
53 void SvgFeMergeNode::apply(drawinglayer::primitive2d::Primitive2DContainer& rTarget,
54 const SvgFilterNode* pParent) const
56 const auto& rChildren = getChildren();
57 const sal_uInt32 nCount(rChildren.size());
59 // apply children's filters
60 for (sal_uInt32 a(0); a < nCount; a++)
62 SvgFeMergeNode* pFeMergeNode = dynamic_cast<SvgFeMergeNode*>(rChildren[a].get());
63 if (pFeMergeNode)
65 pFeMergeNode->apply(rTarget, pParent);
69 pParent->addGraphicSourceToMapper(maResult, rTarget);
72 } // end of namespace svgio::svgreader
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */