Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / Source / core / svg / SVGPolyElement.cpp
blobf1a01095b41030c3b0278d31353fc55cd210fe46
1 /*
2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
21 #include "config.h"
22 #include "core/svg/SVGPolyElement.h"
24 #include "core/layout/svg/LayoutSVGShape.h"
25 #include "core/svg/SVGAnimatedPointList.h"
26 #include "core/svg/SVGParserUtilities.h"
28 namespace blink {
30 SVGPolyElement::SVGPolyElement(const QualifiedName& tagName, Document& document)
31 : SVGGeometryElement(tagName, document)
32 , m_points(SVGAnimatedPointList::create(this, SVGNames::pointsAttr, SVGPointList::create()))
34 addToPropertyMap(m_points);
37 DEFINE_TRACE(SVGPolyElement)
39 visitor->trace(m_points);
40 SVGGeometryElement::trace(visitor);
43 Path SVGPolyElement::asPathFromPoints() const
45 Path path;
47 RefPtrWillBeRawPtr<SVGPointList> pointsValue = points()->currentValue();
48 if (pointsValue->isEmpty())
49 return path;
51 SVGPointList::ConstIterator it = pointsValue->begin();
52 SVGPointList::ConstIterator itEnd = pointsValue->end();
53 ASSERT(it != itEnd);
54 path.moveTo(it->value());
55 ++it;
57 for (; it != itEnd; ++it)
58 path.addLineTo(it->value());
60 return path;
63 void SVGPolyElement::svgAttributeChanged(const QualifiedName& attrName)
65 if (attrName == SVGNames::pointsAttr) {
66 SVGElement::InvalidationGuard invalidationGuard(this);
68 LayoutSVGShape* layoutObject = toLayoutSVGShape(this->layoutObject());
69 if (!layoutObject)
70 return;
72 layoutObject->setNeedsShapeUpdate();
73 markForLayoutAndParentResourceInvalidation(layoutObject);
74 return;
77 SVGGeometryElement::svgAttributeChanged(attrName);