OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 if (child->node()->hasTagName(SVGNames::altGlyphTag)) | 44 if (child->node()->hasTagName(SVGNames::altGlyphTag)) |
45 return false; | 45 return false; |
46 #endif | 46 #endif |
47 | 47 |
48 return child->isSVGInline() && !child->isSVGTextPath(); | 48 return child->isSVGInline() && !child->isSVGTextPath(); |
49 } | 49 } |
50 | 50 |
51 Path RenderSVGTextPath::layoutPath() const | 51 Path RenderSVGTextPath::layoutPath() const |
52 { | 52 { |
53 SVGTextPathElement* textPathElement = toSVGTextPathElement(node()); | 53 SVGTextPathElement* textPathElement = toSVGTextPathElement(node()); |
54 Element* targetElement = SVGURIReference::targetElementFromIRIString(textPat
hElement->hrefCurrentValue(), textPathElement->document()); | 54 Element* targetElement = SVGURIReference::targetElementFromIRIString(textPat
hElement->href()->currentValue()->value(), textPathElement->document()); |
55 if (!targetElement || !targetElement->hasTagName(SVGNames::pathTag)) | 55 if (!targetElement || !targetElement->hasTagName(SVGNames::pathTag)) |
56 return Path(); | 56 return Path(); |
57 | 57 |
58 SVGPathElement* pathElement = toSVGPathElement(targetElement); | 58 SVGPathElement* pathElement = toSVGPathElement(targetElement); |
59 | 59 |
60 Path pathData; | 60 Path pathData; |
61 updatePathFromGraphicsElement(pathElement, pathData); | 61 updatePathFromGraphicsElement(pathElement, pathData); |
62 | 62 |
63 // Spec: The transform attribute on the referenced 'path' element represent
s a | 63 // Spec: The transform attribute on the referenced 'path' element represent
s a |
64 // supplemental transformation relative to the current user coordinate syste
m for | 64 // supplemental transformation relative to the current user coordinate syste
m for |
65 // the current 'text' element, including any adjustments to the current user
coordinate | 65 // the current 'text' element, including any adjustments to the current user
coordinate |
66 // system due to a possible transform attribute on the current 'text' elemen
t. | 66 // system due to a possible transform attribute on the current 'text' elemen
t. |
67 // http://www.w3.org/TR/SVG/text.html#TextPathElement | 67 // http://www.w3.org/TR/SVG/text.html#TextPathElement |
68 pathData.transform(pathElement->animatedLocalTransform()); | 68 pathData.transform(pathElement->animatedLocalTransform()); |
69 return pathData; | 69 return pathData; |
70 } | 70 } |
71 | 71 |
72 float RenderSVGTextPath::startOffset() const | 72 float RenderSVGTextPath::startOffset() const |
73 { | 73 { |
74 return toSVGTextPathElement(node())->startOffset()->currentValue()->valueAsP
ercentage(); | 74 return toSVGTextPathElement(node())->startOffset()->currentValue()->valueAsP
ercentage(); |
75 } | 75 } |
76 | 76 |
77 } | 77 } |
OLD | NEW |