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