| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 REGISTER_PARENT_ANIMATED_PROPERTIES(SVGTests) | 74 REGISTER_PARENT_ANIMATED_PROPERTIES(SVGTests) |
| 75 END_REGISTER_ANIMATED_PROPERTIES | 75 END_REGISTER_ANIMATED_PROPERTIES |
| 76 | 76 |
| 77 inline SVGPathElement::SVGPathElement(const QualifiedName& tagName, Document* do
cument) | 77 inline SVGPathElement::SVGPathElement(const QualifiedName& tagName, Document* do
cument) |
| 78 : SVGStyledTransformableElement(tagName, document) | 78 : SVGStyledTransformableElement(tagName, document) |
| 79 , m_pathByteStream(SVGPathByteStream::create()) | 79 , m_pathByteStream(SVGPathByteStream::create()) |
| 80 , m_pathSegList(PathSegUnalteredRole) | 80 , m_pathSegList(PathSegUnalteredRole) |
| 81 , m_isAnimValObserved(false) | 81 , m_isAnimValObserved(false) |
| 82 { | 82 { |
| 83 ASSERT(hasTagName(SVGNames::pathTag)); | 83 ASSERT(hasTagName(SVGNames::pathTag)); |
| 84 ScriptWrappable::init(this); |
| 84 registerAnimatedPropertiesForSVGPathElement(); | 85 registerAnimatedPropertiesForSVGPathElement(); |
| 85 } | 86 } |
| 86 | 87 |
| 87 PassRefPtr<SVGPathElement> SVGPathElement::create(const QualifiedName& tagName,
Document* document) | 88 PassRefPtr<SVGPathElement> SVGPathElement::create(const QualifiedName& tagName,
Document* document) |
| 88 { | 89 { |
| 89 return adoptRef(new SVGPathElement(tagName, document)); | 90 return adoptRef(new SVGPathElement(tagName, document)); |
| 90 } | 91 } |
| 91 | 92 |
| 92 float SVGPathElement::getTotalLength() | 93 float SVGPathElement::getTotalLength() |
| 93 { | 94 { |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 | 407 |
| 407 RenderObject* SVGPathElement::createRenderer(RenderArena* arena, RenderStyle*) | 408 RenderObject* SVGPathElement::createRenderer(RenderArena* arena, RenderStyle*) |
| 408 { | 409 { |
| 409 // By default, any subclass is expected to do path-based drawing | 410 // By default, any subclass is expected to do path-based drawing |
| 410 return new (arena) RenderSVGPath(this); | 411 return new (arena) RenderSVGPath(this); |
| 411 } | 412 } |
| 412 | 413 |
| 413 } | 414 } |
| 414 | 415 |
| 415 #endif // ENABLE(SVG) | 416 #endif // ENABLE(SVG) |
| OLD | NEW |