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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 virtual ~SVGUseElement(); | 48 virtual ~SVGUseElement(); |
49 | 49 |
50 SVGElementInstance* instanceRoot(); | 50 SVGElementInstance* instanceRoot(); |
51 SVGElementInstance* animatedInstanceRoot() const; | 51 SVGElementInstance* animatedInstanceRoot() const; |
52 SVGElementInstance* instanceForShadowTreeElement(Node*) const; | 52 SVGElementInstance* instanceForShadowTreeElement(Node*) const; |
53 void invalidateShadowTree(); | 53 void invalidateShadowTree(); |
54 void invalidateDependentShadowTrees(); | 54 void invalidateDependentShadowTrees(); |
55 | 55 |
56 RenderObject* rendererClipChild() const; | 56 RenderObject* rendererClipChild() const; |
57 | 57 |
| 58 virtual void accept(Visitor* visitor) const OVERRIDE { SVGStyledTransformabl
eElement::accept(visitor); } |
| 59 |
58 private: | 60 private: |
59 SVGUseElement(const QualifiedName&, const Handle<Document>&, bool wasInserte
dByParser); | 61 SVGUseElement(const QualifiedName&, const Handle<Document>&, bool wasInserte
dByParser); |
60 | 62 |
61 virtual bool isValid() const { return SVGTests::isValid(); } | 63 virtual bool isValid() const { return SVGTests::isValid(); } |
62 virtual bool supportsFocus() const { return true; } | 64 virtual bool supportsFocus() const { return true; } |
63 | 65 |
64 virtual InsertionNotificationRequest insertedInto(const Handle<ContainerNode
>&) OVERRIDE; | 66 virtual InsertionNotificationRequest insertedInto(const Handle<ContainerNode
>&) OVERRIDE; |
65 virtual void removedFrom(const Handle<ContainerNode>&) OVERRIDE; | 67 virtual void removedFrom(const Handle<ContainerNode>&) OVERRIDE; |
66 virtual void buildPendingResource(); | 68 virtual void buildPendingResource(); |
67 | 69 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 bool m_needsShadowTreeRecreation; | 134 bool m_needsShadowTreeRecreation; |
133 RefPtr<SVGElementInstance> m_targetElementInstance; | 135 RefPtr<SVGElementInstance> m_targetElementInstance; |
134 CachedResourceHandle<CachedSVGDocument> m_cachedDocument; | 136 CachedResourceHandle<CachedSVGDocument> m_cachedDocument; |
135 Timer<SVGElement> m_svgLoadEventTimer; | 137 Timer<SVGElement> m_svgLoadEventTimer; |
136 }; | 138 }; |
137 | 139 |
138 } | 140 } |
139 | 141 |
140 #endif | 142 #endif |
141 #endif | 143 #endif |
OLD | NEW |