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, |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 return SVGAnimatedProperty::lookupOrCreateWrapper<SVGPathElement, SVGAnimate
dPathSegListPropertyTearOff, SVGPathSegList> | 320 return SVGAnimatedProperty::lookupOrCreateWrapper<SVGPathElement, SVGAnimate
dPathSegListPropertyTearOff, SVGPathSegList> |
321 (ownerType, dPropertyInfo(), ownerType->m_pathSegList.value); | 321 (ownerType, dPropertyInfo(), ownerType->m_pathSegList.value); |
322 } | 322 } |
323 | 323 |
324 void SVGPathElement::synchronizeD(SVGElement* contextElement) | 324 void SVGPathElement::synchronizeD(SVGElement* contextElement) |
325 { | 325 { |
326 ASSERT(contextElement); | 326 ASSERT(contextElement); |
327 SVGPathElement* ownerType = toSVGPathElement(contextElement); | 327 SVGPathElement* ownerType = toSVGPathElement(contextElement); |
328 if (!ownerType->m_pathSegList.shouldSynchronize) | 328 if (!ownerType->m_pathSegList.shouldSynchronize) |
329 return; | 329 return; |
330 ownerType->m_pathSegList.synchronize(ownerType, dPropertyInfo()->attributeNa
me, ownerType->m_pathSegList.value.valueAsString()); | 330 ownerType->m_pathSegList.synchronize(ownerType, dPropertyInfo()->attributeNa
me, AtomicString(ownerType->m_pathSegList.value.valueAsString())); |
331 } | 331 } |
332 | 332 |
333 SVGPathSegListPropertyTearOff* SVGPathElement::pathSegList() | 333 SVGPathSegListPropertyTearOff* SVGPathElement::pathSegList() |
334 { | 334 { |
335 m_pathSegList.shouldSynchronize = true; | 335 m_pathSegList.shouldSynchronize = true; |
336 return static_cast<SVGPathSegListPropertyTearOff*>(static_pointer_cast<SVGAn
imatedPathSegListPropertyTearOff>(lookupOrCreateDWrapper(this))->baseVal()); | 336 return static_cast<SVGPathSegListPropertyTearOff*>(static_pointer_cast<SVGAn
imatedPathSegListPropertyTearOff>(lookupOrCreateDWrapper(this))->baseVal()); |
337 } | 337 } |
338 | 338 |
339 SVGPathSegListPropertyTearOff* SVGPathElement::normalizedPathSegList() | 339 SVGPathSegListPropertyTearOff* SVGPathElement::normalizedPathSegList() |
340 { | 340 { |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 return renderer->path().boundingRect(); | 397 return renderer->path().boundingRect(); |
398 } | 398 } |
399 | 399 |
400 RenderObject* SVGPathElement::createRenderer(RenderStyle*) | 400 RenderObject* SVGPathElement::createRenderer(RenderStyle*) |
401 { | 401 { |
402 // By default, any subclass is expected to do path-based drawing | 402 // By default, any subclass is expected to do path-based drawing |
403 return new RenderSVGPath(this); | 403 return new RenderSVGPath(this); |
404 } | 404 } |
405 | 405 |
406 } | 406 } |
OLD | NEW |