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