OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 3 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
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 30 matching lines...) Expand all Loading... |
41 SVGUnitTypes::SVGUnitType gradientUnits() const override { return attributes
().gradientUnits(); } | 41 SVGUnitTypes::SVGUnitType gradientUnits() const override { return attributes
().gradientUnits(); } |
42 void calculateGradientTransform(AffineTransform& transform) override { trans
form = attributes().gradientTransform(); } | 42 void calculateGradientTransform(AffineTransform& transform) override { trans
form = attributes().gradientTransform(); } |
43 bool collectGradientAttributes(SVGGradientElement*) override; | 43 bool collectGradientAttributes(SVGGradientElement*) override; |
44 void buildGradient(GradientData*) const override; | 44 void buildGradient(GradientData*) const override; |
45 | 45 |
46 FloatPoint startPoint(const LinearGradientAttributes&) const; | 46 FloatPoint startPoint(const LinearGradientAttributes&) const; |
47 FloatPoint endPoint(const LinearGradientAttributes&) const; | 47 FloatPoint endPoint(const LinearGradientAttributes&) const; |
48 | 48 |
49 private: | 49 private: |
50 #if ENABLE(OILPAN) | 50 #if ENABLE(OILPAN) |
51 // FIXME: Oilpan: the LayoutObject hierarchy isn't on the heap, but | |
52 // the SVG property hierarchy is. And the two meet here, so keep a | |
53 // persistent reference to the SVG part object by way of a heap-allocated | |
54 // wrapper object. | |
55 Persistent<LinearGradientAttributesWrapper> m_attributesWrapper; | 51 Persistent<LinearGradientAttributesWrapper> m_attributesWrapper; |
56 | 52 |
57 LinearGradientAttributes& mutableAttributes() { return m_attributesWrapper->
attributes(); } | 53 LinearGradientAttributes& mutableAttributes() { return m_attributesWrapper->
attributes(); } |
58 const LinearGradientAttributes& attributes() const { return m_attributesWrap
per->attributes(); } | 54 const LinearGradientAttributes& attributes() const { return m_attributesWrap
per->attributes(); } |
59 #else | 55 #else |
60 LinearGradientAttributes m_attributes; | 56 LinearGradientAttributes m_attributes; |
61 | 57 |
62 LinearGradientAttributes& mutableAttributes() { return m_attributes; } | 58 LinearGradientAttributes& mutableAttributes() { return m_attributes; } |
63 const LinearGradientAttributes& attributes() const { return m_attributes; } | 59 const LinearGradientAttributes& attributes() const { return m_attributes; } |
64 #endif | 60 #endif |
65 }; | 61 }; |
66 | 62 |
67 } // namespace blink | 63 } // namespace blink |
68 | 64 |
69 #endif // LayoutSVGResourceLinearGradient_h | 65 #endif // LayoutSVGResourceLinearGradient_h |
OLD | NEW |