| 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, 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, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #include "config.h" | 21 #include "config.h" |
| 22 | 22 |
| 23 #if ENABLE(SVG) | 23 #if ENABLE(SVG) |
| 24 #include "SVGPolyElement.h" | 24 #include "SVGPolyElement.h" |
| 25 | 25 |
| 26 #include "Attribute.h" | 26 #include "Attribute.h" |
| 27 #include "Document.h" | 27 #include "Document.h" |
| 28 #include "RenderSVGPath.h" | |
| 29 #include "RenderSVGResource.h" | |
| 30 #include "SVGAnimatedPointList.h" | 28 #include "SVGAnimatedPointList.h" |
| 31 #include "SVGElementInstance.h" | 29 #include "SVGElementInstance.h" |
| 32 #include "SVGNames.h" | 30 #include "SVGNames.h" |
| 33 #include "SVGParserUtilities.h" | 31 #include "SVGParserUtilities.h" |
| 34 #include "core/platform/graphics/FloatPoint.h" | 32 #include "core/platform/graphics/FloatPoint.h" |
| 33 #include "core/rendering/svg/RenderSVGPath.h" |
| 34 #include "core/rendering/svg/RenderSVGResource.h" |
| 35 | 35 |
| 36 namespace WebCore { | 36 namespace WebCore { |
| 37 | 37 |
| 38 // Define custom animated property 'points'. | 38 // Define custom animated property 'points'. |
| 39 const SVGPropertyInfo* SVGPolyElement::pointsPropertyInfo() | 39 const SVGPropertyInfo* SVGPolyElement::pointsPropertyInfo() |
| 40 { | 40 { |
| 41 static const SVGPropertyInfo* s_propertyInfo = 0; | 41 static const SVGPropertyInfo* s_propertyInfo = 0; |
| 42 if (!s_propertyInfo) { | 42 if (!s_propertyInfo) { |
| 43 s_propertyInfo = new SVGPropertyInfo(AnimatedPoints, | 43 s_propertyInfo = new SVGPropertyInfo(AnimatedPoints, |
| 44 PropertyIsReadWrite, | 44 PropertyIsReadWrite, |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 | 162 |
| 163 SVGListPropertyTearOff<SVGPointList>* SVGPolyElement::animatedPoints() | 163 SVGListPropertyTearOff<SVGPointList>* SVGPolyElement::animatedPoints() |
| 164 { | 164 { |
| 165 m_points.shouldSynchronize = true; | 165 m_points.shouldSynchronize = true; |
| 166 return static_cast<SVGListPropertyTearOff<SVGPointList>*>(static_pointer_cas
t<SVGAnimatedPointList>(lookupOrCreatePointsWrapper(this))->animVal()); | 166 return static_cast<SVGListPropertyTearOff<SVGPointList>*>(static_pointer_cas
t<SVGAnimatedPointList>(lookupOrCreatePointsWrapper(this))->animVal()); |
| 167 } | 167 } |
| 168 | 168 |
| 169 } | 169 } |
| 170 | 170 |
| 171 #endif // ENABLE(SVG) | 171 #endif // ENABLE(SVG) |
| OLD | NEW |