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 10 matching lines...) Expand all Loading... |
21 #ifndef SVGFEImageElement_h | 21 #ifndef SVGFEImageElement_h |
22 #define SVGFEImageElement_h | 22 #define SVGFEImageElement_h |
23 | 23 |
24 #include "core/loader/cache/CachedImage.h" | 24 #include "core/loader/cache/CachedImage.h" |
25 #include "core/loader/cache/CachedResourceHandle.h" | 25 #include "core/loader/cache/CachedResourceHandle.h" |
26 #include "core/platform/graphics/ImageBuffer.h" | 26 #include "core/platform/graphics/ImageBuffer.h" |
27 #include "core/svg/SVGAnimatedBoolean.h" | 27 #include "core/svg/SVGAnimatedBoolean.h" |
28 #include "core/svg/SVGAnimatedPreserveAspectRatio.h" | 28 #include "core/svg/SVGAnimatedPreserveAspectRatio.h" |
29 #include "core/svg/SVGExternalResourcesRequired.h" | 29 #include "core/svg/SVGExternalResourcesRequired.h" |
30 #include "core/svg/SVGFilterPrimitiveStandardAttributes.h" | 30 #include "core/svg/SVGFilterPrimitiveStandardAttributes.h" |
31 #include "core/svg/SVGLangSpace.h" | |
32 #include "core/svg/SVGURIReference.h" | 31 #include "core/svg/SVGURIReference.h" |
33 #include "core/svg/graphics/filters/SVGFEImage.h" | 32 #include "core/svg/graphics/filters/SVGFEImage.h" |
34 | 33 |
35 namespace WebCore { | 34 namespace WebCore { |
36 | 35 |
37 class SVGFEImageElement FINAL : public SVGFilterPrimitiveStandardAttributes, | 36 class SVGFEImageElement FINAL : public SVGFilterPrimitiveStandardAttributes, |
38 public SVGURIReference, | 37 public SVGURIReference, |
39 public SVGLangSpace, | |
40 public SVGExternalResourcesRequired, | 38 public SVGExternalResourcesRequired, |
41 public CachedImageClient { | 39 public CachedImageClient { |
42 public: | 40 public: |
43 static PassRefPtr<SVGFEImageElement> create(const QualifiedName&, Document*)
; | 41 static PassRefPtr<SVGFEImageElement> create(const QualifiedName&, Document*)
; |
44 | 42 |
45 virtual ~SVGFEImageElement(); | 43 virtual ~SVGFEImageElement(); |
46 | 44 |
47 private: | 45 private: |
48 SVGFEImageElement(const QualifiedName&, Document*); | 46 SVGFEImageElement(const QualifiedName&, Document*); |
49 | 47 |
(...skipping 17 matching lines...) Expand all Loading... |
67 DECLARE_ANIMATED_STRING(Href, href) | 65 DECLARE_ANIMATED_STRING(Href, href) |
68 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq
uired) | 66 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq
uired) |
69 END_DECLARE_ANIMATED_PROPERTIES | 67 END_DECLARE_ANIMATED_PROPERTIES |
70 | 68 |
71 CachedResourceHandle<CachedImage> m_cachedImage; | 69 CachedResourceHandle<CachedImage> m_cachedImage; |
72 }; | 70 }; |
73 | 71 |
74 } // namespace WebCore | 72 } // namespace WebCore |
75 | 73 |
76 #endif | 74 #endif |
OLD | NEW |