Line data Source code
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 <svgio/svgreader/svgnode.hxx>
21 : #include <basegfx/polygon/b2dpolypolygontools.hxx>
22 : #include <svgio/svgreader/svgdocument.hxx>
23 : #include <svgio/svgreader/svgnode.hxx>
24 : #include <svgio/svgreader/svgstyleattributes.hxx>
25 :
26 : //////////////////////////////////////////////////////////////////////////////
27 :
28 : namespace svgio
29 : {
30 : namespace svgreader
31 : {
32 0 : const SvgStyleAttributes* SvgNode::getSvgStyleAttributes() const
33 : {
34 0 : return 0;
35 : }
36 :
37 0 : SvgNode::SvgNode(
38 : SVGToken aType,
39 : SvgDocument& rDocument,
40 : SvgNode* pParent)
41 : : maType(aType),
42 : mrDocument(rDocument),
43 : mpParent(pParent),
44 : mpAlternativeParent(0),
45 : maChildren(),
46 : mpId(0),
47 : mpClass(0),
48 0 : maXmlSpace(XmlSpace_notset)
49 : {
50 : OSL_ENSURE(SVGTokenUnknown != maType, "SvgNode with unknown type created (!)");
51 :
52 0 : if(pParent)
53 : {
54 0 : pParent->maChildren.push_back(this);
55 : }
56 : else
57 : {
58 : #ifdef DBG_UTIL
59 : if(SVGTokenSvg != getType())
60 : {
61 : OSL_ENSURE(false, "No parent for this node (!)");
62 : }
63 : #endif
64 : }
65 0 : }
66 :
67 0 : SvgNode::~SvgNode()
68 : {
69 0 : while(maChildren.size())
70 : {
71 0 : delete maChildren[maChildren.size() - 1];
72 0 : maChildren.pop_back();
73 : }
74 :
75 0 : if(mpId) delete mpId;
76 0 : if(mpClass) delete mpClass;
77 0 : }
78 :
79 0 : void SvgNode::parseAttributes(const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList >& xAttribs)
80 : {
81 0 : const sal_uInt32 nAttributes(xAttribs->getLength());
82 :
83 0 : for(sal_uInt32 a(0); a < nAttributes; a++)
84 : {
85 0 : const ::rtl::OUString aTokenName(xAttribs->getNameByIndex(a));
86 :
87 0 : parseAttribute(aTokenName, StrToSVGToken(aTokenName), xAttribs->getValueByIndex(a));
88 0 : }
89 0 : }
90 :
91 0 : void SvgNode::parseAttribute(const rtl::OUString& /*rTokenName*/, SVGToken aSVGToken, const rtl::OUString& aContent)
92 : {
93 0 : switch(aSVGToken)
94 : {
95 : case SVGTokenId:
96 : {
97 0 : if(aContent.getLength())
98 : {
99 0 : setId(&aContent);
100 : }
101 0 : break;
102 : }
103 : case SVGTokenClass:
104 : {
105 0 : if(aContent.getLength())
106 : {
107 0 : setClass(&aContent);
108 : }
109 0 : break;
110 : }
111 : case SVGTokenXmlSpace:
112 : {
113 0 : if(aContent.getLength())
114 : {
115 0 : static rtl::OUString aStrDefault(rtl::OUString::createFromAscii("default"));
116 0 : static rtl::OUString aStrPreserve(rtl::OUString::createFromAscii("preserve"));
117 :
118 0 : if(aContent.match(aStrDefault))
119 : {
120 0 : setXmlSpace(XmlSpace_default);
121 : }
122 0 : else if(aContent.match(aStrPreserve))
123 : {
124 0 : setXmlSpace(XmlSpace_preserve);
125 : }
126 : }
127 0 : break;
128 : }
129 : default:
130 : {
131 0 : break;
132 : }
133 : }
134 0 : }
135 :
136 0 : void SvgNode::decomposeSvgNode(drawinglayer::primitive2d::Primitive2DSequence& rTarget, bool bReferenced) const
137 : {
138 0 : if(!bReferenced)
139 : {
140 0 : if(SVGTokenDefs == getType() ||
141 0 : SVGTokenSymbol == getType() ||
142 0 : SVGTokenClipPathNode == getType() ||
143 0 : SVGTokenMask == getType() ||
144 0 : SVGTokenMarker == getType() ||
145 0 : SVGTokenPattern == getType())
146 : {
147 : // do not decompose defs or symbol nodes (these hold only style-like
148 : // objects which may be used by referencing them) except when doing
149 : // so controlled referenced
150 :
151 : // also do not decompose ClipPaths and Masks. These should be embedded
152 : // in a defs node (which gets not decomposed by itself), but you never
153 : // know
154 :
155 : // also not directly used are Markers and Patterns, only indirecty used
156 : // by reference
157 0 : return;
158 : }
159 : }
160 :
161 0 : const SvgNodeVector& rChildren = getChildren();
162 :
163 0 : if(!rChildren.empty())
164 : {
165 0 : const sal_uInt32 nCount(rChildren.size());
166 :
167 0 : for(sal_uInt32 a(0); a < nCount; a++)
168 : {
169 0 : SvgNode* pCandidate = rChildren[a];
170 :
171 0 : if(pCandidate)
172 : {
173 0 : drawinglayer::primitive2d::Primitive2DSequence aNewTarget;
174 :
175 0 : pCandidate->decomposeSvgNode(aNewTarget, bReferenced);
176 :
177 0 : if(aNewTarget.hasElements())
178 : {
179 0 : drawinglayer::primitive2d::appendPrimitive2DSequenceToPrimitive2DSequence(rTarget, aNewTarget);
180 0 : }
181 : }
182 : else
183 : {
184 : OSL_ENSURE(false, "Null-Pointer in child node list (!)");
185 : }
186 : }
187 : }
188 : }
189 :
190 0 : const basegfx::B2DRange* SvgNode::getCurrentViewPort() const
191 : {
192 0 : if(getParent())
193 : {
194 0 : return getParent()->getCurrentViewPort();
195 : }
196 : else
197 : {
198 0 : return 0;
199 : }
200 : }
201 :
202 0 : double SvgNode::getCurrentFontSize() const
203 : {
204 0 : if(getSvgStyleAttributes())
205 : {
206 0 : return getSvgStyleAttributes()->getFontSize().solve(*this, xcoordinate);
207 : }
208 0 : else if(getParent())
209 : {
210 0 : return getParent()->getCurrentFontSize();
211 : }
212 : else
213 : {
214 0 : return 0.0;
215 : }
216 : }
217 :
218 0 : double SvgNode::getCurrentXHeight() const
219 : {
220 0 : if(getSvgStyleAttributes())
221 : {
222 : // for XHeight, use FontSize currently
223 0 : return getSvgStyleAttributes()->getFontSize().solve(*this, ycoordinate);
224 : }
225 0 : else if(getParent())
226 : {
227 0 : return getParent()->getCurrentXHeight();
228 : }
229 : else
230 : {
231 0 : return 0.0;
232 : }
233 : }
234 :
235 0 : void SvgNode::setId(const rtl::OUString* pfId)
236 : {
237 0 : if(mpId)
238 : {
239 0 : mrDocument.removeSvgNodeFromMapper(*mpId);
240 0 : delete mpId;
241 0 : mpId = 0;
242 : }
243 :
244 0 : if(pfId)
245 : {
246 0 : mpId = new rtl::OUString(*pfId);
247 0 : mrDocument.addSvgNodeToMapper(*mpId, *this);
248 : }
249 0 : }
250 :
251 0 : void SvgNode::setClass(const rtl::OUString* pfClass)
252 : {
253 0 : if(mpClass)
254 : {
255 0 : mrDocument.removeSvgNodeFromMapper(*mpClass);
256 0 : delete mpClass;
257 0 : mpClass = 0;
258 : }
259 :
260 0 : if(pfClass)
261 : {
262 0 : mpClass = new rtl::OUString(*pfClass);
263 0 : mrDocument.addSvgNodeToMapper(*mpClass, *this);
264 : }
265 0 : }
266 :
267 0 : XmlSpace SvgNode::getXmlSpace() const
268 : {
269 0 : if(maXmlSpace != XmlSpace_notset)
270 : {
271 0 : return maXmlSpace;
272 : }
273 :
274 0 : if(getParent())
275 : {
276 0 : return getParent()->getXmlSpace();
277 : }
278 :
279 : // default is XmlSpace_default
280 0 : return XmlSpace_default;
281 : }
282 :
283 : } // end of namespace svgreader
284 : } // end of namespace svgio
285 :
286 : //////////////////////////////////////////////////////////////////////////////
287 : // eof
288 :
289 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|