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