| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 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 23 matching lines...) Expand all Loading... |
| 34 DEFINE_ANIMATED_RECT(SVGViewElement, SVGNames::viewBoxAttr, ViewBox, viewBox) | 34 DEFINE_ANIMATED_RECT(SVGViewElement, SVGNames::viewBoxAttr, ViewBox, viewBox) |
| 35 DEFINE_ANIMATED_PRESERVEASPECTRATIO(SVGViewElement, SVGNames::preserveAspectRati
oAttr, PreserveAspectRatio, preserveAspectRatio) | 35 DEFINE_ANIMATED_PRESERVEASPECTRATIO(SVGViewElement, SVGNames::preserveAspectRati
oAttr, PreserveAspectRatio, preserveAspectRatio) |
| 36 | 36 |
| 37 BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGViewElement) | 37 BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGViewElement) |
| 38 REGISTER_LOCAL_ANIMATED_PROPERTY(externalResourcesRequired) | 38 REGISTER_LOCAL_ANIMATED_PROPERTY(externalResourcesRequired) |
| 39 REGISTER_LOCAL_ANIMATED_PROPERTY(viewBox) | 39 REGISTER_LOCAL_ANIMATED_PROPERTY(viewBox) |
| 40 REGISTER_LOCAL_ANIMATED_PROPERTY(preserveAspectRatio) | 40 REGISTER_LOCAL_ANIMATED_PROPERTY(preserveAspectRatio) |
| 41 REGISTER_PARENT_ANIMATED_PROPERTIES(SVGElement) | 41 REGISTER_PARENT_ANIMATED_PROPERTIES(SVGElement) |
| 42 END_REGISTER_ANIMATED_PROPERTIES | 42 END_REGISTER_ANIMATED_PROPERTIES |
| 43 | 43 |
| 44 inline SVGViewElement::SVGViewElement(const QualifiedName& tagName, Document* do
cument) | 44 inline SVGViewElement::SVGViewElement(const QualifiedName& tagName, Document& do
cument) |
| 45 : SVGElement(tagName, document) | 45 : SVGElement(tagName, document) |
| 46 , m_zoomAndPan(SVGZoomAndPanMagnify) | 46 , m_zoomAndPan(SVGZoomAndPanMagnify) |
| 47 , m_viewTarget(SVGNames::viewTargetAttr) | 47 , m_viewTarget(SVGNames::viewTargetAttr) |
| 48 { | 48 { |
| 49 ASSERT(hasTagName(SVGNames::viewTag)); | 49 ASSERT(hasTagName(SVGNames::viewTag)); |
| 50 ScriptWrappable::init(this); | 50 ScriptWrappable::init(this); |
| 51 registerAnimatedPropertiesForSVGViewElement(); | 51 registerAnimatedPropertiesForSVGViewElement(); |
| 52 } | 52 } |
| 53 | 53 |
| 54 PassRefPtr<SVGViewElement> SVGViewElement::create(const QualifiedName& tagName,
Document* document) | 54 PassRefPtr<SVGViewElement> SVGViewElement::create(const QualifiedName& tagName,
Document& document) |
| 55 { | 55 { |
| 56 return adoptRef(new SVGViewElement(tagName, document)); | 56 return adoptRef(new SVGViewElement(tagName, document)); |
| 57 } | 57 } |
| 58 | 58 |
| 59 bool SVGViewElement::isSupportedAttribute(const QualifiedName& attrName) | 59 bool SVGViewElement::isSupportedAttribute(const QualifiedName& attrName) |
| 60 { | 60 { |
| 61 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); | 61 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |
| 62 if (supportedAttributes.isEmpty()) { | 62 if (supportedAttributes.isEmpty()) { |
| 63 SVGExternalResourcesRequired::addSupportedAttributes(supportedAttributes
); | 63 SVGExternalResourcesRequired::addSupportedAttributes(supportedAttributes
); |
| 64 SVGFitToViewBox::addSupportedAttributes(supportedAttributes); | 64 SVGFitToViewBox::addSupportedAttributes(supportedAttributes); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 84 return; | 84 return; |
| 85 if (SVGFitToViewBox::parseAttribute(this, name, value)) | 85 if (SVGFitToViewBox::parseAttribute(this, name, value)) |
| 86 return; | 86 return; |
| 87 if (SVGZoomAndPan::parseAttribute(this, name, value)) | 87 if (SVGZoomAndPan::parseAttribute(this, name, value)) |
| 88 return; | 88 return; |
| 89 | 89 |
| 90 ASSERT_NOT_REACHED(); | 90 ASSERT_NOT_REACHED(); |
| 91 } | 91 } |
| 92 | 92 |
| 93 } | 93 } |
| OLD | NEW |