| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 namespace blink { | 28 namespace blink { |
| 29 | 29 |
| 30 SVGPolyElement::SVGPolyElement(const QualifiedName& tagName, Document& document) | 30 SVGPolyElement::SVGPolyElement(const QualifiedName& tagName, Document& document) |
| 31 : SVGGeometryElement(tagName, document) | 31 : SVGGeometryElement(tagName, document) |
| 32 , m_points(SVGAnimatedPointList::create(this, SVGNames::pointsAttr, SVGPoint
List::create())) | 32 , m_points(SVGAnimatedPointList::create(this, SVGNames::pointsAttr, SVGPoint
List::create())) |
| 33 { | 33 { |
| 34 addToPropertyMap(m_points); | 34 addToPropertyMap(m_points); |
| 35 } | 35 } |
| 36 | 36 |
| 37 void SVGPolyElement::trace(Visitor* visitor) |
| 38 { |
| 39 visitor->trace(m_points); |
| 40 SVGGeometryElement::trace(visitor); |
| 41 } |
| 42 |
| 37 void SVGPolyElement::parseAttribute(const QualifiedName& name, const AtomicStrin
g& value) | 43 void SVGPolyElement::parseAttribute(const QualifiedName& name, const AtomicStrin
g& value) |
| 38 { | 44 { |
| 39 parseAttributeNew(name, value); | 45 parseAttributeNew(name, value); |
| 40 } | 46 } |
| 41 | 47 |
| 42 void SVGPolyElement::svgAttributeChanged(const QualifiedName& attrName) | 48 void SVGPolyElement::svgAttributeChanged(const QualifiedName& attrName) |
| 43 { | 49 { |
| 44 if (attrName != SVGNames::pointsAttr) { | 50 if (attrName != SVGNames::pointsAttr) { |
| 45 SVGGeometryElement::svgAttributeChanged(attrName); | 51 SVGGeometryElement::svgAttributeChanged(attrName); |
| 46 return; | 52 return; |
| 47 } | 53 } |
| 48 | 54 |
| 49 SVGElement::InvalidationGuard invalidationGuard(this); | 55 SVGElement::InvalidationGuard invalidationGuard(this); |
| 50 | 56 |
| 51 RenderSVGShape* renderer = toRenderSVGShape(this->renderer()); | 57 RenderSVGShape* renderer = toRenderSVGShape(this->renderer()); |
| 52 if (!renderer) | 58 if (!renderer) |
| 53 return; | 59 return; |
| 54 | 60 |
| 55 renderer->setNeedsShapeUpdate(); | 61 renderer->setNeedsShapeUpdate(); |
| 56 markForLayoutAndParentResourceInvalidation(renderer); | 62 markForLayoutAndParentResourceInvalidation(renderer); |
| 57 } | 63 } |
| 58 | 64 |
| 59 } | 65 } |
| OLD | NEW |