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, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007 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 22 matching lines...) Expand all Loading... |
33 #include "SVGLangSpace.h" | 33 #include "SVGLangSpace.h" |
34 #include "SVGStyledElement.h" | 34 #include "SVGStyledElement.h" |
35 #include "SVGTests.h" | 35 #include "SVGTests.h" |
36 #include "SVGURIReference.h" | 36 #include "SVGURIReference.h" |
37 #include "SVGUnitTypes.h" | 37 #include "SVGUnitTypes.h" |
38 | 38 |
39 namespace WebCore { | 39 namespace WebCore { |
40 | 40 |
41 struct PatternAttributes; | 41 struct PatternAttributes; |
42 | 42 |
43 class SVGPatternElement : public SVGStyledElement, | 43 class SVGPatternElement FINAL : public SVGStyledElement, |
44 public SVGURIReference, | 44 public SVGURIReference, |
45 public SVGTests, | 45 public SVGTests, |
46 public SVGLangSpace, | 46 public SVGLangSpace, |
47 public SVGExternalResourcesRequired, | 47 public SVGExternalResourcesRequired, |
48 public SVGFitToViewBox { | 48 public SVGFitToViewBox { |
49 public: | 49 public: |
50 static PassRefPtr<SVGPatternElement> create(const QualifiedName&, Document*)
; | 50 static PassRefPtr<SVGPatternElement> create(const QualifiedName&, Document*)
; |
51 | 51 |
52 void collectPatternAttributes(PatternAttributes&) const; | 52 void collectPatternAttributes(PatternAttributes&) const; |
53 | 53 |
54 virtual AffineTransform localCoordinateSpaceTransform(SVGLocatable::CTMScope
) const; | 54 virtual AffineTransform localCoordinateSpaceTransform(SVGLocatable::CTMScope
) const; |
55 | 55 |
56 private: | 56 private: |
57 SVGPatternElement(const QualifiedName&, Document*); | 57 SVGPatternElement(const QualifiedName&, Document*); |
58 | 58 |
(...skipping 26 matching lines...) Expand all Loading... |
85 // SVGTests | 85 // SVGTests |
86 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe
atures(this); } | 86 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe
atures(this); } |
87 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired
Extensions(this); } | 87 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired
Extensions(this); } |
88 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua
ge(this); } | 88 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua
ge(this); } |
89 }; | 89 }; |
90 | 90 |
91 } // namespace WebCore | 91 } // namespace WebCore |
92 | 92 |
93 #endif // ENABLE(SVG) | 93 #endif // ENABLE(SVG) |
94 #endif | 94 #endif |
OLD | NEW |