OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> | 2 * Copyright (C) 2004, 2005, 2006, 2007, 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; | 62 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
63 virtual void removedFrom(ContainerNode*) OVERRIDE; | 63 virtual void removedFrom(ContainerNode*) OVERRIDE; |
64 virtual void buildPendingResource(); | 64 virtual void buildPendingResource(); |
65 | 65 |
66 bool isSupportedAttribute(const QualifiedName&); | 66 bool isSupportedAttribute(const QualifiedName&); |
67 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 67 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
68 virtual void svgAttributeChanged(const QualifiedName&); | 68 virtual void svgAttributeChanged(const QualifiedName&); |
69 | 69 |
70 virtual void willRecalcStyle(StyleChange) OVERRIDE; | 70 virtual void willRecalcStyle(StyleChange) OVERRIDE; |
71 | 71 |
72 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*); | 72 virtual RenderObject* createRenderer(RenderStyle*); |
73 virtual void toClipPath(Path&); | 73 virtual void toClipPath(Path&); |
74 | 74 |
75 void clearResourceReferences(); | 75 void clearResourceReferences(); |
76 void buildShadowAndInstanceTree(SVGElement* target); | 76 void buildShadowAndInstanceTree(SVGElement* target); |
77 void detachInstance(); | 77 void detachInstance(); |
78 | 78 |
79 virtual bool haveLoadedRequiredResources() { return SVGExternalResourcesRequ
ired::haveLoadedRequiredResources(); } | 79 virtual bool haveLoadedRequiredResources() { return SVGExternalResourcesRequ
ired::haveLoadedRequiredResources(); } |
80 | 80 |
81 virtual void finishParsingChildren(); | 81 virtual void finishParsingChildren(); |
82 virtual bool selfHasRelativeLengths() const; | 82 virtual bool selfHasRelativeLengths() const; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 bool m_haveFiredLoadEvent; | 129 bool m_haveFiredLoadEvent; |
130 bool m_needsShadowTreeRecreation; | 130 bool m_needsShadowTreeRecreation; |
131 RefPtr<SVGElementInstance> m_targetElementInstance; | 131 RefPtr<SVGElementInstance> m_targetElementInstance; |
132 CachedResourceHandle<CachedDocument> m_cachedDocument; | 132 CachedResourceHandle<CachedDocument> m_cachedDocument; |
133 Timer<SVGElement> m_svgLoadEventTimer; | 133 Timer<SVGElement> m_svgLoadEventTimer; |
134 }; | 134 }; |
135 | 135 |
136 } | 136 } |
137 | 137 |
138 #endif | 138 #endif |
OLD | NEW |