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