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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 bool isSupportedAttribute(const QualifiedName&); | 56 bool isSupportedAttribute(const QualifiedName&); |
57 virtual bool isPresentationAttribute(const QualifiedName&) const override; | 57 virtual bool isPresentationAttribute(const QualifiedName&) const override; |
58 virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const o
verride; | 58 virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const o
verride; |
59 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) override; | 59 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) override; |
60 | 60 |
61 virtual void svgAttributeChanged(const QualifiedName&) override; | 61 virtual void svgAttributeChanged(const QualifiedName&) override; |
62 | 62 |
63 virtual void attach(const AttachContext& = AttachContext()) override; | 63 virtual void attach(const AttachContext& = AttachContext()) override; |
64 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override; | 64 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override; |
65 | 65 |
66 virtual LayoutObject* createLayoutObject(const LayoutStyle&) override; | 66 virtual LayoutObject* createLayoutObject(const ComputedStyle&) override; |
67 | 67 |
68 virtual const AtomicString imageSourceURL() const override; | 68 virtual const AtomicString imageSourceURL() const override; |
69 | 69 |
70 virtual bool haveLoadedRequiredResources() override; | 70 virtual bool haveLoadedRequiredResources() override; |
71 | 71 |
72 virtual bool selfHasRelativeLengths() const override; | 72 virtual bool selfHasRelativeLengths() const override; |
73 virtual void didMoveToNewDocument(Document& oldDocument) override; | 73 virtual void didMoveToNewDocument(Document& oldDocument) override; |
74 SVGImageLoader& imageLoader() { return *m_imageLoader; } | 74 SVGImageLoader& imageLoader() { return *m_imageLoader; } |
75 | 75 |
76 RefPtrWillBeMember<SVGAnimatedLength> m_x; | 76 RefPtrWillBeMember<SVGAnimatedLength> m_x; |
77 RefPtrWillBeMember<SVGAnimatedLength> m_y; | 77 RefPtrWillBeMember<SVGAnimatedLength> m_y; |
78 RefPtrWillBeMember<SVGAnimatedLength> m_width; | 78 RefPtrWillBeMember<SVGAnimatedLength> m_width; |
79 RefPtrWillBeMember<SVGAnimatedLength> m_height; | 79 RefPtrWillBeMember<SVGAnimatedLength> m_height; |
80 RefPtrWillBeMember<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio; | 80 RefPtrWillBeMember<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio; |
81 | 81 |
82 OwnPtrWillBeMember<SVGImageLoader> m_imageLoader; | 82 OwnPtrWillBeMember<SVGImageLoader> m_imageLoader; |
83 bool m_needsLoaderURIUpdate : 1; | 83 bool m_needsLoaderURIUpdate : 1; |
84 }; | 84 }; |
85 | 85 |
86 } // namespace blink | 86 } // namespace blink |
87 | 87 |
88 #endif // SVGImageElement_h | 88 #endif // SVGImageElement_h |
OLD | NEW |