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 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 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 11 matching lines...) Expand all Loading... |
22 #define SVGLinearGradientElement_h | 22 #define SVGLinearGradientElement_h |
23 | 23 |
24 #include "core/SVGNames.h" | 24 #include "core/SVGNames.h" |
25 #include "core/svg/SVGAnimatedLength.h" | 25 #include "core/svg/SVGAnimatedLength.h" |
26 #include "core/svg/SVGGradientElement.h" | 26 #include "core/svg/SVGGradientElement.h" |
27 | 27 |
28 namespace blink { | 28 namespace blink { |
29 | 29 |
30 struct LinearGradientAttributes; | 30 struct LinearGradientAttributes; |
31 | 31 |
32 class SVGLinearGradientElement FINAL : public SVGGradientElement { | 32 class SVGLinearGradientElement final : public SVGGradientElement { |
33 DEFINE_WRAPPERTYPEINFO(); | 33 DEFINE_WRAPPERTYPEINFO(); |
34 public: | 34 public: |
35 DECLARE_NODE_FACTORY(SVGLinearGradientElement); | 35 DECLARE_NODE_FACTORY(SVGLinearGradientElement); |
36 | 36 |
37 bool collectGradientAttributes(LinearGradientAttributes&); | 37 bool collectGradientAttributes(LinearGradientAttributes&); |
38 | 38 |
39 SVGAnimatedLength* x1() const { return m_x1.get(); } | 39 SVGAnimatedLength* x1() const { return m_x1.get(); } |
40 SVGAnimatedLength* y1() const { return m_y1.get(); } | 40 SVGAnimatedLength* y1() const { return m_y1.get(); } |
41 SVGAnimatedLength* x2() const { return m_x2.get(); } | 41 SVGAnimatedLength* x2() const { return m_x2.get(); } |
42 SVGAnimatedLength* y2() const { return m_y2.get(); } | 42 SVGAnimatedLength* y2() const { return m_y2.get(); } |
43 | 43 |
44 private: | 44 private: |
45 explicit SVGLinearGradientElement(Document&); | 45 explicit SVGLinearGradientElement(Document&); |
46 | 46 |
47 bool isSupportedAttribute(const QualifiedName&); | 47 bool isSupportedAttribute(const QualifiedName&); |
48 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 48 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; |
49 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; | 49 virtual void svgAttributeChanged(const QualifiedName&) override; |
50 | 50 |
51 virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE; | 51 virtual RenderObject* createRenderer(RenderStyle*) override; |
52 | 52 |
53 virtual bool selfHasRelativeLengths() const OVERRIDE; | 53 virtual bool selfHasRelativeLengths() const override; |
54 | 54 |
55 RefPtr<SVGAnimatedLength> m_x1; | 55 RefPtr<SVGAnimatedLength> m_x1; |
56 RefPtr<SVGAnimatedLength> m_y1; | 56 RefPtr<SVGAnimatedLength> m_y1; |
57 RefPtr<SVGAnimatedLength> m_x2; | 57 RefPtr<SVGAnimatedLength> m_x2; |
58 RefPtr<SVGAnimatedLength> m_y2; | 58 RefPtr<SVGAnimatedLength> m_y2; |
59 }; | 59 }; |
60 | 60 |
61 } // namespace blink | 61 } // namespace blink |
62 | 62 |
63 #endif // SVGLinearGradientElement_h | 63 #endif // SVGLinearGradientElement_h |
OLD | NEW |