Upstream version 11.40.277.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / rendering / svg / RenderSVGTextPath.cpp
1 /*
2  * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public License
15  * along with this library; see the file COPYING.LIB.  If not, write to
16  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #include "config.h"
21
22 #include "core/rendering/svg/RenderSVGTextPath.h"
23
24 #include "core/rendering/svg/SVGPathData.h"
25 #include "core/rendering/svg/SVGRenderSupport.h"
26 #include "core/svg/SVGPathElement.h"
27 #include "core/svg/SVGTextPathElement.h"
28
29 namespace blink {
30
31 RenderSVGTextPath::RenderSVGTextPath(Element* element)
32     : RenderSVGInline(element)
33 {
34 }
35
36 bool RenderSVGTextPath::isChildAllowed(RenderObject* child, RenderStyle*) const
37 {
38     if (child->isText())
39         return SVGRenderSupport::isRenderableTextNode(child);
40
41     return child->isSVGInline() && !child->isSVGTextPath();
42 }
43
44 Path RenderSVGTextPath::layoutPath() const
45 {
46     SVGTextPathElement* textPathElement = toSVGTextPathElement(node());
47     Element* targetElement = SVGURIReference::targetElementFromIRIString(textPathElement->href()->currentValue()->value(), textPathElement->treeScope());
48     if (!isSVGPathElement(targetElement))
49         return Path();
50
51     SVGPathElement& pathElement = toSVGPathElement(*targetElement);
52
53     Path pathData;
54     updatePathFromGraphicsElement(&pathElement, pathData);
55
56     // Spec:  The transform attribute on the referenced 'path' element represents a
57     // supplemental transformation relative to the current user coordinate system for
58     // the current 'text' element, including any adjustments to the current user coordinate
59     // system due to a possible transform attribute on the current 'text' element.
60     // http://www.w3.org/TR/SVG/text.html#TextPathElement
61     pathData.transform(pathElement.calculateAnimatedLocalTransform());
62     return pathData;
63 }
64
65 float RenderSVGTextPath::startOffset() const
66 {
67     return toSVGTextPathElement(node())->startOffset()->currentValue()->valueAsPercentage();
68 }
69
70 }