LibreOffice Module svgio (master) 1
svgfilternode.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#include <svgfilternode.hxx>
23#include <svgfefloodnode.hxx>
24#include <svgfeimagenode.hxx>
26#include <svgfeoffsetnode.hxx>
27
28namespace svgio::svgreader
29{
31 : SvgNode(aType, rDocument, pParent)
32{
33}
34
36
38{
39 if (rTarget.empty())
40 return;
41
42 const auto& rChildren = getChildren();
43 const sal_uInt32 nCount(rChildren.size());
44
45 // apply children's filters
46 for (sal_uInt32 a(0); a < nCount; a++)
47 {
48 SvgFilterNode* pFilterNode = dynamic_cast<SvgFilterNode*>(rChildren[a].get());
49 if (pFilterNode)
50 pFilterNode->apply(rTarget);
51 }
52}
53
54} // end of namespace svgio::svgreader
55
56/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
SvgFilterNode(SVGToken aType, SvgDocument &rDocument, SvgNode *pParent)
virtual void apply(drawinglayer::primitive2d::Primitive2DContainer &rTarget) const
virtual ~SvgFilterNode() override
const std::vector< std::unique_ptr< SvgNode > > & getChildren() const
Definition: svgnode.hxx:159
int nCount
FilterGroup & rTarget
uno_Any a