| 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, 2006 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 virtual void parseAttribute(const Attribute&) OVERRIDE; | 46 virtual void parseAttribute(const Attribute&) OVERRIDE; |
| 47 virtual void svgAttributeChanged(const QualifiedName&); | 47 virtual void svgAttributeChanged(const QualifiedName&); |
| 48 | 48 |
| 49 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*); | 49 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*); |
| 50 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const; | 50 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const; |
| 51 virtual bool rendererIsNeeded(const NodeRenderingContext&); | 51 virtual bool rendererIsNeeded(const NodeRenderingContext&); |
| 52 | 52 |
| 53 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; | 53 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
| 54 virtual void removedFrom(ContainerNode*) OVERRIDE; | 54 virtual void removedFrom(ContainerNode*) OVERRIDE; |
| 55 | 55 |
| 56 void updateReferencedText(); | 56 void updateReferencedText(Element*); |
| 57 | 57 |
| 58 void detachTarget(); | 58 void detachTarget(); |
| 59 | 59 |
| 60 virtual void buildPendingResource(); | 60 virtual void buildPendingResource(); |
| 61 | 61 |
| 62 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGTRefElement) | 62 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGTRefElement) |
| 63 DECLARE_ANIMATED_STRING(Href, href) | 63 DECLARE_ANIMATED_STRING(Href, href) |
| 64 END_DECLARE_ANIMATED_PROPERTIES | 64 END_DECLARE_ANIMATED_PROPERTIES |
| 65 | 65 |
| 66 RefPtr<SVGTRefTargetEventListener> m_targetListener; | 66 RefPtr<SVGTRefTargetEventListener> m_targetListener; |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 } // namespace WebCore | 69 } // namespace WebCore |
| 70 | 70 |
| 71 #endif // ENABLE(SVG) | 71 #endif // ENABLE(SVG) |
| 72 #endif | 72 #endif |
| OLD | NEW |