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(Document& document) |
45 : SVGElement(tagName, document) | 45 : SVGElement(SVGNames::viewTag, 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)); | |
50 ScriptWrappable::init(this); | 49 ScriptWrappable::init(this); |
51 registerAnimatedPropertiesForSVGViewElement(); | 50 registerAnimatedPropertiesForSVGViewElement(); |
52 } | 51 } |
53 | 52 |
54 PassRefPtr<SVGViewElement> SVGViewElement::create(const QualifiedName& tagName,
Document& document) | 53 PassRefPtr<SVGViewElement> SVGViewElement::create(Document& document) |
55 { | 54 { |
56 return adoptRef(new SVGViewElement(tagName, document)); | 55 return adoptRef(new SVGViewElement(document)); |
57 } | 56 } |
58 | 57 |
59 bool SVGViewElement::isSupportedAttribute(const QualifiedName& attrName) | 58 bool SVGViewElement::isSupportedAttribute(const QualifiedName& attrName) |
60 { | 59 { |
61 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); | 60 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |
62 if (supportedAttributes.isEmpty()) { | 61 if (supportedAttributes.isEmpty()) { |
63 SVGExternalResourcesRequired::addSupportedAttributes(supportedAttributes
); | 62 SVGExternalResourcesRequired::addSupportedAttributes(supportedAttributes
); |
64 SVGFitToViewBox::addSupportedAttributes(supportedAttributes); | 63 SVGFitToViewBox::addSupportedAttributes(supportedAttributes); |
65 SVGZoomAndPan::addSupportedAttributes(supportedAttributes); | 64 SVGZoomAndPan::addSupportedAttributes(supportedAttributes); |
66 supportedAttributes.add(SVGNames::viewTargetAttr); | 65 supportedAttributes.add(SVGNames::viewTargetAttr); |
(...skipping 17 matching lines...) Expand all Loading... |
84 return; | 83 return; |
85 if (SVGFitToViewBox::parseAttribute(this, name, value)) | 84 if (SVGFitToViewBox::parseAttribute(this, name, value)) |
86 return; | 85 return; |
87 if (SVGZoomAndPan::parseAttribute(this, name, value)) | 86 if (SVGZoomAndPan::parseAttribute(this, name, value)) |
88 return; | 87 return; |
89 | 88 |
90 ASSERT_NOT_REACHED(); | 89 ASSERT_NOT_REACHED(); |
91 } | 90 } |
92 | 91 |
93 } | 92 } |
OLD | NEW |