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 17 matching lines...) Expand all Loading... |
28 #include "SVGFEImage.h" | 28 #include "SVGFEImage.h" |
29 #include "SVGFilterPrimitiveStandardAttributes.h" | 29 #include "SVGFilterPrimitiveStandardAttributes.h" |
30 #include "SVGLangSpace.h" | 30 #include "SVGLangSpace.h" |
31 #include "SVGURIReference.h" | 31 #include "SVGURIReference.h" |
32 #include "core/loader/cache/CachedImage.h" | 32 #include "core/loader/cache/CachedImage.h" |
33 #include "core/loader/cache/CachedResourceHandle.h" | 33 #include "core/loader/cache/CachedResourceHandle.h" |
34 #include "core/platform/graphics/ImageBuffer.h" | 34 #include "core/platform/graphics/ImageBuffer.h" |
35 | 35 |
36 namespace WebCore { | 36 namespace WebCore { |
37 | 37 |
38 class SVGFEImageElement : public SVGFilterPrimitiveStandardAttributes, | 38 class SVGFEImageElement FINAL : public SVGFilterPrimitiveStandardAttributes, |
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 public: | 43 public: |
44 static PassRefPtr<SVGFEImageElement> create(const QualifiedName&, Document*)
; | 44 static PassRefPtr<SVGFEImageElement> create(const QualifiedName&, Document*)
; |
45 | 45 |
46 virtual ~SVGFEImageElement(); | 46 virtual ~SVGFEImageElement(); |
47 | 47 |
48 private: | 48 private: |
49 SVGFEImageElement(const QualifiedName&, Document*); | 49 SVGFEImageElement(const QualifiedName&, Document*); |
50 | 50 |
51 bool isSupportedAttribute(const QualifiedName&); | 51 bool isSupportedAttribute(const QualifiedName&); |
52 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 52 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
(...skipping 16 matching lines...) Expand all Loading... |
69 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq
uired) | 69 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq
uired) |
70 END_DECLARE_ANIMATED_PROPERTIES | 70 END_DECLARE_ANIMATED_PROPERTIES |
71 | 71 |
72 CachedResourceHandle<CachedImage> m_cachedImage; | 72 CachedResourceHandle<CachedImage> m_cachedImage; |
73 }; | 73 }; |
74 | 74 |
75 } // namespace WebCore | 75 } // namespace WebCore |
76 | 76 |
77 #endif // ENABLE(SVG) | 77 #endif // ENABLE(SVG) |
78 #endif | 78 #endif |
OLD | NEW |