Commit 128aa56e by Dmitry Baranovskiy

Added multiline text

parent 1dc96df7
...@@ -827,12 +827,12 @@ var Raphael = (function () { ...@@ -827,12 +827,12 @@ var Raphael = (function () {
case "stroke-dasharray": case "stroke-dasharray":
addDashes(o, value); addDashes(o, value);
break; break;
case "text": // case "text":
if (o.type == "text") { // if (o.type == "text") {
o.node.childNodes.length && o.node.removeChild(o.node.firstChild); // o.node.childNodes.length && o.node.removeChild(o.node.firstChild);
o.node.appendChild(doc.createTextNode(value)); // o.node.appendChild(doc.createTextNode(value));
} // }
break; // break;
case "rotation": case "rotation":
o.rotate(value, true); o.rotate(value, true);
break; break;
...@@ -919,6 +919,7 @@ var Raphael = (function () { ...@@ -919,6 +919,7 @@ var Raphael = (function () {
break; break;
} }
} }
tuneText(o, params);
}; };
var Element = function (node, svg) { var Element = function (node, svg) {
var X = 0, var X = 0,
...@@ -950,7 +951,7 @@ var Raphael = (function () { ...@@ -950,7 +951,7 @@ var Raphael = (function () {
case "rect": case "rect":
case "image": case "image":
case "text": case "text":
this.attr({x: this.attrs.x + x, y: this.attrs.y + y}); this.attr({x: this.attrs.x + +x, y: this.attrs.y + +y});
break; break;
case "path": case "path":
var path = pathToRelative(this.attrs.path); var path = pathToRelative(this.attrs.path);
...@@ -1137,14 +1138,47 @@ var Raphael = (function () { ...@@ -1137,14 +1138,47 @@ var Raphael = (function () {
res.type = "image"; res.type = "image";
return res; return res;
}; };
var leading = 1.2;
var tuneText = function (element, params) {
if (element.type != "text") {
return;
}
var fontSize = element.node.firstChild ? parseInt(doc.defaultView.getComputedStyle(element.node.firstChild, "").getPropertyValue("font-size"), 10) : 10;
var height = 0;
if ("text" in params) {
while (element.node.firstChild) {
element.node.removeChild(element.node.firstChild);
}
var texts = (params.text + "").split("\n");
for (var i = 0, ii = texts.length; i < ii; i++) {
var tspan = doc.createElementNS(element.svg.svgns, "tspan");
i && tspan.setAttribute("dy", fontSize * leading);
tspan.setAttribute("x", element.attrs.x);
tspan.appendChild(doc.createTextNode(texts[i]));
element.node.appendChild(tspan);
height += fontSize * leading;
}
} else if ("font" in params || "font-size" in params) {
var texts = element.node.getElementsByTagName("tspan");
for (var i = 0, ii = texts.length; i < ii; i++) {
i && texts[i].setAttribute("dy", fontSize * leading);
height += fontSize * leading;
}
}
height -= fontSize * (leading - 1);
var dif = height / 2 - fontSize;
if (dif) {
element.node.setAttribute("y", element.attrs.y - dif);
}
setTimeout(function () {
});
};
var theText = function (svg, x, y, text) { var theText = function (svg, x, y, text) {
var el = doc.createElementNS(svg.svgns, "text"); var el = doc.createElementNS(svg.svgns, "text");
el.setAttribute("x", x); el.setAttribute("x", x);
el.setAttribute("y", y); el.setAttribute("y", y);
el.setAttribute("text-anchor", "middle"); el.setAttribute("text-anchor", "middle");
if (text) {
el.appendChild(doc.createTextNode(text));
}
if (svg.canvas) { if (svg.canvas) {
svg.canvas.appendChild(el); svg.canvas.appendChild(el);
} }
...@@ -1153,7 +1187,7 @@ var Raphael = (function () { ...@@ -1153,7 +1187,7 @@ var Raphael = (function () {
res.attrs.x = x; res.attrs.x = x;
res.attrs.y = y; res.attrs.y = y;
res.type = "text"; res.type = "text";
setFillAndStroke(res, {font: '10px "Arial"', stroke: "none", fill: "#000"}); setFillAndStroke(res, {font: '10px "Arial"', stroke: "none", fill: "#000", text: text});
return res; return res;
}; };
var theGroup = function (svg) { var theGroup = function (svg) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment