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/svgrectnode.hxx>
21 : #include <basegfx/polygon/b2dpolygon.hxx>
22 : #include <basegfx/polygon/b2dpolygontools.hxx>
23 :
24 : namespace svgio
25 : {
26 : namespace svgreader
27 : {
28 130 : SvgRectNode::SvgRectNode(
29 : SvgDocument& rDocument,
30 : SvgNode* pParent)
31 : : SvgNode(SVGTokenRect, rDocument, pParent),
32 : maSvgStyleAttributes(*this),
33 : maX(0),
34 : maY(0),
35 : maWidth(0),
36 : maHeight(0),
37 : maRx(0),
38 : maRy(0),
39 130 : mpaTransform(0)
40 : {
41 130 : }
42 :
43 390 : SvgRectNode::~SvgRectNode()
44 : {
45 130 : if(mpaTransform) delete mpaTransform;
46 260 : }
47 :
48 260 : const SvgStyleAttributes* SvgRectNode::getSvgStyleAttributes() const
49 : {
50 260 : return checkForCssStyle(OUString("rect"), maSvgStyleAttributes);
51 : }
52 :
53 705 : void SvgRectNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent)
54 : {
55 : // call parent
56 705 : SvgNode::parseAttribute(rTokenName, aSVGToken, aContent);
57 :
58 : // read style attributes
59 705 : maSvgStyleAttributes.parseStyleAttribute(rTokenName, aSVGToken, aContent, false);
60 :
61 : // parse own
62 705 : switch(aSVGToken)
63 : {
64 : case SVGTokenStyle:
65 : {
66 10 : readLocalCssStyle(aContent);
67 10 : break;
68 : }
69 : case SVGTokenX:
70 : {
71 129 : SvgNumber aNum;
72 :
73 129 : if(readSingleNumber(aContent, aNum))
74 : {
75 129 : setX(aNum);
76 : }
77 129 : break;
78 : }
79 : case SVGTokenY:
80 : {
81 130 : SvgNumber aNum;
82 :
83 130 : if(readSingleNumber(aContent, aNum))
84 : {
85 130 : setY(aNum);
86 : }
87 130 : break;
88 : }
89 : case SVGTokenWidth:
90 : {
91 130 : SvgNumber aNum;
92 :
93 130 : if(readSingleNumber(aContent, aNum))
94 : {
95 130 : if(aNum.isPositive())
96 : {
97 130 : setWidth(aNum);
98 : }
99 : }
100 130 : break;
101 : }
102 : case SVGTokenHeight:
103 : {
104 130 : SvgNumber aNum;
105 :
106 130 : if(readSingleNumber(aContent, aNum))
107 : {
108 130 : if(aNum.isPositive())
109 : {
110 130 : setHeight(aNum);
111 : }
112 : }
113 130 : break;
114 : }
115 : case SVGTokenRx:
116 : {
117 4 : SvgNumber aNum;
118 :
119 4 : if(readSingleNumber(aContent, aNum))
120 : {
121 4 : if(aNum.isPositive())
122 : {
123 4 : setRx(aNum);
124 : }
125 : }
126 4 : break;
127 : }
128 : case SVGTokenRy:
129 : {
130 4 : SvgNumber aNum;
131 :
132 4 : if(readSingleNumber(aContent, aNum))
133 : {
134 4 : if(aNum.isPositive())
135 : {
136 4 : setRy(aNum);
137 : }
138 : }
139 4 : break;
140 : }
141 : case SVGTokenTransform:
142 : {
143 32 : const basegfx::B2DHomMatrix aMatrix(readTransform(aContent, *this));
144 :
145 32 : if(!aMatrix.isIdentity())
146 : {
147 32 : setTransform(&aMatrix);
148 : }
149 32 : break;
150 : }
151 : default:
152 : {
153 136 : break;
154 : }
155 : }
156 705 : }
157 :
158 130 : void SvgRectNode::decomposeSvgNode(drawinglayer::primitive2d::Primitive2DSequence& rTarget, bool /*bReferenced*/) const
159 : {
160 : // get size range and create path
161 130 : const SvgStyleAttributes* pStyle = getSvgStyleAttributes();
162 :
163 130 : if(pStyle && getWidth().isSet() && getHeight().isSet())
164 : {
165 130 : const double fWidth(getWidth().solve(*this, xcoordinate));
166 130 : const double fHeight(getHeight().solve(*this, ycoordinate));
167 :
168 130 : if(fWidth > 0.0 && fHeight > 0.0)
169 : {
170 130 : const double fX(getX().isSet() ? getX().solve(*this, xcoordinate) : 0.0);
171 130 : const double fY(getY().isSet() ? getY().solve(*this, ycoordinate) : 0.0);
172 130 : const basegfx::B2DRange aRange(fX, fY, fX + fWidth, fY + fHeight);
173 130 : basegfx::B2DPolygon aPath;
174 :
175 130 : if(getRx().isSet() || getRy().isSet())
176 : {
177 130 : double frX(getRx().isSet() ? getRx().solve(*this, xcoordinate) : 0.0);
178 130 : double frY(getRy().isSet() ? getRy().solve(*this, ycoordinate) : 0.0);
179 :
180 130 : frX = std::max(0.0, frX);
181 130 : frY = std::max(0.0, frY);
182 :
183 130 : if(0.0 == frY && frX > 0.0)
184 : {
185 0 : frY = frX;
186 : }
187 130 : else if(0.0 == frX && frY > 0.0)
188 : {
189 0 : frX = frY;
190 : }
191 :
192 130 : frX /= fWidth;
193 130 : frY /= fHeight;
194 :
195 130 : frX = std::min(0.5, frX);
196 130 : frY = std::min(0.5, frY);
197 :
198 130 : aPath = basegfx::tools::createPolygonFromRect(aRange, frX * 2.0, frY * 2.0);
199 : }
200 : else
201 : {
202 0 : aPath = basegfx::tools::createPolygonFromRect(aRange);
203 : }
204 :
205 260 : drawinglayer::primitive2d::Primitive2DSequence aNewTarget;
206 :
207 130 : pStyle->add_path(basegfx::B2DPolyPolygon(aPath), aNewTarget, 0);
208 :
209 130 : if(aNewTarget.hasElements())
210 : {
211 110 : pStyle->add_postProcess(rTarget, aNewTarget, getTransform());
212 130 : }
213 : }
214 : }
215 130 : }
216 : } // end of namespace svgreader
217 : } // end of namespace svgio
218 :
219 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|