OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 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 28 matching lines...) Expand all Loading... |
39 public SVGURIReference, | 39 public SVGURIReference, |
40 public SVGLangSpace, | 40 public SVGLangSpace, |
41 public SVGExternalResourcesRequired, | 41 public SVGExternalResourcesRequired, |
42 public CachedImageClient { | 42 public CachedImageClient { |
43 DEFINE_SELF_HANDLE(SVGFEImageElement) | 43 DEFINE_SELF_HANDLE(SVGFEImageElement) |
44 public: | 44 public: |
45 static PassRefPtr<SVGFEImageElement> create(const QualifiedName&, const Hand
le<Document>&); | 45 static PassRefPtr<SVGFEImageElement> create(const QualifiedName&, const Hand
le<Document>&); |
46 | 46 |
47 virtual ~SVGFEImageElement(); | 47 virtual ~SVGFEImageElement(); |
48 | 48 |
| 49 virtual void accept(Visitor* visitor) const OVERRIDE { SVGFilterPrimitiveSta
ndardAttributes::accept(visitor); } |
| 50 |
49 private: | 51 private: |
50 SVGFEImageElement(const QualifiedName&, const Handle<Document>&); | 52 SVGFEImageElement(const QualifiedName&, const Handle<Document>&); |
51 | 53 |
52 bool isSupportedAttribute(const QualifiedName&); | 54 bool isSupportedAttribute(const QualifiedName&); |
53 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 55 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
54 virtual void svgAttributeChanged(const QualifiedName&); | 56 virtual void svgAttributeChanged(const QualifiedName&); |
55 virtual void notifyFinished(CachedResource*); | 57 virtual void notifyFinished(CachedResource*); |
56 | 58 |
57 virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const; | 59 virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const; |
58 virtual PassRefPtr<FilterEffect> build(SVGFilterBuilder*, Filter*); | 60 virtual PassRefPtr<FilterEffect> build(SVGFilterBuilder*, Filter*); |
(...skipping 11 matching lines...) Expand all Loading... |
70 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq
uired) | 72 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq
uired) |
71 END_DECLARE_ANIMATED_PROPERTIES | 73 END_DECLARE_ANIMATED_PROPERTIES |
72 | 74 |
73 CachedResourceHandle<CachedImage> m_cachedImage; | 75 CachedResourceHandle<CachedImage> m_cachedImage; |
74 }; | 76 }; |
75 | 77 |
76 } // namespace WebCore | 78 } // namespace WebCore |
77 | 79 |
78 #endif // ENABLE(SVG) | 80 #endif // ENABLE(SVG) |
79 #endif | 81 #endif |
OLD | NEW |