| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 CollectIntersectionList, | 155 CollectIntersectionList, |
| 156 CollectEnclosureList | 156 CollectEnclosureList |
| 157 }; | 157 }; |
| 158 | 158 |
| 159 PassRefPtr<NodeList> collectIntersectionOrEnclosureList(const FloatRect&, SV
GElement*, CollectIntersectionOrEnclosure) const; | 159 PassRefPtr<NodeList> collectIntersectionOrEnclosureList(const FloatRect&, SV
GElement*, CollectIntersectionOrEnclosure) const; |
| 160 | 160 |
| 161 RefPtr<SVGAnimatedLength> m_x; | 161 RefPtr<SVGAnimatedLength> m_x; |
| 162 RefPtr<SVGAnimatedLength> m_y; | 162 RefPtr<SVGAnimatedLength> m_y; |
| 163 RefPtr<SVGAnimatedLength> m_width; | 163 RefPtr<SVGAnimatedLength> m_width; |
| 164 RefPtr<SVGAnimatedLength> m_height; | 164 RefPtr<SVGAnimatedLength> m_height; |
| 165 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGSVGElement) | |
| 166 END_DECLARE_ANIMATED_PROPERTIES | |
| 167 | 165 |
| 168 virtual AffineTransform localCoordinateSpaceTransform(SVGElement::CTMScope)
const OVERRIDE; | 166 virtual AffineTransform localCoordinateSpaceTransform(SVGElement::CTMScope)
const OVERRIDE; |
| 169 | 167 |
| 170 bool m_useCurrentView; | 168 bool m_useCurrentView; |
| 171 RefPtr<SMILTimeContainer> m_timeContainer; | 169 RefPtr<SMILTimeContainer> m_timeContainer; |
| 172 RefPtr<SVGPoint> m_translation; | 170 RefPtr<SVGPoint> m_translation; |
| 173 RefPtr<SVGViewSpec> m_viewSpec; | 171 RefPtr<SVGViewSpec> m_viewSpec; |
| 174 | 172 |
| 175 friend class SVGCurrentTranslateTearOff; | 173 friend class SVGCurrentTranslateTearOff; |
| 176 }; | 174 }; |
| 177 | 175 |
| 178 inline bool isSVGSVGElement(const Node& node) | 176 inline bool isSVGSVGElement(const Node& node) |
| 179 { | 177 { |
| 180 return node.isSVGElement() && toSVGElement(node).isSVGSVGElement(); | 178 return node.isSVGElement() && toSVGElement(node).isSVGSVGElement(); |
| 181 } | 179 } |
| 182 | 180 |
| 183 DEFINE_NODE_TYPE_CASTS_WITH_FUNCTION(SVGSVGElement); | 181 DEFINE_NODE_TYPE_CASTS_WITH_FUNCTION(SVGSVGElement); |
| 184 | 182 |
| 185 } // namespace WebCore | 183 } // namespace WebCore |
| 186 | 184 |
| 187 #endif | 185 #endif |
| OLD | NEW |