Updated core
[LibreOffice.git] / svgio / source / svgreader / svggnode.cxx
blob306de2e15a29b3f01a5f9aef030d998bbddcd76e
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <svgio/svgreader/svggnode.hxx>
21 #include <drawinglayer/primitive2d/transformprimitive2d.hxx>
22 #include <drawinglayer/primitive2d/unifiedtransparenceprimitive2d.hxx>
24 namespace svgio
26 namespace svgreader
28 SvgGNode::SvgGNode(
29 SVGToken aType,
30 SvgDocument& rDocument,
31 SvgNode* pParent)
32 : SvgNode(aType, rDocument, pParent),
33 maSvgStyleAttributes(*this),
34 mpaTransform(0)
36 OSL_ENSURE(aType == SVGTokenDefs || aType == SVGTokenG, "SvgGNode should ony be used for Group and Defs (!)");
39 SvgGNode::~SvgGNode()
41 if(mpaTransform) delete mpaTransform;
44 const SvgStyleAttributes* SvgGNode::getSvgStyleAttributes() const
46 if (SVGTokenDefs == getType())
48 // #i125258# call parent for SVGTokenDefs
49 return SvgNode::getSvgStyleAttributes();
51 else
53 // #i125258# for SVGTokenG take CssStyles into account
54 return checkForCssStyle(OUString("g"), maSvgStyleAttributes);
58 void SvgGNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent)
60 // call parent
61 SvgNode::parseAttribute(rTokenName, aSVGToken, aContent);
63 // read style attributes
64 maSvgStyleAttributes.parseStyleAttribute(rTokenName, aSVGToken, aContent, false);
66 // parse own
67 switch(aSVGToken)
69 case SVGTokenStyle:
71 readLocalCssStyle(aContent);
72 break;
74 case SVGTokenTransform:
76 const basegfx::B2DHomMatrix aMatrix(readTransform(aContent, *this));
78 if(!aMatrix.isIdentity())
80 setTransform(&aMatrix);
82 break;
84 default:
86 break;
91 void SvgGNode::decomposeSvgNode(drawinglayer::primitive2d::Primitive2DSequence& rTarget, bool bReferenced) const
93 if(SVGTokenDefs == getType())
95 // #i125258# no decompose needed for defs element, call parent for SVGTokenDefs
96 SvgNode::decomposeSvgNode(rTarget, bReferenced);
98 else
100 // #i125258# for SVGTokenG decompose children
101 const SvgStyleAttributes* pStyle = getSvgStyleAttributes();
103 if(pStyle)
105 const double fOpacity(pStyle->getOpacity().getNumber());
107 if(fOpacity > 0.0 && Display_none != getDisplay())
109 drawinglayer::primitive2d::Primitive2DSequence aContent;
111 // decompose children
112 SvgNode::decomposeSvgNode(aContent, bReferenced);
114 if(aContent.hasElements())
116 pStyle->add_postProcess(rTarget, aContent, getTransform());
122 } // end of namespace svgreader
123 } // end of namespace svgio
125 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */