| 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 * | 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 30 matching lines...) Expand all Loading... |
| 41 SVGAnimatedLength* x() const { return m_x.get(); } | 41 SVGAnimatedLength* x() const { return m_x.get(); } |
| 42 SVGAnimatedLength* y() const { return m_y.get(); } | 42 SVGAnimatedLength* y() const { return m_y.get(); } |
| 43 SVGAnimatedLength* width() const { return m_width.get(); } | 43 SVGAnimatedLength* width() const { return m_width.get(); } |
| 44 SVGAnimatedLength* height() const { return m_height.get(); } | 44 SVGAnimatedLength* height() const { return m_height.get(); } |
| 45 SVGAnimatedPreserveAspectRatio* preserveAspectRatio() { return m_preserveAsp
ectRatio.get(); } | 45 SVGAnimatedPreserveAspectRatio* preserveAspectRatio() { return m_preserveAsp
ectRatio.get(); } |
| 46 | 46 |
| 47 private: | 47 private: |
| 48 explicit SVGImageElement(Document&); | 48 explicit SVGImageElement(Document&); |
| 49 | 49 |
| 50 virtual bool isStructurallyExternal() const OVERRIDE { return !hrefString().
isNull(); } | 50 virtual bool isStructurallyExternal() const OVERRIDE { return !hrefString().
isNull(); } |
| 51 virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners(
); } | |
| 52 | 51 |
| 53 bool isSupportedAttribute(const QualifiedName&); | 52 bool isSupportedAttribute(const QualifiedName&); |
| 54 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 53 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
| 55 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; | 54 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; |
| 56 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) OVERRIDE; | 55 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) OVERRIDE; |
| 57 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; | 56 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; |
| 58 | 57 |
| 59 virtual void attach(const AttachContext& = AttachContext()) OVERRIDE; | 58 virtual void attach(const AttachContext& = AttachContext()) OVERRIDE; |
| 60 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; | 59 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
| 61 | 60 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 74 RefPtr<SVGAnimatedLength> m_height; | 73 RefPtr<SVGAnimatedLength> m_height; |
| 75 RefPtr<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio; | 74 RefPtr<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio; |
| 76 | 75 |
| 77 SVGImageLoader m_imageLoader; | 76 SVGImageLoader m_imageLoader; |
| 78 bool m_needsLoaderURIUpdate : 1; | 77 bool m_needsLoaderURIUpdate : 1; |
| 79 }; | 78 }; |
| 80 | 79 |
| 81 } // namespace WebCore | 80 } // namespace WebCore |
| 82 | 81 |
| 83 #endif | 82 #endif |
| OLD | NEW |