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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 public SVGExternalResourcesRequired, | 47 public SVGExternalResourcesRequired, |
48 public SVGFitToViewBox { | 48 public SVGFitToViewBox { |
49 DEFINE_SELF_HANDLE(SVGPatternElement) | 49 DEFINE_SELF_HANDLE(SVGPatternElement) |
50 public: | 50 public: |
51 static PassRefPtr<SVGPatternElement> create(const QualifiedName&, const Hand
le<Document>&); | 51 static PassRefPtr<SVGPatternElement> create(const QualifiedName&, const Hand
le<Document>&); |
52 | 52 |
53 void collectPatternAttributes(PatternAttributes&) const; | 53 void collectPatternAttributes(PatternAttributes&) const; |
54 | 54 |
55 virtual AffineTransform localCoordinateSpaceTransform(SVGLocatable::CTMScope
) const; | 55 virtual AffineTransform localCoordinateSpaceTransform(SVGLocatable::CTMScope
) const; |
56 | 56 |
| 57 virtual void accept(Visitor* visitor) const OVERRIDE { SVGStyledElement::acc
ept(visitor); } |
| 58 |
57 private: | 59 private: |
58 SVGPatternElement(const QualifiedName&, const Handle<Document>&); | 60 SVGPatternElement(const QualifiedName&, const Handle<Document>&); |
59 | 61 |
60 virtual bool isValid() const { return SVGTests::isValid(); } | 62 virtual bool isValid() const { return SVGTests::isValid(); } |
61 virtual bool needsPendingResourceHandling() const { return false; } | 63 virtual bool needsPendingResourceHandling() const { return false; } |
62 | 64 |
63 bool isSupportedAttribute(const QualifiedName&); | 65 bool isSupportedAttribute(const QualifiedName&); |
64 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 66 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
65 virtual void svgAttributeChanged(const QualifiedName&); | 67 virtual void svgAttributeChanged(const QualifiedName&); |
66 virtual void childrenChanged(bool changedByParser = false, const Handle<Node
>& beforeChange = nullptr, const Handle<Node>& afterChange = nullptr, int childC
ountDelta = 0); | 68 virtual void childrenChanged(bool changedByParser = false, const Handle<Node
>& beforeChange = nullptr, const Handle<Node>& afterChange = nullptr, int childC
ountDelta = 0); |
(...skipping 19 matching lines...) Expand all Loading... |
86 // SVGTests | 88 // SVGTests |
87 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe
atures(this); } | 89 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe
atures(this); } |
88 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired
Extensions(this); } | 90 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired
Extensions(this); } |
89 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua
ge(this); } | 91 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua
ge(this); } |
90 }; | 92 }; |
91 | 93 |
92 } // namespace WebCore | 94 } // namespace WebCore |
93 | 95 |
94 #endif // ENABLE(SVG) | 96 #endif // ENABLE(SVG) |
95 #endif | 97 #endif |
OLD | NEW |