2009-06-02 11:09:49 +00:00
|
|
|
var svgcanvas = null;
|
2009-06-01 17:35:22 +00:00
|
|
|
|
2009-06-23 05:17:53 +00:00
|
|
|
if(!window.console) {
|
|
|
|
window.console = new function() {
|
|
|
|
this.log = function(str) {};
|
|
|
|
this.dir = function(str) {};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2009-06-07 00:17:21 +00:00
|
|
|
function SvgCanvas(c)
|
2009-06-01 17:35:22 +00:00
|
|
|
{
|
|
|
|
|
2009-06-01 21:24:30 +00:00
|
|
|
// private members
|
2009-06-09 22:13:13 +00:00
|
|
|
var canvas = this;
|
2009-06-07 00:17:21 +00:00
|
|
|
var container = c;
|
2009-06-01 21:24:30 +00:00
|
|
|
var svgns = "http://www.w3.org/2000/svg";
|
2009-06-07 00:17:21 +00:00
|
|
|
|
2009-06-12 06:45:37 +00:00
|
|
|
var idprefix = "svg_";
|
2009-06-07 00:17:21 +00:00
|
|
|
var svgdoc = c.ownerDocument;
|
|
|
|
var svgroot = svgdoc.createElementNS(svgns, "svg");
|
2009-06-07 10:27:55 +00:00
|
|
|
svgroot.setAttribute("width", 640);
|
|
|
|
svgroot.setAttribute("height", 480);
|
2009-06-08 15:05:12 +00:00
|
|
|
svgroot.setAttribute("id", "svgroot");
|
2009-06-08 08:09:15 +00:00
|
|
|
svgroot.setAttribute("xmlns", svgns);
|
2009-06-07 00:17:21 +00:00
|
|
|
container.appendChild(svgroot);
|
|
|
|
|
2009-06-02 16:40:33 +00:00
|
|
|
var d_attr = null;
|
|
|
|
var started = false;
|
2009-06-01 21:24:30 +00:00
|
|
|
var obj_num = 1;
|
2009-06-02 16:40:33 +00:00
|
|
|
var start_x = null;
|
|
|
|
var start_y = null;
|
|
|
|
var current_mode = "path";
|
2009-06-23 05:17:53 +00:00
|
|
|
var current_resize_mode = "none";
|
2009-06-02 16:40:33 +00:00
|
|
|
var current_fill = "none";
|
|
|
|
var current_stroke = "black";
|
|
|
|
var current_stroke_width = 1;
|
|
|
|
var current_stroke_style = "none";
|
|
|
|
var current_opacity = 1;
|
2009-06-04 13:43:58 +00:00
|
|
|
var current_stroke_opacity = 1;
|
|
|
|
var current_fill_opacity = 1;
|
2009-06-10 03:12:19 +00:00
|
|
|
var current_font_size = "12pt";
|
|
|
|
var current_font_family = "serif";
|
2009-06-01 21:24:30 +00:00
|
|
|
var freehand_min_x = null;
|
|
|
|
var freehand_max_x = null;
|
|
|
|
var freehand_min_y = null;
|
|
|
|
var freehand_max_y = null;
|
2009-06-03 08:41:25 +00:00
|
|
|
var selected = null;
|
2009-06-07 05:07:23 +00:00
|
|
|
var selectedOutline = null;
|
2009-06-23 05:17:53 +00:00
|
|
|
var selectedBBox = null;
|
2009-06-23 07:48:15 +00:00
|
|
|
var selectedGrips = { "nw":null,
|
2009-06-18 05:08:47 +00:00
|
|
|
"n":null,
|
|
|
|
"ne":null,
|
|
|
|
"w":null,
|
|
|
|
"e":null,
|
|
|
|
"sw":null,
|
|
|
|
"s":null,
|
|
|
|
"se":null,
|
|
|
|
};
|
2009-06-23 07:48:15 +00:00
|
|
|
var selectedOperation = 'resize'; // could be {resize,rotate}
|
2009-06-06 18:34:42 +00:00
|
|
|
var events = {};
|
2009-06-01 21:24:30 +00:00
|
|
|
|
|
|
|
// private functions
|
2009-06-05 12:33:02 +00:00
|
|
|
var getId = function() {
|
2009-06-12 18:34:28 +00:00
|
|
|
if (events["getid"]) return call("getid",obj_num);
|
2009-06-12 06:45:37 +00:00
|
|
|
return idprefix+obj_num;
|
2009-06-05 12:33:02 +00:00
|
|
|
}
|
2009-06-01 21:24:30 +00:00
|
|
|
|
2009-06-06 18:34:42 +00:00
|
|
|
var call = function(event, arg) {
|
|
|
|
if (events[event]) {
|
|
|
|
return events[event](this,arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-01 21:24:30 +00:00
|
|
|
var assignAttributes = function(node, attrs) {
|
|
|
|
for (i in attrs) {
|
|
|
|
node.setAttributeNS(null, i, attrs[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-02 16:40:33 +00:00
|
|
|
// remove unneeded attributes
|
|
|
|
// makes resulting SVG smaller
|
|
|
|
var cleanupElement = function(element) {
|
|
|
|
if (element.getAttribute('fill-opacity') == '1')
|
|
|
|
element.removeAttribute('fill-opacity');
|
|
|
|
if (element.getAttribute('opacity') == '1')
|
|
|
|
element.removeAttribute('opacity');
|
|
|
|
if (element.getAttribute('stroke') == 'none')
|
|
|
|
element.removeAttribute('stroke');
|
|
|
|
if (element.getAttribute('stroke-dasharray') == 'none')
|
|
|
|
element.removeAttribute('stroke-dasharray');
|
|
|
|
if (element.getAttribute('stroke-opacity') == '1')
|
|
|
|
element.removeAttribute('stroke-opacity');
|
|
|
|
if (element.getAttribute('stroke-width') == '1')
|
|
|
|
element.removeAttribute('stroke-width');
|
2009-06-11 15:18:46 +00:00
|
|
|
if (element.getAttribute('rx') == '0')
|
|
|
|
element.removeAttribute('rx')
|
|
|
|
if (element.getAttribute('ry') == '0')
|
|
|
|
element.removeAttribute('ry')
|
2009-06-02 16:40:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var addSvgElementFromJson = function(data) {
|
2009-06-09 22:13:13 +00:00
|
|
|
return canvas.updateElementFromJson(data)
|
2009-06-01 21:24:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var svgToString = function(elem, indent) {
|
2009-06-17 03:20:42 +00:00
|
|
|
// TODO: could use the array.join() optimization trick here too
|
2009-06-01 21:24:30 +00:00
|
|
|
var out = "";
|
|
|
|
if (elem) {
|
|
|
|
var attrs = elem.attributes;
|
|
|
|
var attr;
|
|
|
|
var i;
|
|
|
|
var childs = elem.childNodes;
|
|
|
|
for (i=0; i<indent; i++) out += " ";
|
|
|
|
out += "<" + elem.nodeName;
|
|
|
|
for (i=attrs.length-1; i>=0; i--) {
|
|
|
|
attr = attrs.item(i);
|
2009-06-16 02:52:36 +00:00
|
|
|
if (attr.nodeValue != "") {
|
|
|
|
out += " " + attr.nodeName + "=\"" + attr.nodeValue+ "\"";
|
|
|
|
}
|
2009-06-01 21:24:30 +00:00
|
|
|
}
|
|
|
|
if (elem.hasChildNodes()) {
|
2009-06-16 02:52:36 +00:00
|
|
|
out += ">\n";
|
2009-06-01 21:24:30 +00:00
|
|
|
indent++;
|
|
|
|
for (i=0; i<childs.length; i++)
|
|
|
|
{
|
2009-06-02 16:40:33 +00:00
|
|
|
if (childs.item(i).nodeType == 1) { // element node
|
|
|
|
out = out + svgToString(childs.item(i), indent);
|
|
|
|
} else if (childs.item(i).nodeType == 3) { // text node
|
|
|
|
for (j=0; j<indent; j++) out += " ";
|
2009-06-08 07:24:58 +00:00
|
|
|
out += childs.item(i).nodeValue + "";
|
2009-06-01 21:24:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
indent--;
|
|
|
|
for (i=0; i<indent; i++) out += " ";
|
2009-06-16 02:52:36 +00:00
|
|
|
out += "</" + elem.nodeName + ">\n";
|
2009-06-01 21:24:30 +00:00
|
|
|
} else {
|
2009-06-16 02:52:36 +00:00
|
|
|
out += " />\n";
|
2009-06-01 21:24:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return out;
|
2009-06-07 05:07:23 +00:00
|
|
|
} // end svgToString()
|
2009-06-01 21:24:30 +00:00
|
|
|
|
2009-06-23 05:17:53 +00:00
|
|
|
function recalculateSelectedDimensions() {
|
|
|
|
var box = selected.getBBox();
|
|
|
|
var remapx = function(x) {return ((x-box.x)/box.width)*selectedBBox.width + selectedBBox.x;}
|
|
|
|
var remapy = function(y) {return ((y-box.y)/box.height)*selectedBBox.height + selectedBBox.y;}
|
|
|
|
var scalew = function(w) {return w*selectedBBox.width/box.width;}
|
|
|
|
var scaleh = function(h) {return h*selectedBBox.height/box.height;}
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-23 05:17:53 +00:00
|
|
|
selected.removeAttribute("transform");
|
|
|
|
switch (selected.tagName)
|
|
|
|
{
|
|
|
|
case "path":
|
|
|
|
// extract the x,y from the path, adjust it and write back the new path
|
|
|
|
var M = selected.pathSegList.getItem(0);
|
|
|
|
var curx = M.x, cury = M.y;
|
|
|
|
var newd = "M" + remapx(curx) + "," + remapy(cury);
|
|
|
|
for (var i = 1; i < selected.pathSegList.numberOfItems; ++i) {
|
|
|
|
var l = selected.pathSegList.getItem(i);
|
|
|
|
var x = l.x, y = l.y;
|
|
|
|
// webkit browsers normalize things and this becomes an absolute
|
|
|
|
// line segment! we need to turn this back into a rel line segment
|
|
|
|
// see https://bugs.webkit.org/show_bug.cgi?id=26487
|
|
|
|
if (l.pathSegType == 4) {
|
|
|
|
x -= curx;
|
|
|
|
y -= cury;
|
|
|
|
curx += x;
|
|
|
|
cury += y;
|
|
|
|
}
|
|
|
|
// we only need to scale the relative coordinates (no need to translate)
|
|
|
|
newd += " l" + scalew(x) + "," + scaleh(y);
|
|
|
|
}
|
|
|
|
selected.setAttributeNS(null, "d", newd);
|
|
|
|
break;
|
|
|
|
case "line":
|
|
|
|
selected.x1.baseVal.value = remapx(selected.x1.baseVal.value);
|
|
|
|
selected.y1.baseVal.value = remapy(selected.y1.baseVal.value);
|
|
|
|
selected.x2.baseVal.value = remapx(selected.x2.baseVal.value);
|
|
|
|
selected.y2.baseVal.value = remapy(selected.y2.baseVal.value);
|
|
|
|
break;
|
|
|
|
case "circle":
|
|
|
|
selected.cx.baseVal.value = remapx(selected.cx.baseVal.value);
|
|
|
|
selected.cy.baseVal.value = remapy(selected.cy.baseVal.value);
|
|
|
|
// take the minimum of the new selected box's dimensions for the new circle radius
|
|
|
|
selected.r.baseVal.value = Math.min(selectedBBox.width/2,selectedBBox.height/2);
|
|
|
|
break;
|
|
|
|
case "ellipse":
|
|
|
|
selected.cx.baseVal.value = remapx(selected.cx.baseVal.value);
|
|
|
|
selected.cy.baseVal.value = remapy(selected.cy.baseVal.value);
|
|
|
|
selected.rx.baseVal.value = scalew(selected.rx.baseVal.value);
|
|
|
|
selected.ry.baseVal.value = scaleh(selected.ry.baseVal.value);
|
|
|
|
break;
|
|
|
|
case "text":
|
|
|
|
// cannot use x.baseVal.value here because x is a SVGLengthList
|
|
|
|
selected.setAttribute("x", remapx(selected.getAttribute("x")));
|
|
|
|
selected.setAttribute("y", remapy(selected.getAttribute("y")));
|
|
|
|
break;
|
|
|
|
case "rect":
|
|
|
|
selected.x.baseVal.value = remapx(selected.x.baseVal.value);
|
|
|
|
selected.y.baseVal.value = remapy(selected.y.baseVal.value);
|
|
|
|
selected.width.baseVal.value = scalew(selected.width.baseVal.value);
|
|
|
|
selected.height.baseVal.value = scaleh(selected.height.baseVal.value);
|
|
|
|
break;
|
|
|
|
default: // rect
|
|
|
|
console.log("Unknown shape type: " + selected.tagName);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// fire changed event
|
|
|
|
call("changed", selected);
|
|
|
|
}
|
|
|
|
|
|
|
|
var recalculateSelectedOutline = function() {
|
|
|
|
if (selected != null && selectedOutline != null) {
|
|
|
|
var bbox = selectedBBox;
|
|
|
|
var selectedBox = selectedOutline.firstChild;
|
|
|
|
var sw = parseInt(selected.getAttribute("stroke-width"));
|
|
|
|
var offset = 1;
|
|
|
|
if (!isNaN(sw)) {
|
|
|
|
offset += sw/2;
|
|
|
|
}
|
|
|
|
if (selected.tagName == "text") {
|
|
|
|
offset += 2;
|
|
|
|
}
|
|
|
|
var l=bbox.x-offset, t=bbox.y-offset, w=bbox.width+(offset<<1), h=bbox.height+(offset<<1);
|
|
|
|
selectedBox.x.baseVal.value = l;
|
|
|
|
selectedBox.y.baseVal.value = t;
|
|
|
|
selectedBox.width.baseVal.value = w;
|
|
|
|
selectedBox.height.baseVal.value = h;
|
2009-06-24 13:49:16 +00:00
|
|
|
selectedGrips.nw.x.baseVal.value = l-3;
|
|
|
|
selectedGrips.nw.y.baseVal.value = t-3;
|
|
|
|
selectedGrips.ne.x.baseVal.value = l+w-3;
|
|
|
|
selectedGrips.ne.y.baseVal.value = t-3;
|
|
|
|
selectedGrips.sw.x.baseVal.value = l-3;
|
|
|
|
selectedGrips.sw.y.baseVal.value = t+h-3;
|
|
|
|
selectedGrips.se.x.baseVal.value = l+w-3;
|
|
|
|
selectedGrips.se.y.baseVal.value = t+h-3;
|
|
|
|
selectedGrips.n.x.baseVal.value = l+w/2-3;
|
|
|
|
selectedGrips.n.y.baseVal.value = t-3;
|
|
|
|
selectedGrips.w.x.baseVal.value = l-3;
|
|
|
|
selectedGrips.w.y.baseVal.value = t+h/2-3;
|
|
|
|
selectedGrips.e.x.baseVal.value = l+w-3;
|
|
|
|
selectedGrips.e.y.baseVal.value = t+h/2-3;
|
|
|
|
selectedGrips.s.x.baseVal.value = l+w/2-3;
|
|
|
|
selectedGrips.s.y.baseVal.value = t+h-3;
|
2009-06-23 07:48:15 +00:00
|
|
|
}
|
2009-06-23 05:17:53 +00:00
|
|
|
}
|
|
|
|
|
2009-06-02 12:52:44 +00:00
|
|
|
// public events
|
2009-06-07 05:07:23 +00:00
|
|
|
// call this function to set the selected element
|
|
|
|
// call this function with null to clear the selected element
|
2009-06-23 07:48:15 +00:00
|
|
|
var selectElement = function(newSelected)
|
2009-06-07 05:07:23 +00:00
|
|
|
{
|
2009-06-08 12:46:04 +00:00
|
|
|
if (selected == newSelected) return;
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-07 05:07:23 +00:00
|
|
|
// remove selected outline from previously selected element
|
|
|
|
if (selected != null && selectedOutline != null) {
|
2009-06-18 05:08:47 +00:00
|
|
|
// remove from DOM and store reference in JS but only if it exists in the DOM
|
|
|
|
try {
|
|
|
|
var theOutline = svgroot.removeChild(selectedOutline);
|
|
|
|
selectedOutline = theOutline;
|
|
|
|
} catch(e) { }
|
2009-06-07 05:07:23 +00:00
|
|
|
}
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-07 05:07:23 +00:00
|
|
|
selected = newSelected;
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-07 05:07:23 +00:00
|
|
|
if (selected != null) {
|
2009-06-23 05:17:53 +00:00
|
|
|
selectedBBox = selected.getBBox();
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-10 03:12:19 +00:00
|
|
|
// we create this element for the first time here
|
|
|
|
if (selectedOutline == null) {
|
2009-06-23 07:48:15 +00:00
|
|
|
// create a group that will hold all the elements that make
|
2009-06-18 05:08:47 +00:00
|
|
|
// up the selected outline
|
2009-06-10 03:12:19 +00:00
|
|
|
selectedOutline = addSvgElementFromJson({
|
2009-06-18 05:08:47 +00:00
|
|
|
"element": "g",
|
|
|
|
"attr": {
|
|
|
|
"id": "selectedGroup",
|
|
|
|
}
|
|
|
|
});
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-18 05:08:47 +00:00
|
|
|
// add the bounding box
|
|
|
|
selectedOutline.appendChild( addSvgElementFromJson({
|
2009-06-07 05:07:23 +00:00
|
|
|
"element": "rect",
|
|
|
|
"attr": {
|
|
|
|
"id": "selectedBox",
|
|
|
|
"fill": "none",
|
|
|
|
"stroke": "blue",
|
|
|
|
"stroke-width": "1",
|
|
|
|
"stroke-dasharray": "5,5",
|
2009-06-10 03:12:19 +00:00
|
|
|
"width": 1,
|
|
|
|
"height": 1,
|
2009-06-08 12:46:04 +00:00
|
|
|
// need to specify this style so that the selectedOutline is not selectable
|
|
|
|
"style": "pointer-events:none",
|
2009-06-07 05:07:23 +00:00
|
|
|
}
|
2009-06-10 04:44:59 +00:00
|
|
|
}) );
|
2009-06-18 05:08:47 +00:00
|
|
|
|
|
|
|
// add the corner grips
|
|
|
|
for (dir in selectedGrips) {
|
2009-06-24 13:49:16 +00:00
|
|
|
selectedGrips[dir] = selectedOutline.appendChild( addSvgElementFromJson({
|
2009-06-23 07:48:15 +00:00
|
|
|
"element": "rect",
|
|
|
|
"attr": {
|
|
|
|
"id": dir + "_grip",
|
|
|
|
"fill": "blue",
|
|
|
|
"width": 6,
|
|
|
|
"height": 6,
|
|
|
|
"style": ("cursor:" + dir + "-resize"),
|
2009-06-24 13:49:16 +00:00
|
|
|
// when we are in rotate mode, we will set rx/ry to 3
|
|
|
|
// "rx": 3,
|
|
|
|
// "ry": 3,
|
2009-06-24 13:49:43 +00:00
|
|
|
// This expands the mouse-able area of the grips making them
|
|
|
|
// easier to grab with the mouse.
|
|
|
|
// This works in Opera and WebKit, but does not work in Firefox
|
2009-06-24 13:49:16 +00:00
|
|
|
// see https://bugzilla.mozilla.org/show_bug.cgi?id=500174
|
2009-06-24 13:49:43 +00:00
|
|
|
"stroke-width": 2,
|
2009-06-24 13:49:16 +00:00
|
|
|
"pointer-events": "all",
|
2009-06-23 07:48:15 +00:00
|
|
|
}
|
2009-06-24 13:49:16 +00:00
|
|
|
}) );
|
2009-06-23 07:48:15 +00:00
|
|
|
$('#'+selectedGrips[dir].id).mousedown( function() {
|
2009-06-23 05:17:53 +00:00
|
|
|
current_mode = "resize";
|
|
|
|
current_resize_mode = this.id.substr(0,this.id.indexOf("_"));
|
|
|
|
});
|
2009-06-18 05:08:47 +00:00
|
|
|
}
|
2009-06-10 03:12:19 +00:00
|
|
|
}
|
|
|
|
// recalculate size and then re-append to bottom of document
|
|
|
|
recalculateSelectedOutline();
|
|
|
|
svgroot.appendChild(selectedOutline);
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-07 05:07:23 +00:00
|
|
|
// set all our current styles to the selected styles
|
|
|
|
current_fill = selected.getAttribute("fill");
|
|
|
|
current_fill_opacity = selected.getAttribute("fill-opacity");
|
|
|
|
current_stroke = selected.getAttribute("stroke");
|
|
|
|
current_stroke_opacity = selected.getAttribute("stroke-opacity");
|
|
|
|
current_stroke_width = selected.getAttribute("stroke-width");
|
|
|
|
current_stroke_style = selected.getAttribute("stroke-dasharray");
|
2009-06-10 03:12:19 +00:00
|
|
|
if (selected.tagName == "text") {
|
|
|
|
current_font_size = selected.getAttribute("font-size");
|
|
|
|
current_font_family = selected.getAttribute("font-family");
|
|
|
|
}
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-23 05:17:53 +00:00
|
|
|
// do now show resize grips on text elements
|
|
|
|
var gripDisplay = (selected.tagName == "text" ? "none" : "inline");
|
|
|
|
for (dir in selectedGrips) {
|
|
|
|
selectedGrips[dir].setAttribute("display", gripDisplay);
|
|
|
|
}
|
2009-06-07 05:07:23 +00:00
|
|
|
}
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-07 15:43:51 +00:00
|
|
|
call("selected", selected);
|
2009-06-07 05:07:23 +00:00
|
|
|
}
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-07 00:17:21 +00:00
|
|
|
var mouseDown = function(evt)
|
2009-06-01 21:24:30 +00:00
|
|
|
{
|
2009-06-07 00:17:21 +00:00
|
|
|
var x = evt.pageX - container.offsetLeft;
|
|
|
|
var y = evt.pageY - container.offsetTop;
|
2009-06-03 08:41:25 +00:00
|
|
|
switch (current_mode) {
|
|
|
|
case "select":
|
2009-06-08 02:17:07 +00:00
|
|
|
started = true;
|
|
|
|
start_x = x;
|
|
|
|
start_y = y;
|
2009-06-07 05:07:23 +00:00
|
|
|
var t = evt.target;
|
2009-06-18 04:20:03 +00:00
|
|
|
// WebKit returns <div> when the canvas is clicked, Firefox/Opera return <svg>
|
|
|
|
if (t.nodeName.toLowerCase() == "div" || t.nodeName.toLowerCase() == "svg") {
|
|
|
|
t = null;
|
2009-06-07 05:07:23 +00:00
|
|
|
}
|
2009-06-18 04:20:03 +00:00
|
|
|
selectElement(t);
|
2009-06-03 08:41:25 +00:00
|
|
|
break;
|
2009-06-23 05:17:53 +00:00
|
|
|
case "resize":
|
|
|
|
started = true;
|
|
|
|
start_x = x;
|
|
|
|
start_y = y;
|
|
|
|
break;
|
2009-06-03 08:41:25 +00:00
|
|
|
case "fhellipse":
|
|
|
|
case "fhrect":
|
|
|
|
case "path":
|
|
|
|
started = true;
|
2009-06-08 02:17:07 +00:00
|
|
|
start_x = x;
|
|
|
|
start_y = y;
|
|
|
|
d_attr = "M" + x + "," + y + " ";
|
2009-06-03 08:41:25 +00:00
|
|
|
addSvgElementFromJson({
|
|
|
|
"element": "path",
|
|
|
|
"attr": {
|
|
|
|
"d": d_attr,
|
2009-06-05 12:33:02 +00:00
|
|
|
"id": getId(),
|
2009-06-03 08:41:25 +00:00
|
|
|
"fill": "none",
|
|
|
|
"stroke": current_stroke,
|
|
|
|
"stroke-width": current_stroke_width,
|
|
|
|
"stroke-dasharray": current_stroke_style,
|
2009-06-04 13:43:58 +00:00
|
|
|
"stroke-opacity": current_stroke_opacity,
|
|
|
|
"opacity": current_opacity / 2
|
2009-06-03 08:41:25 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
freehand_min_x = x;
|
|
|
|
freehand_max_x = x;
|
|
|
|
freehand_min_y = y;
|
|
|
|
freehand_max_y = y;
|
|
|
|
break;
|
|
|
|
case "square":
|
2009-06-23 05:17:53 +00:00
|
|
|
// TODO: once we create the rect, we lose information that this was a square
|
|
|
|
// (for resizing purposes this is important)
|
2009-06-03 08:41:25 +00:00
|
|
|
case "rect":
|
|
|
|
started = true;
|
|
|
|
start_x = x;
|
|
|
|
start_y = y;
|
|
|
|
addSvgElementFromJson({
|
|
|
|
"element": "rect",
|
|
|
|
"attr": {
|
|
|
|
"x": x,
|
|
|
|
"y": y,
|
|
|
|
"width": 0,
|
|
|
|
"height": 0,
|
2009-06-06 13:21:45 +00:00
|
|
|
"id": getId(),
|
2009-06-03 08:41:25 +00:00
|
|
|
"fill": current_fill,
|
|
|
|
"stroke": current_stroke,
|
|
|
|
"stroke-width": current_stroke_width,
|
|
|
|
"stroke-dasharray": current_stroke_style,
|
2009-06-04 13:43:58 +00:00
|
|
|
"stroke-opacity": current_stroke_opacity,
|
|
|
|
"fill-opacity": current_fill_opacity,
|
|
|
|
"opacity": current_opacity / 2
|
2009-06-03 08:41:25 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
case "line":
|
|
|
|
started = true;
|
|
|
|
addSvgElementFromJson({
|
|
|
|
"element": "line",
|
|
|
|
"attr": {
|
|
|
|
"x1": x,
|
|
|
|
"y1": y,
|
|
|
|
"x2": x,
|
|
|
|
"y2": y,
|
2009-06-05 12:33:02 +00:00
|
|
|
"id": getId(),
|
2009-06-03 08:41:25 +00:00
|
|
|
"stroke": current_stroke,
|
|
|
|
"stroke-width": current_stroke_width,
|
|
|
|
"stroke-dasharray": current_stroke_style,
|
2009-06-04 13:43:58 +00:00
|
|
|
"stroke-opacity": current_stroke_opacity,
|
2009-06-17 17:36:00 +00:00
|
|
|
"fill": "none",
|
2009-06-04 13:43:58 +00:00
|
|
|
"opacity": current_opacity / 2
|
2009-06-03 08:41:25 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
case "circle":
|
2009-06-03 15:00:48 +00:00
|
|
|
started = true;
|
|
|
|
addSvgElementFromJson({
|
|
|
|
"element": "circle",
|
|
|
|
"attr": {
|
|
|
|
"cx": x,
|
|
|
|
"cy": y,
|
|
|
|
"r": 0,
|
2009-06-05 12:33:02 +00:00
|
|
|
"id": getId(),
|
2009-06-03 15:00:48 +00:00
|
|
|
"fill": current_fill,
|
|
|
|
"stroke": current_stroke,
|
|
|
|
"stroke-width": current_stroke_width,
|
|
|
|
"stroke-dasharray": current_stroke_style,
|
2009-06-04 13:43:58 +00:00
|
|
|
"stroke-opacity": current_stroke_opacity,
|
|
|
|
"fill-opacity": current_fill_opacity,
|
|
|
|
"opacity": current_opacity / 2
|
2009-06-03 15:00:48 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
break;
|
2009-06-03 08:41:25 +00:00
|
|
|
case "ellipse":
|
|
|
|
started = true;
|
|
|
|
addSvgElementFromJson({
|
|
|
|
"element": "ellipse",
|
|
|
|
"attr": {
|
|
|
|
"cx": x,
|
|
|
|
"cy": y,
|
|
|
|
"rx": 0,
|
|
|
|
"ry": 0,
|
2009-06-05 13:20:04 +00:00
|
|
|
"id": getId(),
|
2009-06-03 08:41:25 +00:00
|
|
|
"fill": current_fill,
|
|
|
|
"stroke": current_stroke,
|
|
|
|
"stroke-width": current_stroke_width,
|
|
|
|
"stroke-dasharray": current_stroke_style,
|
2009-06-04 13:43:58 +00:00
|
|
|
"stroke-opacity": current_stroke_opacity,
|
|
|
|
"fill-opacity": current_fill_opacity,
|
|
|
|
"opacity": current_opacity / 2
|
2009-06-03 08:41:25 +00:00
|
|
|
}
|
|
|
|
});
|
2009-06-03 15:00:48 +00:00
|
|
|
break;
|
2009-06-10 03:12:19 +00:00
|
|
|
case "text":
|
|
|
|
started = true;
|
|
|
|
var newText = addSvgElementFromJson({
|
|
|
|
"element": "text",
|
|
|
|
"attr": {
|
|
|
|
"x": x,
|
|
|
|
"y": y,
|
|
|
|
"id": getId(),
|
|
|
|
"fill": current_fill,
|
|
|
|
"stroke": current_stroke,
|
|
|
|
"stroke-width": current_stroke_width,
|
|
|
|
"stroke-dasharray": current_stroke_style,
|
|
|
|
"stroke-opacity": current_stroke_opacity,
|
|
|
|
"fill-opacity": current_fill_opacity,
|
2009-06-11 15:18:46 +00:00
|
|
|
// fix for bug where text elements were always 50% opacity
|
|
|
|
"opacity": current_opacity,
|
2009-06-10 03:12:19 +00:00
|
|
|
"font-size": current_font_size,
|
|
|
|
"font-family": current_font_family,
|
|
|
|
}
|
|
|
|
});
|
|
|
|
newText.textContent = "text";
|
|
|
|
break;
|
2009-06-01 21:24:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-07 00:17:21 +00:00
|
|
|
var mouseMove = function(evt)
|
2009-06-01 21:24:30 +00:00
|
|
|
{
|
2009-06-02 16:40:33 +00:00
|
|
|
if (!started) return;
|
2009-06-07 00:17:21 +00:00
|
|
|
var x = evt.pageX - container.offsetLeft;
|
|
|
|
var y = evt.pageY - container.offsetTop;
|
2009-06-05 12:33:02 +00:00
|
|
|
var shape = svgdoc.getElementById(getId());
|
2009-06-02 16:40:33 +00:00
|
|
|
switch (current_mode)
|
2009-06-01 21:24:30 +00:00
|
|
|
{
|
2009-06-08 02:17:07 +00:00
|
|
|
case "select":
|
|
|
|
// we temporarily use a translate on the element being dragged
|
|
|
|
// this transform is removed upon mouseUp and the element is relocated to the
|
|
|
|
// new location
|
|
|
|
if (selected != null && selectedOutline != null) {
|
|
|
|
var dx = x - start_x;
|
|
|
|
var dy = y - start_y;
|
2009-06-23 05:17:53 +00:00
|
|
|
selectedBBox = selected.getBBox();
|
|
|
|
selectedBBox.x += dx;
|
|
|
|
selectedBBox.y += dy;
|
|
|
|
var ts = "translate(" + dx + "," + dy + ")";
|
|
|
|
selected.setAttribute("transform", ts);
|
2009-06-23 07:48:15 +00:00
|
|
|
recalculateSelectedOutline();
|
2009-06-08 02:17:07 +00:00
|
|
|
}
|
2009-06-10 03:12:19 +00:00
|
|
|
break;
|
2009-06-23 05:17:53 +00:00
|
|
|
case "resize":
|
|
|
|
// we track the resize bounding box and translate/scale the selected element
|
|
|
|
// while the mouse is down, when mouse goes up, we use this to recalculate
|
|
|
|
// the shape's coordinates
|
2009-06-23 07:48:15 +00:00
|
|
|
var box=selected.getBBox(), left=box.x, top=box.y, width=box.width,
|
2009-06-23 05:17:53 +00:00
|
|
|
height=box.height, dx=(x-start_x), dy=(y-start_y);
|
|
|
|
var tx=0, ty=0, sx=1, sy=1;
|
|
|
|
var ts = null;
|
|
|
|
if(current_resize_mode.indexOf("n") != -1) {
|
|
|
|
ty = dy;
|
|
|
|
sy = (height-dy)/height;
|
|
|
|
}
|
|
|
|
else if(current_resize_mode.indexOf("s") != -1) {
|
|
|
|
sy = (height+dy)/height;
|
|
|
|
}
|
|
|
|
if(current_resize_mode.indexOf("e") != -1) {
|
|
|
|
sx = (width+dx)/width;
|
|
|
|
}
|
|
|
|
else if(current_resize_mode.indexOf("w") != -1) {
|
|
|
|
tx = dx;
|
|
|
|
sx = (width-dx)/width;
|
|
|
|
}
|
2009-06-23 07:48:15 +00:00
|
|
|
|
|
|
|
selectedBBox.x = left+tx;
|
2009-06-23 05:17:53 +00:00
|
|
|
selectedBBox.y = top+ty;
|
|
|
|
selectedBBox.width = width*sx;
|
|
|
|
selectedBBox.height = height*sy;
|
2009-06-23 05:46:47 +00:00
|
|
|
// normalize selectedBBox
|
|
|
|
if (selectedBBox.width < 0) {
|
|
|
|
selectedBBox.x += selectedBBox.width;
|
|
|
|
selectedBBox.width = -selectedBBox.width;
|
|
|
|
}
|
|
|
|
if (selectedBBox.height < 0) {
|
|
|
|
selectedBBox.y += selectedBBox.height;
|
|
|
|
selectedBBox.height = -selectedBBox.height;
|
|
|
|
}
|
2009-06-23 07:48:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
ts = "translate(" + (left+tx) + "," + (top+ty) + ") scale(" + (sx) + "," + (sy) +
|
2009-06-23 05:17:53 +00:00
|
|
|
") translate(" + (-left) + "," + (-top) + ")";
|
|
|
|
selected.setAttribute("transform", ts);
|
|
|
|
recalculateSelectedOutline();
|
2009-06-23 07:48:15 +00:00
|
|
|
break;
|
2009-06-10 03:12:19 +00:00
|
|
|
case "text":
|
|
|
|
shape.setAttribute("x", x);
|
|
|
|
shape.setAttribute("y", y);
|
|
|
|
break;
|
2009-06-02 16:40:33 +00:00
|
|
|
case "line":
|
|
|
|
shape.setAttributeNS(null, "x2", x);
|
|
|
|
shape.setAttributeNS(null, "y2", y);
|
|
|
|
break;
|
|
|
|
case "square":
|
|
|
|
var size = Math.max( Math.abs(x - start_x), Math.abs(y - start_y) );
|
|
|
|
shape.setAttributeNS(null, "width", size);
|
|
|
|
shape.setAttributeNS(null, "height", size);
|
2009-06-06 17:06:44 +00:00
|
|
|
shape.setAttributeNS(null, "x", start_x < x ? start_x : start_x - size);
|
|
|
|
shape.setAttributeNS(null, "y", start_y < y ? start_y : start_y - size);
|
2009-06-02 16:40:33 +00:00
|
|
|
break;
|
2009-06-07 10:27:55 +00:00
|
|
|
// case "select":
|
2009-06-02 16:40:33 +00:00
|
|
|
case "rect":
|
2009-06-06 17:06:44 +00:00
|
|
|
shape.setAttributeNS(null, "x", Math.min(start_x,x));
|
|
|
|
shape.setAttributeNS(null, "y", Math.min(start_y,y));
|
|
|
|
shape.setAttributeNS(null, "width", Math.abs(x-start_x));
|
|
|
|
shape.setAttributeNS(null, "height", Math.abs(y-start_y));
|
2009-06-02 16:40:33 +00:00
|
|
|
break;
|
|
|
|
case "circle":
|
|
|
|
var cx = shape.getAttributeNS(null, "cx");
|
|
|
|
var cy = shape.getAttributeNS(null, "cy");
|
|
|
|
var rad = Math.sqrt( (x-cx)*(x-cx) + (y-cy)*(y-cy) );
|
2009-06-03 15:00:48 +00:00
|
|
|
shape.setAttributeNS(null, "r", rad);
|
2009-06-02 16:40:33 +00:00
|
|
|
break;
|
|
|
|
case "ellipse":
|
|
|
|
var cx = shape.getAttributeNS(null, "cx");
|
|
|
|
var cy = shape.getAttributeNS(null, "cy");
|
|
|
|
shape.setAttributeNS(null, "rx", Math.abs(x - cx) );
|
|
|
|
shape.setAttributeNS(null, "ry", Math.abs(y - cy) );
|
|
|
|
break;
|
|
|
|
case "fhellipse":
|
|
|
|
case "fhrect":
|
|
|
|
freehand_min_x = Math.min(x, freehand_min_x);
|
|
|
|
freehand_max_x = Math.max(x, freehand_max_x);
|
|
|
|
freehand_min_y = Math.min(y, freehand_min_y);
|
|
|
|
freehand_max_y = Math.max(y, freehand_max_y);
|
2009-06-03 08:41:25 +00:00
|
|
|
// break; missing on purpose
|
2009-06-02 16:40:33 +00:00
|
|
|
case "path":
|
2009-06-08 02:17:07 +00:00
|
|
|
var dx = x - start_x;
|
|
|
|
var dy = y - start_y;
|
|
|
|
start_x = x;
|
|
|
|
start_y = y;
|
|
|
|
d_attr += "l" + dx + "," + dy + " ";
|
2009-06-02 16:40:33 +00:00
|
|
|
shape.setAttributeNS(null, "d", d_attr);
|
|
|
|
break;
|
2009-06-01 21:24:30 +00:00
|
|
|
}
|
2009-06-23 18:06:53 +00:00
|
|
|
// fire changed event
|
|
|
|
call("changed", selected);
|
2009-06-01 21:24:30 +00:00
|
|
|
}
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-08 02:17:07 +00:00
|
|
|
var mouseUp = function(evt)
|
2009-06-01 21:24:30 +00:00
|
|
|
{
|
2009-06-02 16:40:33 +00:00
|
|
|
if (!started) return;
|
|
|
|
|
|
|
|
started = false;
|
2009-06-05 12:33:02 +00:00
|
|
|
var element = svgdoc.getElementById(getId());
|
2009-06-06 17:53:38 +00:00
|
|
|
var keep = false;
|
2009-06-02 16:40:33 +00:00
|
|
|
switch (current_mode)
|
2009-06-01 21:24:30 +00:00
|
|
|
{
|
2009-06-23 05:17:53 +00:00
|
|
|
// fall-through to select here
|
|
|
|
case "resize":
|
|
|
|
current_mode = "select";
|
2009-06-02 16:40:33 +00:00
|
|
|
case "select":
|
2009-06-08 02:17:07 +00:00
|
|
|
if (selected != null) {
|
2009-06-23 05:17:53 +00:00
|
|
|
recalculateSelectedDimensions();
|
2009-06-18 05:08:47 +00:00
|
|
|
recalculateSelectedOutline();
|
2009-06-08 02:17:07 +00:00
|
|
|
// we return immediately from select so that the obj_num is not incremented
|
|
|
|
return;
|
2009-06-03 08:41:25 +00:00
|
|
|
}
|
2009-06-02 16:40:33 +00:00
|
|
|
break;
|
|
|
|
case "path":
|
2009-06-06 17:53:38 +00:00
|
|
|
keep = true;
|
2009-06-02 16:40:33 +00:00
|
|
|
break;
|
|
|
|
case "line":
|
2009-06-06 17:53:38 +00:00
|
|
|
keep = (element.getAttribute('x1') != element.getAttribute('x2') ||
|
2009-06-07 10:27:55 +00:00
|
|
|
element.getAttribute('y1') == element.getAttribute('y2'));
|
2009-06-02 16:40:33 +00:00
|
|
|
break;
|
|
|
|
case "square":
|
|
|
|
case "rect":
|
2009-06-06 17:53:38 +00:00
|
|
|
keep = (element.getAttribute('width') != 0 ||
|
2009-06-07 10:27:55 +00:00
|
|
|
element.getAttribute('height') != 0);
|
2009-06-02 16:40:33 +00:00
|
|
|
break;
|
|
|
|
case "circle":
|
2009-06-06 17:53:38 +00:00
|
|
|
keep = (element.getAttribute('r') != 0);
|
2009-06-03 15:00:48 +00:00
|
|
|
break;
|
2009-06-02 16:40:33 +00:00
|
|
|
case "ellipse":
|
2009-06-06 17:53:38 +00:00
|
|
|
keep = (element.getAttribute('rx') != 0 ||
|
2009-06-07 10:27:55 +00:00
|
|
|
element.getAttribute('ry') != 0);
|
2009-06-02 16:40:33 +00:00
|
|
|
break;
|
|
|
|
case "fhellipse":
|
2009-06-03 08:41:25 +00:00
|
|
|
if ((freehand_max_x - freehand_min_x) > 0 &&
|
|
|
|
(freehand_max_y - freehand_min_y) > 0) {
|
2009-06-06 18:37:43 +00:00
|
|
|
call("changed",addSvgElementFromJson({
|
2009-06-03 08:41:25 +00:00
|
|
|
"element": "ellipse",
|
|
|
|
"attr": {
|
|
|
|
"cx": (freehand_min_x + freehand_max_x) / 2,
|
|
|
|
"cy": (freehand_min_y + freehand_max_y) / 2,
|
|
|
|
"rx": (freehand_max_x - freehand_min_x) / 2,
|
|
|
|
"ry": (freehand_max_y - freehand_min_y) / 2,
|
2009-06-05 12:33:02 +00:00
|
|
|
"id": getId(),
|
2009-06-03 08:41:25 +00:00
|
|
|
"fill": current_fill,
|
|
|
|
"stroke": current_stroke,
|
|
|
|
"stroke-width": current_stroke_width,
|
|
|
|
"stroke-dasharray": current_stroke_style,
|
2009-06-04 13:43:58 +00:00
|
|
|
"opacity": current_opacity,
|
|
|
|
"stroke-opacity": current_stroke_opacity,
|
|
|
|
"fill-opacity": current_fill_opacity
|
2009-06-03 08:41:25 +00:00
|
|
|
}
|
2009-06-06 18:37:43 +00:00
|
|
|
}));
|
2009-06-16 02:39:12 +00:00
|
|
|
keep = true;
|
2009-06-03 08:41:25 +00:00
|
|
|
}
|
2009-06-02 16:40:33 +00:00
|
|
|
break;
|
|
|
|
case "fhrect":
|
2009-06-03 08:41:25 +00:00
|
|
|
if ((freehand_max_x - freehand_min_x) > 0 &&
|
|
|
|
(freehand_max_y - freehand_min_y) > 0) {
|
2009-06-06 18:37:43 +00:00
|
|
|
call("changed",addSvgElementFromJson({
|
2009-06-03 08:41:25 +00:00
|
|
|
"element": "rect",
|
|
|
|
"attr": {
|
|
|
|
"x": freehand_min_x,
|
|
|
|
"y": freehand_min_y,
|
|
|
|
"width": (freehand_max_x - freehand_min_x),
|
|
|
|
"height": (freehand_max_y - freehand_min_y),
|
2009-06-05 12:33:02 +00:00
|
|
|
"id": getId(),
|
2009-06-03 08:41:25 +00:00
|
|
|
"fill": current_fill,
|
|
|
|
"stroke": current_stroke,
|
|
|
|
"stroke-width": current_stroke_width,
|
|
|
|
"stroke-dasharray": current_stroke_style,
|
2009-06-04 13:43:58 +00:00
|
|
|
"opacity": current_opacity,
|
|
|
|
"stroke-opacity": current_stroke_opacity,
|
|
|
|
"fill-opacity": current_fill_opacity
|
2009-06-03 08:41:25 +00:00
|
|
|
}
|
2009-06-06 18:37:43 +00:00
|
|
|
}));
|
2009-06-16 02:39:12 +00:00
|
|
|
keep = true;
|
2009-06-03 08:41:25 +00:00
|
|
|
}
|
2009-06-02 16:40:33 +00:00
|
|
|
break;
|
2009-06-10 03:12:19 +00:00
|
|
|
case "text":
|
|
|
|
keep = true;
|
|
|
|
selectElement(element);
|
|
|
|
break;
|
2009-06-02 16:40:33 +00:00
|
|
|
}
|
2009-06-06 17:53:38 +00:00
|
|
|
d_attr = null;
|
|
|
|
obj_num++;
|
2009-06-18 05:08:47 +00:00
|
|
|
if (!keep && element != null) {
|
2009-06-10 03:12:19 +00:00
|
|
|
element.parentNode.removeChild(element);
|
|
|
|
element = null;
|
|
|
|
} else if (element != null) {
|
|
|
|
element.setAttribute("opacity", current_opacity);
|
|
|
|
cleanupElement(element);
|
|
|
|
call("changed",element);
|
2009-06-01 21:24:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// public functions
|
|
|
|
|
2009-06-06 23:54:53 +00:00
|
|
|
this.save = function() {
|
2009-06-07 05:07:23 +00:00
|
|
|
// remove the selected outline before serializing
|
2009-06-07 10:27:55 +00:00
|
|
|
this.selectNone();
|
2009-06-16 02:52:36 +00:00
|
|
|
var str = "<?xml version=\"1.0\" standalone=\"no\"?>\n";
|
|
|
|
str += "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n";
|
2009-06-01 21:24:30 +00:00
|
|
|
str += svgToString(svgroot, 0);
|
2009-06-06 23:54:53 +00:00
|
|
|
this.saveHandler(str);
|
2009-06-01 21:24:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
this.clear = function() {
|
|
|
|
var nodes = svgroot.childNodes;
|
|
|
|
var len = svgroot.childNodes.length;
|
|
|
|
var i = 0;
|
2009-06-07 10:27:55 +00:00
|
|
|
this.selectNone();
|
2009-06-01 21:24:30 +00:00
|
|
|
for(var rep = 0; rep < len; rep++){
|
2009-06-02 16:40:33 +00:00
|
|
|
if (nodes[i].nodeType == 1) { // element node
|
2009-06-01 21:24:30 +00:00
|
|
|
nodes[i].parentNode.removeChild(nodes[i]);
|
|
|
|
} else {
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
2009-06-12 12:20:48 +00:00
|
|
|
call("cleared");
|
2009-06-01 21:24:30 +00:00
|
|
|
}
|
|
|
|
|
2009-06-06 12:25:26 +00:00
|
|
|
this.getMode = function() {
|
|
|
|
return current_mode;
|
|
|
|
}
|
|
|
|
|
2009-06-01 21:24:30 +00:00
|
|
|
this.setMode = function(name) {
|
2009-06-02 16:40:33 +00:00
|
|
|
current_mode = name;
|
2009-06-01 21:24:30 +00:00
|
|
|
}
|
|
|
|
|
2009-06-06 12:25:26 +00:00
|
|
|
this.getStrokeColor = function() {
|
|
|
|
return current_stroke;
|
|
|
|
}
|
|
|
|
|
2009-06-01 21:24:30 +00:00
|
|
|
this.setStrokeColor = function(color) {
|
2009-06-02 16:40:33 +00:00
|
|
|
current_stroke = color;
|
2009-06-07 05:07:23 +00:00
|
|
|
if (selected != null) {
|
|
|
|
selected.setAttribute("stroke", color);
|
|
|
|
call("changed", selected);
|
|
|
|
}
|
2009-06-01 21:24:30 +00:00
|
|
|
}
|
|
|
|
|
2009-06-06 12:25:26 +00:00
|
|
|
this.getFillColor = function() {
|
|
|
|
return current_fill;
|
|
|
|
}
|
|
|
|
|
2009-06-01 21:24:30 +00:00
|
|
|
this.setFillColor = function(color) {
|
2009-06-02 16:40:33 +00:00
|
|
|
current_fill = color;
|
2009-06-07 05:07:23 +00:00
|
|
|
if (selected != null) {
|
|
|
|
selected.setAttribute("fill", color);
|
|
|
|
call("changed", selected);
|
|
|
|
}
|
2009-06-01 21:24:30 +00:00
|
|
|
}
|
|
|
|
|
2009-06-06 12:25:26 +00:00
|
|
|
this.getStrokeWidth = function() {
|
|
|
|
return current_stroke_width;
|
|
|
|
}
|
|
|
|
|
2009-06-01 22:01:07 +00:00
|
|
|
this.setStrokeWidth = function(val) {
|
2009-06-02 16:40:33 +00:00
|
|
|
current_stroke_width = val;
|
2009-06-07 05:07:23 +00:00
|
|
|
if (selected != null) {
|
|
|
|
selected.setAttribute("stroke-width", val);
|
2009-06-10 03:12:19 +00:00
|
|
|
recalculateSelectedOutline();
|
2009-06-07 05:07:23 +00:00
|
|
|
call("changed", selected);
|
|
|
|
}
|
2009-06-01 21:24:30 +00:00
|
|
|
}
|
|
|
|
|
2009-06-06 12:25:26 +00:00
|
|
|
this.getStrokeStyle = function() {
|
|
|
|
return current_stroke_style;
|
|
|
|
}
|
|
|
|
|
2009-06-01 22:01:07 +00:00
|
|
|
this.setStrokeStyle = function(val) {
|
2009-06-02 16:40:33 +00:00
|
|
|
current_stroke_style = val;
|
2009-06-07 05:07:23 +00:00
|
|
|
if (selected != null) {
|
|
|
|
selected.setAttribute("stroke-dasharray", val);
|
|
|
|
call("changed", selected);
|
|
|
|
}
|
2009-06-01 22:01:07 +00:00
|
|
|
}
|
|
|
|
|
2009-06-06 12:25:26 +00:00
|
|
|
this.getOpacity = function() {
|
|
|
|
return current_opacity;
|
|
|
|
}
|
|
|
|
|
2009-06-04 13:43:58 +00:00
|
|
|
this.setOpacity = function(val) {
|
|
|
|
current_opacity = val;
|
2009-06-07 10:27:55 +00:00
|
|
|
if (selected != null) {
|
|
|
|
selected.setAttribute("opacity", val);
|
|
|
|
call("changed", selected);
|
|
|
|
}
|
2009-06-04 13:43:58 +00:00
|
|
|
}
|
|
|
|
|
2009-06-06 12:25:26 +00:00
|
|
|
this.getFillOpacity = function() {
|
|
|
|
return current_fill_opacity;
|
|
|
|
}
|
|
|
|
|
2009-06-04 13:43:58 +00:00
|
|
|
this.setFillOpacity = function(val) {
|
|
|
|
current_fill_opacity = val;
|
2009-06-07 05:07:23 +00:00
|
|
|
if (selected != null) {
|
|
|
|
selected.setAttribute("fill-opacity", val);
|
|
|
|
call("changed", selected);
|
|
|
|
}
|
2009-06-04 13:43:58 +00:00
|
|
|
}
|
|
|
|
|
2009-06-06 12:25:26 +00:00
|
|
|
this.getStrokeOpacity = function() {
|
|
|
|
return current_stroke_opacity;
|
|
|
|
}
|
|
|
|
|
2009-06-04 13:43:58 +00:00
|
|
|
this.setStrokeOpacity = function(val) {
|
|
|
|
current_stroke_opacity = val;
|
2009-06-07 05:07:23 +00:00
|
|
|
if (selected != null) {
|
|
|
|
selected.setAttribute("stroke-opacity", val);
|
|
|
|
call("changed", selected);
|
|
|
|
}
|
2009-06-04 13:43:58 +00:00
|
|
|
}
|
|
|
|
|
2009-06-09 22:13:13 +00:00
|
|
|
this.updateElementFromJson = function(data) {
|
2009-06-12 11:43:20 +00:00
|
|
|
var shape = svgdoc.getElementById(data.attr.id);
|
2009-06-16 02:39:12 +00:00
|
|
|
// if shape is a path but we need to create a rect/ellipse, then remove the path
|
2009-06-16 18:51:35 +00:00
|
|
|
if (shape && data.element != shape.tagName) {
|
2009-06-16 02:39:12 +00:00
|
|
|
svgroot.removeChild(shape);
|
|
|
|
shape = null;
|
|
|
|
}
|
|
|
|
if (!shape) {
|
|
|
|
shape = svgdoc.createElementNS(svgns, data.element);
|
|
|
|
svgroot.appendChild(shape);
|
|
|
|
}
|
2009-06-09 22:13:13 +00:00
|
|
|
assignAttributes(shape, data.attr);
|
|
|
|
cleanupElement(shape);
|
|
|
|
return shape;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.each = function(cb) {
|
|
|
|
$(svgroot).children().each(cb);
|
|
|
|
}
|
|
|
|
|
2009-06-06 18:34:42 +00:00
|
|
|
this.bind = function(event, f) {
|
|
|
|
events[event] = f;
|
|
|
|
}
|
|
|
|
|
2009-06-12 06:45:37 +00:00
|
|
|
this.setIdPrefix = function(p) {
|
|
|
|
idprefix = p;
|
|
|
|
}
|
|
|
|
|
2009-06-10 03:12:19 +00:00
|
|
|
this.getFontFamily = function() {
|
|
|
|
return current_font_family;
|
|
|
|
}
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-10 03:12:19 +00:00
|
|
|
this.setFontFamily = function(val) {
|
|
|
|
current_font_family = val;
|
|
|
|
if (selected != null) {
|
|
|
|
selected.setAttribute("font-family", val);
|
|
|
|
recalculateSelectedOutline();
|
|
|
|
call("changed", selected);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.getFontSize = function() {
|
|
|
|
return current_font_size;
|
|
|
|
}
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-10 03:12:19 +00:00
|
|
|
this.setFontSize = function(val) {
|
|
|
|
current_font_size = val;
|
|
|
|
if (selected != null) {
|
|
|
|
selected.setAttribute("font-size", val);
|
|
|
|
recalculateSelectedOutline();
|
|
|
|
call("changed", selected);
|
|
|
|
}
|
|
|
|
}
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-10 03:12:19 +00:00
|
|
|
this.getText = function() {
|
|
|
|
if (selected == null) { return ""; }
|
|
|
|
return selected.textContent;
|
|
|
|
}
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-10 03:12:19 +00:00
|
|
|
this.setTextContent = function(val) {
|
|
|
|
if (selected != null) {
|
|
|
|
selected.textContent = val;
|
|
|
|
recalculateSelectedOutline();
|
|
|
|
call("changed", selected);
|
|
|
|
}
|
|
|
|
}
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-11 15:18:46 +00:00
|
|
|
this.setRectRadius = function(val) {
|
|
|
|
if (selected != null && selected.tagName == "rect") {
|
|
|
|
selected.setAttribute("rx", val);
|
|
|
|
selected.setAttribute("rx", val);
|
|
|
|
call("changed", selected);
|
|
|
|
}
|
|
|
|
}
|
2009-06-24 04:33:09 +00:00
|
|
|
|
|
|
|
this.changeSelectedAttribute = function(attr, val) {
|
|
|
|
if (selected != null && selected.getAttribute(attr) != val) {
|
|
|
|
selected.setAttribute(attr, val);
|
|
|
|
selectedBBox = selected.getBBox();
|
|
|
|
recalculateSelectedOutline();
|
|
|
|
call("changed", selected);
|
|
|
|
}
|
|
|
|
}
|
2009-06-23 07:48:15 +00:00
|
|
|
|
2009-06-07 00:17:21 +00:00
|
|
|
$(container).mouseup(mouseUp);
|
|
|
|
$(container).mousedown(mouseDown);
|
|
|
|
$(container).mousemove(mouseMove);
|
2009-06-01 17:35:22 +00:00
|
|
|
|
2009-06-06 23:54:53 +00:00
|
|
|
this.saveHandler = function(svg) {
|
2009-06-08 08:09:15 +00:00
|
|
|
window.open("data:image/svg+xml;base64," + Utils.encode64(svg));
|
2009-06-06 23:54:53 +00:00
|
|
|
}
|
2009-06-07 10:27:55 +00:00
|
|
|
|
2009-06-07 05:07:23 +00:00
|
|
|
this.selectNone = function() {
|
|
|
|
selectElement(null);
|
|
|
|
}
|
2009-06-06 23:54:53 +00:00
|
|
|
|
2009-06-10 04:44:59 +00:00
|
|
|
this.deleteSelectedElement = function() {
|
|
|
|
if (selected != null) {
|
|
|
|
var t = selected;
|
|
|
|
// this will unselect the element (and remove the selectedOutline)
|
|
|
|
selectElement(null);
|
|
|
|
t.parentNode.removeChild(t);
|
|
|
|
call("deleted",t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-17 20:08:53 +00:00
|
|
|
this.moveToTopSelectedElement = function() {
|
|
|
|
if (selected != null) {
|
|
|
|
var t = selected;
|
|
|
|
t.parentNode.appendChild(t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.moveToBottomSelectedElement = function() {
|
|
|
|
if (selected != null) {
|
|
|
|
var t = selected;
|
|
|
|
t.parentNode.insertBefore(t, t.parentNode.firstChild);
|
|
|
|
}
|
|
|
|
}
|
2009-06-23 21:18:23 +00:00
|
|
|
|
|
|
|
this.moveSelectedElement = function(dx,dy) {
|
|
|
|
if (selected != null) {
|
|
|
|
// TODO: move...
|
|
|
|
selectedBBox = selected.getBBox();
|
|
|
|
selectedBBox.x += dx;
|
|
|
|
selectedBBox.y += dy;
|
|
|
|
|
|
|
|
recalculateSelectedDimensions();
|
|
|
|
recalculateSelectedOutline();
|
|
|
|
}
|
|
|
|
}
|
2009-06-17 20:08:53 +00:00
|
|
|
|
2009-06-01 17:35:22 +00:00
|
|
|
}
|
2009-06-08 08:09:15 +00:00
|
|
|
|
|
|
|
// Static class for various utility functions
|
|
|
|
|
2009-06-08 09:08:45 +00:00
|
|
|
var Utils = {
|
2009-06-08 08:09:15 +00:00
|
|
|
|
|
|
|
// This code was written by Tyler Akins and has been placed in the
|
|
|
|
// public domain. It would be nice if you left this header intact.
|
|
|
|
// Base64 code from Tyler Akins -- http://rumkin.com
|
|
|
|
|
2009-06-23 07:48:15 +00:00
|
|
|
// schiller: Removed string concatenation in favour of Array.join() optimization,
|
2009-06-17 03:20:42 +00:00
|
|
|
// also precalculate the size of the array needed.
|
2009-06-16 18:51:35 +00:00
|
|
|
|
2009-06-12 13:27:42 +00:00
|
|
|
"_keyStr" : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
|
2009-06-08 08:09:15 +00:00
|
|
|
|
2009-06-12 13:27:42 +00:00
|
|
|
"encode64" : function(input) {
|
2009-06-17 03:20:42 +00:00
|
|
|
// base64 strings are 4/3 larger than the original string
|
2009-06-17 19:00:23 +00:00
|
|
|
var output = new Array( Math.floor( (input.length + 2) / 3 ) * 4 );
|
2009-06-08 09:08:45 +00:00
|
|
|
var chr1, chr2, chr3;
|
|
|
|
var enc1, enc2, enc3, enc4;
|
2009-06-17 03:20:42 +00:00
|
|
|
var i = 0, p = 0;
|
2009-06-08 08:09:15 +00:00
|
|
|
|
2009-06-08 09:08:45 +00:00
|
|
|
do {
|
|
|
|
chr1 = input.charCodeAt(i++);
|
|
|
|
chr2 = input.charCodeAt(i++);
|
|
|
|
chr3 = input.charCodeAt(i++);
|
2009-06-08 08:09:15 +00:00
|
|
|
|
2009-06-08 09:08:45 +00:00
|
|
|
enc1 = chr1 >> 2;
|
|
|
|
enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
|
|
|
|
enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
|
|
|
|
enc4 = chr3 & 63;
|
2009-06-08 08:09:15 +00:00
|
|
|
|
2009-06-08 09:08:45 +00:00
|
|
|
if (isNaN(chr2)) {
|
|
|
|
enc3 = enc4 = 64;
|
|
|
|
} else if (isNaN(chr3)) {
|
|
|
|
enc4 = 64;
|
|
|
|
}
|
2009-06-08 08:09:15 +00:00
|
|
|
|
2009-06-17 03:20:42 +00:00
|
|
|
output[p++] = this._keyStr.charAt(enc1);
|
|
|
|
output[p++] = this._keyStr.charAt(enc2);
|
|
|
|
output[p++] = this._keyStr.charAt(enc3);
|
|
|
|
output[p++] = this._keyStr.charAt(enc4);
|
2009-06-08 09:08:45 +00:00
|
|
|
} while (i < input.length);
|
2009-06-08 08:09:15 +00:00
|
|
|
|
2009-06-16 18:51:35 +00:00
|
|
|
return output.join('');
|
2009-06-08 09:08:45 +00:00
|
|
|
}
|
2009-06-16 15:47:38 +00:00
|
|
|
|
2009-06-08 08:09:15 +00:00
|
|
|
}
|