OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> | 2 * Copyright (C) 2004, 2005, 2006, 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 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 14 matching lines...) Expand all Loading... |
25 | 25 |
26 #include "XLinkNames.h" | 26 #include "XLinkNames.h" |
27 #include "core/dom/ElementTraversal.h" | 27 #include "core/dom/ElementTraversal.h" |
28 #include "core/rendering/svg/RenderSVGResourcePattern.h" | 28 #include "core/rendering/svg/RenderSVGResourcePattern.h" |
29 #include "core/svg/PatternAttributes.h" | 29 #include "core/svg/PatternAttributes.h" |
30 #include "core/svg/SVGElementInstance.h" | 30 #include "core/svg/SVGElementInstance.h" |
31 #include "platform/transforms/AffineTransform.h" | 31 #include "platform/transforms/AffineTransform.h" |
32 | 32 |
33 namespace WebCore { | 33 namespace WebCore { |
34 | 34 |
35 // Animated property definitions | |
36 BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGPatternElement) | |
37 REGISTER_PARENT_ANIMATED_PROPERTIES(SVGElement) | |
38 END_REGISTER_ANIMATED_PROPERTIES | |
39 | |
40 inline SVGPatternElement::SVGPatternElement(Document& document) | 35 inline SVGPatternElement::SVGPatternElement(Document& document) |
41 : SVGElement(SVGNames::patternTag, document) | 36 : SVGElement(SVGNames::patternTag, document) |
42 , SVGURIReference(this) | 37 , SVGURIReference(this) |
43 , SVGTests(this) | 38 , SVGTests(this) |
44 , SVGFitToViewBox(this) | 39 , SVGFitToViewBox(this) |
45 , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(Len
gthModeWidth))) | 40 , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(Len
gthModeWidth))) |
46 , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(Len
gthModeHeight))) | 41 , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(Len
gthModeHeight))) |
47 , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::cr
eate(LengthModeWidth))) | 42 , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::cr
eate(LengthModeWidth))) |
48 , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::
create(LengthModeHeight))) | 43 , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::
create(LengthModeHeight))) |
49 , m_patternTransform(SVGAnimatedTransformList::create(this, SVGNames::patter
nTransformAttr, SVGTransformList::create())) | 44 , m_patternTransform(SVGAnimatedTransformList::create(this, SVGNames::patter
nTransformAttr, SVGTransformList::create())) |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 | 215 |
221 bool SVGPatternElement::selfHasRelativeLengths() const | 216 bool SVGPatternElement::selfHasRelativeLengths() const |
222 { | 217 { |
223 return m_x->currentValue()->isRelative() | 218 return m_x->currentValue()->isRelative() |
224 || m_y->currentValue()->isRelative() | 219 || m_y->currentValue()->isRelative() |
225 || m_width->currentValue()->isRelative() | 220 || m_width->currentValue()->isRelative() |
226 || m_height->currentValue()->isRelative(); | 221 || m_height->currentValue()->isRelative(); |
227 } | 222 } |
228 | 223 |
229 } | 224 } |
OLD | NEW |