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 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> |
4 * Copyright (C) 2009 Apple Inc. All rights reserved. | 4 * Copyright (C) 2009 Apple Inc. All rights reserved. |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 void setCursorImageValue(CSSCursorImageValue*); | 117 void setCursorImageValue(CSSCursorImageValue*); |
118 void cursorImageValueRemoved(); | 118 void cursorImageValueRemoved(); |
119 | 119 |
120 SVGElement* correspondingElement(); | 120 SVGElement* correspondingElement(); |
121 void setCorrespondingElement(SVGElement*); | 121 void setCorrespondingElement(SVGElement*); |
122 | 122 |
123 void synchronizeAnimatedSVGAttribute(const QualifiedName&) const; | 123 void synchronizeAnimatedSVGAttribute(const QualifiedName&) const; |
124 | 124 |
125 virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE FINAL; | 125 virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE FINAL; |
126 | 126 |
127 static void synchronizeRequiredFeatures(SVGElement* contextElement); | |
128 static void synchronizeRequiredExtensions(SVGElement* contextElement); | |
129 static void synchronizeSystemLanguage(SVGElement* contextElement); | |
130 | |
131 virtual void synchronizeRequiredFeatures() { } | 127 virtual void synchronizeRequiredFeatures() { } |
132 virtual void synchronizeRequiredExtensions() { } | 128 virtual void synchronizeRequiredExtensions() { } |
133 virtual void synchronizeSystemLanguage() { } | 129 virtual void synchronizeSystemLanguage() { } |
134 | 130 |
135 #ifndef NDEBUG | 131 #ifndef NDEBUG |
136 virtual bool isAnimatableAttribute(const QualifiedName&) const; | 132 virtual bool isAnimatableAttribute(const QualifiedName&) const; |
137 #endif | 133 #endif |
138 | 134 |
139 MutableStylePropertySet* animatedSMILStyleProperties() const; | 135 MutableStylePropertySet* animatedSMILStyleProperties() const; |
140 MutableStylePropertySet* ensureAnimatedSMILStyleProperties(); | 136 MutableStylePropertySet* ensureAnimatedSMILStyleProperties(); |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 return DefaultHash<QualifiedName>::Hash::hash(key); | 250 return DefaultHash<QualifiedName>::Hash::hash(key); |
255 } | 251 } |
256 static bool equal(const QualifiedName& a, const QualifiedName& b) { return a
.matches(b); } | 252 static bool equal(const QualifiedName& a, const QualifiedName& b) { return a
.matches(b); } |
257 }; | 253 }; |
258 | 254 |
259 DEFINE_NODE_TYPE_CASTS(SVGElement, isSVGElement()); | 255 DEFINE_NODE_TYPE_CASTS(SVGElement, isSVGElement()); |
260 | 256 |
261 } | 257 } |
262 | 258 |
263 #endif | 259 #endif |
OLD | NEW |