| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 void invalidateSVGAttributes() { clearAreSVGAttributesValid(); } | 71 void invalidateSVGAttributes() { clearAreSVGAttributesValid(); } |
| 72 | 72 |
| 73 const HashSet<SVGElementInstance*>& instancesForElement() const; | 73 const HashSet<SVGElementInstance*>& instancesForElement() const; |
| 74 | 74 |
| 75 bool boundingBox(FloatRect&, SVGLocatable::StyleUpdateStrategy = SVGLoca
table::AllowStyleUpdate) const; | 75 bool boundingBox(FloatRect&, SVGLocatable::StyleUpdateStrategy = SVGLoca
table::AllowStyleUpdate) const; |
| 76 | 76 |
| 77 void setCursorElement(SVGCursorElement*); | 77 void setCursorElement(SVGCursorElement*); |
| 78 void cursorElementRemoved(); | 78 void cursorElementRemoved(); |
| 79 void setCursorImageValue(CSSCursorImageValue*); | 79 void setCursorImageValue(CSSCursorImageValue*); |
| 80 void cursorImageElementRemoved(); | 80 void cursorImageValueRemoved(); |
| 81 | 81 |
| 82 virtual void updateAnimatedSVGAttribute(const QualifiedName&) const; | 82 virtual void updateAnimatedSVGAttribute(const QualifiedName&) const; |
| 83 | 83 |
| 84 protected: | 84 protected: |
| 85 SVGElement(const QualifiedName&, Document*); | 85 SVGElement(const QualifiedName&, Document*); |
| 86 | 86 |
| 87 virtual void parseMappedAttribute(Attribute*); | 87 virtual void parseMappedAttribute(Attribute*); |
| 88 | 88 |
| 89 virtual void finishParsingChildren(); | 89 virtual void finishParsingChildren(); |
| 90 virtual void insertedIntoDocument(); | 90 virtual void insertedIntoDocument(); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 107 void mapInstanceToElement(SVGElementInstance*); | 107 void mapInstanceToElement(SVGElementInstance*); |
| 108 void removeInstanceMapping(SVGElementInstance*); | 108 void removeInstanceMapping(SVGElementInstance*); |
| 109 | 109 |
| 110 virtual bool haveLoadedRequiredResources(); | 110 virtual bool haveLoadedRequiredResources(); |
| 111 }; | 111 }; |
| 112 | 112 |
| 113 } | 113 } |
| 114 | 114 |
| 115 #endif | 115 #endif |
| 116 #endif | 116 #endif |
| OLD | NEW |