OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007, 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 REGISTER_PARENT_ANIMATED_PROPERTIES(SVGElement) | 33 REGISTER_PARENT_ANIMATED_PROPERTIES(SVGElement) |
34 END_REGISTER_ANIMATED_PROPERTIES | 34 END_REGISTER_ANIMATED_PROPERTIES |
35 | 35 |
36 inline SVGStopElement::SVGStopElement(Document& document) | 36 inline SVGStopElement::SVGStopElement(Document& document) |
37 : SVGElement(SVGNames::stopTag, document) | 37 : SVGElement(SVGNames::stopTag, document) |
38 , m_offset(SVGAnimatedNumber::create(this, SVGNames::offsetAttr, SVGNumberAc
ceptPercentage::create())) | 38 , m_offset(SVGAnimatedNumber::create(this, SVGNames::offsetAttr, SVGNumberAc
ceptPercentage::create())) |
39 { | 39 { |
40 ScriptWrappable::init(this); | 40 ScriptWrappable::init(this); |
41 | 41 |
42 addToPropertyMap(m_offset); | 42 addToPropertyMap(m_offset); |
43 registerAnimatedPropertiesForSVGStopElement(); | |
44 } | 43 } |
45 | 44 |
46 PassRefPtr<SVGStopElement> SVGStopElement::create(Document& document) | 45 PassRefPtr<SVGStopElement> SVGStopElement::create(Document& document) |
47 { | 46 { |
48 return adoptRef(new SVGStopElement(document)); | 47 return adoptRef(new SVGStopElement(document)); |
49 } | 48 } |
50 | 49 |
51 bool SVGStopElement::isSupportedAttribute(const QualifiedName& attrName) | 50 bool SVGStopElement::isSupportedAttribute(const QualifiedName& attrName) |
52 { | 51 { |
53 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); | 52 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 // which the renderer or style is null. This entire class is scheduled for r
emoval (Bug WK 86941) | 109 // which the renderer or style is null. This entire class is scheduled for r
emoval (Bug WK 86941) |
111 // and we will tolerate this null check until then. | 110 // and we will tolerate this null check until then. |
112 if (!style || !style->svgStyle()) | 111 if (!style || !style->svgStyle()) |
113 return Color(Color::transparent); // Transparent black. | 112 return Color(Color::transparent); // Transparent black. |
114 | 113 |
115 const SVGRenderStyle* svgStyle = style->svgStyle(); | 114 const SVGRenderStyle* svgStyle = style->svgStyle(); |
116 return svgStyle->stopColor().combineWithAlpha(svgStyle->stopOpacity()); | 115 return svgStyle->stopColor().combineWithAlpha(svgStyle->stopOpacity()); |
117 } | 116 } |
118 | 117 |
119 } | 118 } |
OLD | NEW |