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