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/svgmarkernode.hxx>
21 :
22 : //////////////////////////////////////////////////////////////////////////////
23 :
24 : namespace svgio
25 : {
26 : namespace svgreader
27 : {
28 0 : SvgMarkerNode::SvgMarkerNode(
29 : SvgDocument& rDocument,
30 : SvgNode* pParent)
31 : : SvgNode(SVGTokenMarker, rDocument, pParent),
32 : aPrimitives(),
33 : maSvgStyleAttributes(*this),
34 : mpViewBox(0),
35 : maSvgAspectRatio(),
36 : maRefX(0),
37 : maRefY(0),
38 : maMarkerUnits(strokeWidth),
39 : maMarkerWidth(3),
40 : maMarkerHeight(3),
41 : mfAngle(0.0),
42 0 : mbOrientAuto(false)
43 : {
44 0 : }
45 :
46 0 : SvgMarkerNode::~SvgMarkerNode()
47 : {
48 0 : if(mpViewBox) delete mpViewBox;
49 0 : }
50 :
51 0 : const SvgStyleAttributes* SvgMarkerNode::getSvgStyleAttributes() const
52 : {
53 0 : static rtl::OUString aClassStr(rtl::OUString::createFromAscii("marker"));
54 0 : maSvgStyleAttributes.checkForCssStyle(aClassStr);
55 :
56 0 : return &maSvgStyleAttributes;
57 : }
58 :
59 0 : void SvgMarkerNode::parseAttribute(const rtl::OUString& rTokenName, SVGToken aSVGToken, const rtl::OUString& aContent)
60 : {
61 : // call parent
62 0 : SvgNode::parseAttribute(rTokenName, aSVGToken, aContent);
63 :
64 : // read style attributes
65 0 : maSvgStyleAttributes.parseStyleAttribute(rTokenName, aSVGToken, aContent);
66 :
67 : // parse own
68 0 : switch(aSVGToken)
69 : {
70 : case SVGTokenStyle:
71 : {
72 0 : maSvgStyleAttributes.readStyle(aContent);
73 0 : break;
74 : }
75 : case SVGTokenViewBox:
76 : {
77 0 : const basegfx::B2DRange aRange(readViewBox(aContent, *this));
78 :
79 0 : if(!aRange.isEmpty())
80 : {
81 0 : setViewBox(&aRange);
82 : }
83 : break;
84 : }
85 : case SVGTokenPreserveAspectRatio:
86 : {
87 0 : setSvgAspectRatio(readSvgAspectRatio(aContent));
88 0 : break;
89 : }
90 : case SVGTokenRefX:
91 : {
92 0 : SvgNumber aNum;
93 :
94 0 : if(readSingleNumber(aContent, aNum))
95 : {
96 0 : setRefX(aNum);
97 : }
98 : break;
99 : }
100 : case SVGTokenRefY:
101 : {
102 0 : SvgNumber aNum;
103 :
104 0 : if(readSingleNumber(aContent, aNum))
105 : {
106 0 : setRefY(aNum);
107 : }
108 : break;
109 : }
110 : case SVGTokenMarkerUnits:
111 : {
112 0 : if(aContent.getLength())
113 : {
114 0 : static rtl::OUString aStrStrokeWidth(rtl::OUString::createFromAscii("strokeWidth"));
115 :
116 0 : if(aContent.match(aStrStrokeWidth, 0))
117 : {
118 0 : setMarkerUnits(strokeWidth);
119 : }
120 0 : else if(aContent.match(commonStrings::aStrUserSpaceOnUse, 0))
121 : {
122 0 : setMarkerUnits(userSpaceOnUse);
123 : }
124 : }
125 0 : break;
126 : }
127 : case SVGTokenMarkerWidth:
128 : {
129 0 : SvgNumber aNum;
130 :
131 0 : if(readSingleNumber(aContent, aNum))
132 : {
133 0 : if(aNum.isPositive())
134 : {
135 0 : setMarkerWidth(aNum);
136 : }
137 : }
138 : break;
139 : }
140 : case SVGTokenMarkerHeight:
141 : {
142 0 : SvgNumber aNum;
143 :
144 0 : if(readSingleNumber(aContent, aNum))
145 : {
146 0 : if(aNum.isPositive())
147 : {
148 0 : setMarkerHeight(aNum);
149 : }
150 : }
151 : break;
152 : }
153 : case SVGTokenOrient:
154 : {
155 0 : const sal_Int32 nLen(aContent.getLength());
156 :
157 0 : if(nLen)
158 : {
159 0 : static rtl::OUString aStrAuto(rtl::OUString::createFromAscii("auto"));
160 :
161 0 : if(aContent.match(aStrAuto, 0))
162 : {
163 0 : setOrientAuto(true);
164 : }
165 : else
166 : {
167 0 : sal_Int32 nPos(0);
168 0 : double fAngle(0.0);
169 :
170 0 : if(readAngle(aContent, nPos, fAngle, nLen))
171 : {
172 0 : setAngle(fAngle);
173 : }
174 : }
175 : }
176 0 : break;
177 : }
178 : default:
179 : {
180 0 : break;
181 : }
182 : }
183 0 : }
184 :
185 0 : const drawinglayer::primitive2d::Primitive2DSequence& SvgMarkerNode::getMarkerPrimitives() const
186 : {
187 0 : if(!aPrimitives.hasElements())
188 : {
189 0 : decomposeSvgNode(const_cast< SvgMarkerNode* >(this)->aPrimitives, true);
190 : }
191 :
192 0 : return aPrimitives;
193 : }
194 :
195 0 : const basegfx::B2DRange* SvgMarkerNode::getCurrentViewPort() const
196 : {
197 0 : if(getViewBox())
198 : {
199 0 : return getViewBox();
200 : }
201 : else
202 : {
203 0 : return SvgNode::getCurrentViewPort();
204 : }
205 : }
206 :
207 : } // end of namespace svgreader
208 : } // end of namespace svgio
209 :
210 : //////////////////////////////////////////////////////////////////////////////
211 : // eof
212 :
213 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|