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/svgellipsenode.hxx>
21 : #include <basegfx/polygon/b2dpolygon.hxx>
22 : #include <basegfx/polygon/b2dpolygontools.hxx>
23 :
24 : namespace svgio
25 : {
26 : namespace svgreader
27 : {
28 66 : SvgEllipseNode::SvgEllipseNode(
29 : SvgDocument& rDocument,
30 : SvgNode* pParent)
31 : : SvgNode(SVGTokenEllipse, rDocument, pParent),
32 : maSvgStyleAttributes(*this),
33 : maCx(0),
34 : maCy(0),
35 : maRx(0),
36 : maRy(0),
37 66 : mpaTransform(0)
38 : {
39 66 : }
40 :
41 198 : SvgEllipseNode::~SvgEllipseNode()
42 : {
43 66 : if(mpaTransform) delete mpaTransform;
44 132 : }
45 :
46 132 : const SvgStyleAttributes* SvgEllipseNode::getSvgStyleAttributes() const
47 : {
48 132 : return checkForCssStyle(OUString("ellipse"), maSvgStyleAttributes);
49 : }
50 :
51 511 : void SvgEllipseNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent)
52 : {
53 : // call parent
54 511 : SvgNode::parseAttribute(rTokenName, aSVGToken, aContent);
55 :
56 : // read style attributes
57 511 : maSvgStyleAttributes.parseStyleAttribute(rTokenName, aSVGToken, aContent, false);
58 :
59 : // parse own
60 511 : switch(aSVGToken)
61 : {
62 : case SVGTokenStyle:
63 : {
64 0 : readLocalCssStyle(aContent);
65 0 : break;
66 : }
67 : case SVGTokenCx:
68 : {
69 66 : SvgNumber aNum;
70 :
71 66 : if(readSingleNumber(aContent, aNum))
72 : {
73 66 : setCx(aNum);
74 : }
75 66 : break;
76 : }
77 : case SVGTokenCy:
78 : {
79 66 : SvgNumber aNum;
80 :
81 66 : if(readSingleNumber(aContent, aNum))
82 : {
83 66 : setCy(aNum);
84 : }
85 66 : break;
86 : }
87 : case SVGTokenRx:
88 : {
89 66 : SvgNumber aNum;
90 :
91 66 : if(readSingleNumber(aContent, aNum))
92 : {
93 66 : if(aNum.isPositive())
94 : {
95 66 : setRx(aNum);
96 : }
97 : }
98 66 : break;
99 : }
100 : case SVGTokenRy:
101 : {
102 66 : SvgNumber aNum;
103 :
104 66 : if(readSingleNumber(aContent, aNum))
105 : {
106 66 : if(aNum.isPositive())
107 : {
108 66 : setRy(aNum);
109 : }
110 : }
111 66 : break;
112 : }
113 : case SVGTokenTransform:
114 : {
115 51 : const basegfx::B2DHomMatrix aMatrix(readTransform(aContent, *this));
116 :
117 51 : if(!aMatrix.isIdentity())
118 : {
119 51 : setTransform(&aMatrix);
120 : }
121 51 : break;
122 : }
123 : default:
124 : {
125 196 : break;
126 : }
127 : }
128 511 : }
129 :
130 66 : void SvgEllipseNode::decomposeSvgNode(drawinglayer::primitive2d::Primitive2DSequence& rTarget, bool /*bReferenced*/) const
131 : {
132 66 : const SvgStyleAttributes* pStyle = getSvgStyleAttributes();
133 :
134 66 : if(pStyle && getRx().isSet() && getRy().isSet())
135 : {
136 66 : const double fRx(getRx().solve(*this, xcoordinate));
137 66 : const double fRy(getRy().solve(*this, ycoordinate));
138 :
139 66 : if(fRx > 0.0 && fRy > 0.0)
140 : {
141 : const basegfx::B2DPolygon aPath(
142 : basegfx::tools::createPolygonFromEllipse(
143 : basegfx::B2DPoint(
144 132 : getCx().isSet() ? getCx().solve(*this, xcoordinate) : 0.0,
145 132 : getCy().isSet() ? getCy().solve(*this, ycoordinate) : 0.0),
146 264 : fRx, fRy));
147 :
148 132 : drawinglayer::primitive2d::Primitive2DSequence aNewTarget;
149 :
150 66 : pStyle->add_path(basegfx::B2DPolyPolygon(aPath), aNewTarget, 0);
151 :
152 66 : if(aNewTarget.hasElements())
153 : {
154 66 : pStyle->add_postProcess(rTarget, aNewTarget, getTransform());
155 66 : }
156 : }
157 : }
158 66 : }
159 : } // end of namespace svgreader
160 : } // end of namespace svgio
161 :
162 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|