Fixes
[raphael] / raphael.vml.js
1 // ┌─────────────────────────────────────────────────────────────────────┐ \\
2 // │ Raphaël 2 - JavaScript Vector Library                               │ \\
3 // ├─────────────────────────────────────────────────────────────────────┤ \\
4 // │ VML Module                                                          │ \\
5 // ├─────────────────────────────────────────────────────────────────────┤ \\
6 // │ Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com)   │ \\
7 // │ Copyright (c) 2008-2011 Sencha Labs (http://sencha.com)             │ \\
8 // │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\
9 // └─────────────────────────────────────────────────────────────────────┘ \\
10 window.Raphael.vml && function (R) {
11     var has = "hasOwnProperty",
12         Str = String,
13         toFloat = parseFloat,
14         math = Math,
15         round = math.round,
16         mmax = math.max,
17         mmin = math.min,
18         abs = math.abs,
19         fillString = "fill",
20         separator = /[, ]+/,
21         eve = R.eve,
22         ms = " progid:DXImageTransform.Microsoft",
23         S = " ",
24         E = "",
25         map = {M: "m", L: "l", C: "c", Z: "x", m: "t", l: "r", c: "v", z: "x"},
26         bites = /([clmz]),?([^clmz]*)/gi,
27         blurregexp = / progid:\S+Blur\([^\)]+\)/g,
28         val = /-?[^,\s-]+/g,
29         cssDot = "position:absolute;left:0;top:0;width:1px;height:1px",
30         zoom = 21600,
31         pathTypes = {path: 1, rect: 1, image: 1},
32         ovalTypes = {circle: 1, ellipse: 1},
33         path2vml = function (path) {
34             var total =  /[ahqstv]/ig,
35                 command = R._pathToAbsolute;
36             Str(path).match(total) && (command = R._path2curve);
37             total = /[clmz]/g;
38             if (command == R._pathToAbsolute && !Str(path).match(total)) {
39                 var res = Str(path).replace(bites, function (all, command, args) {
40                     var vals = [],
41                         isMove = command.toLowerCase() == "m",
42                         res = map[command];
43                     args.replace(val, function (value) {
44                         if (isMove && vals.length == 2) {
45                             res += vals + map[command == "m" ? "l" : "L"];
46                             vals = [];
47                         }
48                         vals.push(round(value * zoom));
49                     });
50                     return res + vals;
51                 });
52                 return res;
53             }
54             var pa = command(path), p, r;
55             res = [];
56             for (var i = 0, ii = pa.length; i < ii; i++) {
57                 p = pa[i];
58                 r = pa[i][0].toLowerCase();
59                 r == "z" && (r = "x");
60                 for (var j = 1, jj = p.length; j < jj; j++) {
61                     r += round(p[j] * zoom) + (j != jj - 1 ? "," : E);
62                 }
63                 res.push(r);
64             }
65             return res.join(S);
66         },
67         compensation = function (deg, dx, dy) {
68             var m = R.matrix();
69             m.rotate(-deg, .5, .5);
70             return {
71                 dx: m.x(dx, dy),
72                 dy: m.y(dx, dy)
73             };
74         },
75         setCoords = function (p, sx, sy, dx, dy, deg) {
76             var _ = p._,
77                 m = p.matrix,
78                 fillpos = _.fillpos,
79                 o = p.node,
80                 s = o.style,
81                 y = 1,
82                 flip = "",
83                 dxdy,
84                 kx = zoom / sx,
85                 ky = zoom / sy;
86             s.visibility = "hidden";
87             if (!sx || !sy) {
88                 return;
89             }
90             o.coordsize = abs(kx) + S + abs(ky);
91             s.rotation = deg * (sx * sy < 0 ? -1 : 1);
92             if (deg) {
93                 var c = compensation(deg, dx, dy);
94                 dx = c.dx;
95                 dy = c.dy;
96             }
97             sx < 0 && (flip += "x");
98             sy < 0 && (flip += " y") && (y = -1);
99             s.flip = flip;
100             o.coordorigin = (dx * -kx) + S + (dy * -ky);
101             if (fillpos || _.fillsize) {
102                 var fill = o.getElementsByTagName(fillString);
103                 fill = fill && fill[0];
104                 o.removeChild(fill);
105                 if (fillpos) {
106                     c = compensation(deg, m.x(fillpos[0], fillpos[1]), m.y(fillpos[0], fillpos[1]));
107                     fill.position = c.dx * y + S + c.dy * y;
108                 }
109                 if (_.fillsize) {
110                     fill.size = _.fillsize[0] * abs(sx) + S + _.fillsize[1] * abs(sy);
111                 }
112                 o.appendChild(fill);
113             }
114             s.visibility = "visible";
115         };
116     R.toString = function () {
117         return  "Your browser doesn\u2019t support SVG. Falling down to VML.\nYou are running Rapha\xebl " + this.version;
118     };
119     addArrow = function (o, value, isEnd) {
120         var values = Str(value).toLowerCase().split("-"),
121             se = isEnd ? "end" : "start",
122             i = values.length,
123             type = "classic",
124             w = "medium",
125             h = "medium";
126         while (i--) {
127             switch (values[i]) {
128                 case "block":
129                 case "classic":
130                 case "oval":
131                 case "diamond":
132                 case "open":
133                 case "none":
134                     type = values[i];
135                     break;
136                 case "wide":
137                 case "narrow": h = values[i]; break;
138                 case "long":
139                 case "short": w = values[i]; break;
140             }
141         }
142         var stroke = o.node.getElementsByTagName("stroke")[0];
143         stroke[se + "arrow"] = type;
144         stroke[se + "arrowlength"] = w;
145         stroke[se + "arrowwidth"] = h;
146     };
147     setFillAndStroke = function (o, params) {
148         // o.paper.canvas.style.display = "none";
149         o.attrs = o.attrs || {};
150         var node = o.node,
151             a = o.attrs,
152             s = node.style,
153             xy,
154             newpath = pathTypes[o.type] && (params.x != a.x || params.y != a.y || params.width != a.width || params.height != a.height || params.cx != a.cx || params.cy != a.cy || params.rx != a.rx || params.ry != a.ry || params.r != a.r),
155             isOval = ovalTypes[o.type] && (a.cx != params.cx || a.cy != params.cy || a.r != params.r || a.rx != params.rx || a.ry != params.ry),
156             res = o;
157
158
159         for (var par in params) if (params[has](par)) {
160             a[par] = params[par];
161         }
162         if (newpath) {
163             a.path = R._getPath[o.type](o);
164             o._.dirty = 1;
165         }
166         params.href && (node.href = params.href);
167         params.title && (node.title = params.title);
168         params.target && (node.target = params.target);
169         params.cursor && (s.cursor = params.cursor);
170         "blur" in params && o.blur(params.blur);
171         if (params.path && o.type == "path" || newpath) {
172             node.path = path2vml(~Str(a.path).toLowerCase().indexOf("r") ? R._pathToAbsolute(a.path) : a.path);
173             if (o.type == "image") {
174                 o._.fillpos = [a.x, a.y];
175                 o._.fillsize = [a.width, a.height];
176                 setCoords(o, 1, 1, 0, 0, 0);
177             }
178         }
179         "transform" in params && o.transform(params.transform);
180         if (isOval) {
181             var cx = +a.cx,
182                 cy = +a.cy,
183                 rx = +a.rx || +a.r || 0,
184                 ry = +a.ry || +a.r || 0;
185             node.path = R.format("ar{0},{1},{2},{3},{4},{1},{4},{1}x", round((cx - rx) * zoom), round((cy - ry) * zoom), round((cx + rx) * zoom), round((cy + ry) * zoom), round(cx * zoom));
186         }
187         if ("clip-rect" in params) {
188             var rect = Str(params["clip-rect"]).split(separator);
189             if (rect.length == 4) {
190                 rect[2] = +rect[2] + (+rect[0]);
191                 rect[3] = +rect[3] + (+rect[1]);
192                 var div = node.clipRect || R._g.doc.createElement("div"),
193                     dstyle = div.style,
194                     group = node.parentNode;
195                 dstyle.clip = R.format("rect({1}px {2}px {3}px {0}px)", rect);
196                 if (!node.clipRect) {
197                     dstyle.position = "absolute";
198                     dstyle.top = 0;
199                     dstyle.left = 0;
200                     dstyle.width = o.paper.width + "px";
201                     dstyle.height = o.paper.height + "px";
202                     group.parentNode.insertBefore(div, group);
203                     div.appendChild(group);
204                     node.clipRect = div;
205                 }
206             }
207             if (!params["clip-rect"]) {
208                 node.clipRect && (node.clipRect.style.clip = E);
209             }
210         }
211         if (o.textpath) {
212             var textpathStyle = o.textpath.style;
213             params.font && (textpathStyle.font = params.font);
214             params["font-family"] && (textpathStyle.fontFamily = '"' + params["font-family"].split(",")[0].replace(/^['"]+|['"]+$/g, E) + '"');
215             params["font-size"] && (textpathStyle.fontSize = params["font-size"]);
216             params["font-weight"] && (textpathStyle.fontWeight = params["font-weight"]);
217             params["font-style"] && (textpathStyle.fontStyle = params["font-style"]);
218         }
219         if ("arrow-start" in params) {
220             addArrow(res, params["arrow-start"]);
221         }
222         if ("arrow-end" in params) {
223             addArrow(res, params["arrow-end"], 1);
224         }
225         if (params.opacity != null || 
226             params["stroke-width"] != null ||
227             params.fill != null ||
228             params.src != null ||
229             params.stroke != null ||
230             params["stroke-width"] != null ||
231             params["stroke-opacity"] != null ||
232             params["fill-opacity"] != null ||
233             params["stroke-dasharray"] != null ||
234             params["stroke-miterlimit"] != null ||
235             params["stroke-linejoin"] != null ||
236             params["stroke-linecap"] != null) {
237             var fill = node.getElementsByTagName(fillString),
238                 newfill = false;
239             fill = fill && fill[0];
240             !fill && (newfill = fill = createNode(fillString));
241             if (o.type == "image" && params.src) {
242                 fill.src = params.src;
243             }
244             params.fill && (fill.on = true);
245             if (fill.on == null || params.fill == "none" || params.fill === null) {
246                 fill.on = false;
247             }
248             if (fill.on && params.fill) {
249                 var isURL = Str(params.fill).match(R._ISURL);
250                 if (isURL) {
251                     fill.parentNode == node && node.removeChild(fill);
252                     fill.rotate = true;
253                     fill.src = isURL[1];
254                     fill.type = "tile";
255                     var bbox = o.getBBox(1);
256                     fill.position = bbox.x + S + bbox.y;
257                     o._.fillpos = [bbox.x, bbox.y];
258
259                     R._preload(isURL[1], function () {
260                         o._.fillsize = [this.offsetWidth, this.offsetHeight];
261                     });
262                 } else {
263                     fill.color = R.getRGB(params.fill).hex;
264                     fill.src = E;
265                     fill.type = "solid";
266                     if (R.getRGB(params.fill).error && (res.type in {circle: 1, ellipse: 1} || Str(params.fill).charAt() != "r") && addGradientFill(res, params.fill, fill)) {
267                         a.fill = "none";
268                         a.gradient = params.fill;
269                         fill.rotate = false;
270                     }
271                 }
272             }
273             if ("fill-opacity" in params || "opacity" in params) {
274                 var opacity = ((+a["fill-opacity"] + 1 || 2) - 1) * ((+a.opacity + 1 || 2) - 1) * ((+R.getRGB(params.fill).o + 1 || 2) - 1);
275                 opacity = mmin(mmax(opacity, 0), 1);
276                 fill.opacity = opacity;
277                 if (fill.src) {
278                     fill.color = "none";
279                 }
280             }
281             node.appendChild(fill);
282             var stroke = (node.getElementsByTagName("stroke") && node.getElementsByTagName("stroke")[0]),
283             newstroke = false;
284             !stroke && (newstroke = stroke = createNode("stroke"));
285             if ((params.stroke && params.stroke != "none") ||
286                 params["stroke-width"] ||
287                 params["stroke-opacity"] != null ||
288                 params["stroke-dasharray"] ||
289                 params["stroke-miterlimit"] ||
290                 params["stroke-linejoin"] ||
291                 params["stroke-linecap"]) {
292                 stroke.on = true;
293             }
294             (params.stroke == "none" || params.stroke === null || stroke.on == null || params.stroke == 0 || params["stroke-width"] == 0) && (stroke.on = false);
295             var strokeColor = R.getRGB(params.stroke);
296             stroke.on && params.stroke && (stroke.color = strokeColor.hex);
297             opacity = ((+a["stroke-opacity"] + 1 || 2) - 1) * ((+a.opacity + 1 || 2) - 1) * ((+strokeColor.o + 1 || 2) - 1);
298             var width = (toFloat(params["stroke-width"]) || 1) * .75;
299             opacity = mmin(mmax(opacity, 0), 1);
300             params["stroke-width"] == null && (width = a["stroke-width"]);
301             params["stroke-width"] && (stroke.weight = width);
302             width && width < 1 && (opacity *= width) && (stroke.weight = 1);
303             stroke.opacity = opacity;
304         
305             params["stroke-linejoin"] && (stroke.joinstyle = params["stroke-linejoin"] || "miter");
306             stroke.miterlimit = params["stroke-miterlimit"] || 8;
307             params["stroke-linecap"] && (stroke.endcap = params["stroke-linecap"] == "butt" ? "flat" : params["stroke-linecap"] == "square" ? "square" : "round");
308             if (params["stroke-dasharray"]) {
309                 var dasharray = {
310                     "-": "shortdash",
311                     ".": "shortdot",
312                     "-.": "shortdashdot",
313                     "-..": "shortdashdotdot",
314                     ". ": "dot",
315                     "- ": "dash",
316                     "--": "longdash",
317                     "- .": "dashdot",
318                     "--.": "longdashdot",
319                     "--..": "longdashdotdot"
320                 };
321                 stroke.dashstyle = dasharray[has](params["stroke-dasharray"]) ? dasharray[params["stroke-dasharray"]] : E;
322             }
323             newstroke && node.appendChild(stroke);
324         }
325         if (res.type == "text") {
326             res.paper.canvas.style.display = E;
327             var span = res.paper.span,
328                 m = 100,
329                 fontSize = a.font && a.font.match(/\d+(?:\.\d*)?(?=px)/);
330             s = span.style;
331             a.font && (s.font = a.font);
332             a["font-family"] && (s.fontFamily = a["font-family"]);
333             a["font-weight"] && (s.fontWeight = a["font-weight"]);
334             a["font-style"] && (s.fontStyle = a["font-style"]);
335             fontSize = toFloat(fontSize ? fontSize[0] : a["font-size"]);
336             s.fontSize = fontSize * m + "px";
337             res.textpath.string && (span.innerHTML = Str(res.textpath.string).replace(/</g, "&#60;").replace(/&/g, "&#38;").replace(/\n/g, "<br>"));
338             var brect = span.getBoundingClientRect();
339             res.W = a.w = (brect.right - brect.left) / m;
340             res.H = a.h = (brect.bottom - brect.top) / m;
341             // res.paper.canvas.style.display = "none";
342             res.X = a.x;
343             res.Y = a.y + res.H / 2;
344
345             ("x" in params || "y" in params) && (res.path.v = R.format("m{0},{1}l{2},{1}", round(a.x * zoom), round(a.y * zoom), round(a.x * zoom) + 1));
346             var dirtyattrs = ["x", "y", "text", "font", "font-family", "font-weight", "font-style", "font-size"];
347             for (var d = 0, dd = dirtyattrs.length; d < dd; d++) if (dirtyattrs[d] in params) {
348                 res._.dirty = 1;
349                 break;
350             }
351         
352             // text-anchor emulation
353             switch (a["text-anchor"]) {
354                 case "start":
355                     res.textpath.style["v-text-align"] = "left";
356                     res.bbx = res.W / 2;
357                 break;
358                 case "end":
359                     res.textpath.style["v-text-align"] = "right";
360                     res.bbx = -res.W / 2;
361                 break;
362                 default:
363                     res.textpath.style["v-text-align"] = "center";
364                     res.bbx = 0;
365                 break;
366             }
367             res.textpath.style["v-text-kern"] = true;
368         }
369         // res.paper.canvas.style.display = E;
370     };
371     addGradientFill = function (o, gradient, fill) {
372         o.attrs = o.attrs || {};
373         var attrs = o.attrs,
374             opacity,
375             oindex,
376             type = "linear",
377             fxfy = ".5 .5";
378         o.attrs.gradient = gradient;
379         gradient = Str(gradient).replace(R._radial_gradient, function (all, fx, fy) {
380             type = "radial";
381             if (fx && fy) {
382                 fx = toFloat(fx);
383                 fy = toFloat(fy);
384                 pow(fx - .5, 2) + pow(fy - .5, 2) > .25 && (fy = math.sqrt(.25 - pow(fx - .5, 2)) * ((fy > .5) * 2 - 1) + .5);
385                 fxfy = fx + S + fy;
386             }
387             return E;
388         });
389         gradient = gradient.split(/\s*\-\s*/);
390         if (type == "linear") {
391             var angle = gradient.shift();
392             angle = -toFloat(angle);
393             if (isNaN(angle)) {
394                 return null;
395             }
396         }
397         var dots = R._parseDots(gradient);
398         if (!dots) {
399             return null;
400         }
401         o = o.shape || o.node;
402         if (dots.length) {
403             o.removeChild(fill);
404             fill.on = true;
405             fill.method = "none";
406             fill.color = dots[0].color;
407             fill.color2 = dots[dots.length - 1].color;
408             var clrs = [];
409             for (var i = 0, ii = dots.length; i < ii; i++) {
410                 dots[i].offset && clrs.push(dots[i].offset + S + dots[i].color);
411             }
412             fill.colors = clrs.length ? clrs.join() : "0% " + fill.color;
413             if (type == "radial") {
414                 fill.type = "gradientTitle";
415                 fill.focus = "100%";
416                 fill.focussize = "0 0";
417                 fill.focusposition = fxfy;
418                 fill.angle = 0;
419             } else {
420                 // fill.rotate= true;
421                 fill.type = "gradient";
422                 fill.angle = (270 - angle) % 360;
423             }
424             o.appendChild(fill);
425         }
426         return 1;
427     };
428     Element = function (node, vml) {
429         this[0] = this.node = node;
430         node.raphael = true;
431         this.id = R._oid++;
432         node.raphaelid = this.id;
433         this.X = 0;
434         this.Y = 0;
435         this.attrs = {};
436         this.paper = vml;
437         this.matrix = R.matrix();
438         this._ = {
439             transform: [],
440             sx: 1,
441             sy: 1,
442             dx: 0,
443             dy: 0,
444             deg: 0,
445             dirty: 1,
446             dirtyT: 1
447         };
448         !vml.bottom && (vml.bottom = this);
449         this.prev = vml.top;
450         vml.top && (vml.top.next = this);
451         vml.top = this;
452         this.next = null;
453     };
454     var elproto = R.el;
455
456     Element.prototype = elproto;
457     elproto.constructor = Element;
458     elproto.transform = function (tstr) {
459         if (tstr == null) {
460             return this._.transform;
461         }
462         var vbs = this.paper._viewBoxShift,
463             vbt = vbs ? "s" + [vbs.scale, vbs.scale] + "-1-1t" + [vbs.dx, vbs.dy] : E,
464             oldt;
465         if (vbs) {
466             oldt = tstr = Str(tstr).replace(/\.{3}|\u2026/g, this._.transform || E);
467         }
468         R._extractTransform(this, vbt + tstr);
469         var matrix = this.matrix.clone(),
470             skew = this.skew,
471             o = this.node,
472             split,
473             isGrad = ~Str(this.attrs.fill).indexOf("-"),
474             isPatt = !Str(this.attrs.fill).indexOf("url(");
475         matrix.translate(-.5, -.5);
476         if (isPatt || isGrad || this.type == "image") {
477             skew.matrix = "1 0 0 1";
478             skew.offset = "0 0";
479             split = matrix.split();
480             if ((isGrad && split.noRotation) || !split.isSimple) {
481                 o.style.filter = matrix.toFilter();
482                 var bb = this.getBBox(),
483                     bbt = this.getBBox(1),
484                     dx = bb.x - bbt.x,
485                     dy = bb.y - bbt.y;
486                 o.coordorigin = (dx * -zoom) + S + (dy * -zoom);
487                 setCoords(this, 1, 1, dx, dy, 0);
488             } else {
489                 o.style.filter = E;
490                 setCoords(this, split.scalex, split.scaley, split.dx, split.dy, split.rotate);
491             }
492         } else {
493             o.style.filter = E;
494             skew.matrix = Str(matrix);
495             skew.offset = matrix.offset();
496         }
497         oldt && (this._.transform = oldt);
498         return this;
499     };
500     elproto.rotate = function (deg, cx, cy) {
501         if (this.removed) {
502             return this;
503         }
504         if (deg == null) {
505             return;
506         }
507         deg = Str(deg).split(separator);
508         if (deg.length - 1) {
509             cx = toFloat(deg[1]);
510             cy = toFloat(deg[2]);
511         }
512         deg = toFloat(deg[0]);
513         (cy == null) && (cx = cy);
514         if (cx == null || cy == null) {
515             var bbox = this.getBBox(1);
516             cx = bbox.x + bbox.width / 2;
517             cy = bbox.y + bbox.height / 2;
518         }
519         this._.dirtyT = 1;
520         this.transform(this._.transform.concat([["r", deg, cx, cy]]));
521         return this;
522     };
523     elproto.translate = function (dx, dy) {
524         if (this.removed) {
525             return this;
526         }
527         dx = Str(dx).split(separator);
528         if (dx.length - 1) {
529             dy = toFloat(dx[1]);
530         }
531         dx = toFloat(dx[0]) || 0;
532         dy = +dy || 0;
533         if (this._.bbox) {
534             this._.bbox.x += dx;
535             this._.bbox.y += dy;
536         }
537         this.transform(this._.transform.concat([["t", dx, dy]]));
538         return this;
539     };
540     elproto.scale = function (sx, sy, cx, cy) {
541         if (this.removed) {
542             return this;
543         }
544         sx = Str(sx).split(separator);
545         if (sx.length - 1) {
546             sy = toFloat(sx[1]);
547             cx = toFloat(sx[2]);
548             cy = toFloat(sx[3]);
549             isNaN(cx) && (cx = null);
550             isNaN(cy) && (cy = null);
551         }
552         sx = toFloat(sx[0]);
553         (sy == null) && (sy = sx);
554         (cy == null) && (cx = cy);
555         if (cx == null || cy == null) {
556             var bbox = this.getBBox(1);
557         }
558         cx = cx == null ? bbox.x + bbox.width / 2 : cx;
559         cy = cy == null ? bbox.y + bbox.height / 2 : cy;
560     
561         this.transform(this._.transform.concat([["s", sx, sy, cx, cy]]));
562         this._.dirtyT = 1;
563         return this;
564     };
565     elproto.hide = function () {
566         !this.removed && (this.node.style.display = "none");
567         return this;
568     };
569     elproto.show = function () {
570         !this.removed && (this.node.style.display = E);
571         return this;
572     };
573     elproto._getBBox = function () {
574         if (this.removed) {
575             return {};
576         }
577         if (this.type == "text") {
578             return {
579                 x: this.X + (this.bbx || 0) - this.W / 2,
580                 y: this.Y - this.H,
581                 width: this.W,
582                 height: this.H
583             };
584         } else {
585             return pathDimensions(this.attrs.path);
586         }
587     };
588     elproto.remove = function () {
589         if (this.removed) {
590             return;
591         }
592         R.eve.unbind("*.*." + this.id);
593         R._tear(this, this.paper);
594         this.node.parentNode.removeChild(this.node);
595         this.shape && this.shape.parentNode.removeChild(this.shape);
596         for (var i in this) {
597             delete this[i];
598         }
599         this.removed = true;
600     };
601     elproto.attr = function (name, value) {
602         if (this.removed) {
603             return this;
604         }
605         if (name == null) {
606             var res = {};
607             for (var a in this.attrs) if (this.attrs[has](a)) {
608                 res[a] = this.attrs[a];
609             }
610             res.gradient && res.fill == "none" && (res.fill = res.gradient) && delete res.gradient;
611             res.transform = this._.transform;
612             return res;
613         }
614         if (value == null && R.is(name, "string")) {
615             if (name == fillString && this.attrs.fill == "none" && this.attrs.gradient) {
616                 return this.attrs.gradient;
617             }
618             var names = name.split(separator),
619                 out = {};
620             for (var i = 0, ii = names.length; i < ii; i++) {
621                 name = names[i];
622                 if (name in this.attrs) {
623                     out[name] = this.attrs[name];
624                 } else if (R.is(this.paper.customAttributes[name], "function")) {
625                     out[name] = this.paper.customAttributes[name].def;
626                 } else {
627                     out[name] = R._availableAttrs[name];
628                 }
629             }
630             return ii - 1 ? out : out[names[0]];
631         }
632         if (this.attrs && value == null && R.is(name, "array")) {
633             out = {};
634             for (i = 0, ii = name.length; i < ii; i++) {
635                 out[name[i]] = this.attr(name[i]);
636             }
637             return out;
638         }
639         var params;
640         if (value != null) {
641             params = {};
642             params[name] = value;
643         }
644         value == null && R.is(name, "object") && (params = name);
645         for (var key in params) {
646             R.eve("attr." + key + "." + this.id, this, params[key]);
647         }
648         if (params) {
649             for (key in this.paper.customAttributes) if (this.paper.customAttributes[has](key) && params[has](key) && R.is(this.paper.customAttributes[key], "function")) {
650                 var par = this.paper.customAttributes[key].apply(this, [][concat](params[key]));
651                 this.attrs[key] = params[key];
652                 for (var subkey in par) if (par[has](subkey)) {
653                     params[subkey] = par[subkey];
654                 }
655             }
656             // this.paper.canvas.style.display = "none";
657             if (params.text && this.type == "text") {
658                 this.textpath.string = params.text;
659             }
660             setFillAndStroke(this, params);
661             // this.paper.canvas.style.display = E;
662         }
663         return this;
664     };
665     elproto.toFront = function () {
666         !this.removed && this.node.parentNode.appendChild(this.node);
667         this.paper && this.paper.top != this && R._tofront(this, this.paper);
668         return this;
669     };
670     elproto.toBack = function () {
671         if (this.removed) {
672             return this;
673         }
674         if (this.node.parentNode.firstChild != this.node) {
675             this.node.parentNode.insertBefore(this.node, this.node.parentNode.firstChild);
676             R._toback(this, this.paper);
677         }
678         return this;
679     };
680     elproto.insertAfter = function (element) {
681         if (this.removed) {
682             return this;
683         }
684         if (element.constructor == R.st.constructor) {
685             element = element[element.length - 1];
686         }
687         if (element.node.nextSibling) {
688             element.node.parentNode.insertBefore(this.node, element.node.nextSibling);
689         } else {
690             element.node.parentNode.appendChild(this.node);
691         }
692         R._insertafter(this, element, this.paper);
693         return this;
694     };
695     elproto.insertBefore = function (element) {
696         if (this.removed) {
697             return this;
698         }
699         if (element.constructor == R.st.constructor) {
700             element = element[0];
701         }
702         element.node.parentNode.insertBefore(this.node, element.node);
703         R._insertbefore(this, element, this.paper);
704         return this;
705     };
706     elproto.blur = function (size) {
707         var s = this.node.runtimeStyle,
708             f = s.filter;
709         f = f.replace(blurregexp, E);
710         if (+size !== 0) {
711             this.attrs.blur = size;
712             s.filter = f + S + ms + ".Blur(pixelradius=" + (+size || 1.5) + ")";
713             s.margin = R.format("-{0}px 0 0 -{0}px", round(+size || 1.5));
714         } else {
715             s.filter = f;
716             s.margin = 0;
717             delete this.attrs.blur;
718         }
719     };
720
721     R._engine.path = function (pathString, vml) {
722         var el = createNode("shape");
723         el.style.cssText = cssDot;
724         el.coordsize = zoom + S + zoom;
725         el.coordorigin = vml.coordorigin;
726         var p = new Element(el, vml),
727             attr = {fill: "none", stroke: "#000"};
728         pathString && (attr.path = pathString);
729         p.type = "path";
730         p.path = [];
731         p.Path = E;
732         setFillAndStroke(p, attr);
733         vml.canvas.appendChild(el);
734         var skew = createNode("skew");
735         skew.on = true;
736         el.appendChild(skew);
737         p.skew = skew;
738         p.transform(E);
739         return p;
740     };
741     R._engine.rect = function (vml, x, y, w, h, r) {
742         var path = R._rectPath(x, y, w, h, r),
743             res = vml.path(path),
744             a = res.attrs;
745         res.X = a.x = x;
746         res.Y = a.y = y;
747         res.W = a.width = w;
748         res.H = a.height = h;
749         a.r = r;
750         a.path = path;
751         res.type = "rect";
752         return res;
753     };
754     R._engine.ellipse = function (vml, x, y, rx, ry) {
755         var res = vml.path(),
756             a = res.attrs;
757         res.X = x - rx;
758         res.Y = y - ry;
759         res.W = rx * 2;
760         res.H = ry * 2;
761         res.type = "ellipse";
762         setFillAndStroke(res, {
763             cx: x,
764             cy: y,
765             rx: rx,
766             ry: ry
767         });
768         return res;
769     };
770     R._engine.circle = function (vml, x, y, r) {
771         var res = vml.path(),
772             a = res.attrs;
773         res.X = x - r;
774         res.Y = y - r;
775         res.W = res.H = r * 2;
776         res.type = "circle";
777         setFillAndStroke(res, {
778             cx: x,
779             cy: y,
780             r: r
781         });
782         return res;
783     };
784     R._engine.image = function (vml, src, x, y, w, h) {
785         var path = R._rectPath(x, y, w, h),
786             res = vml.path(path).attr({stroke: "none"}),
787             a = res.attrs,
788             node = res.node,
789             fill = node.getElementsByTagName(fillString)[0];
790         a.src = src;
791         res.X = a.x = x;
792         res.Y = a.y = y;
793         res.W = a.width = w;
794         res.H = a.height = h;
795         a.path = path;
796         res.type = "image";
797         fill.parentNode == node && node.removeChild(fill);
798         fill.rotate = true;
799         fill.src = src;
800         fill.type = "tile";
801         res._.fillpos = [x, y];
802         res._.fillsize = [w, h];
803         node.appendChild(fill);
804         setCoords(res, 1, 1, 0, 0, 0);
805         return res;
806     };
807     R._engine.text = function (vml, x, y, text) {
808         var el = createNode("shape"),
809             path = createNode("path"),
810             o = createNode("textpath");
811         x = x || 0;
812         y = y || 0;
813         text = text || "";
814         path.v = R.format("m{0},{1}l{2},{1}", round(x * zoom), round(y * zoom), round(x * zoom) + 1);
815         path.textpathok = true;
816         o.string = Str(text);
817         o.on = true;
818         el.style.cssText = "position:absolute;left:0;top:0;width:1px;height:1px";
819         el.coordsize = zoom + S + zoom;
820         el.coordorigin = "0 0";
821         var p = new Element(el, vml),
822             attr = {
823                 fill: "#000",
824                 stroke: "none",
825                 font: R._availableAttrs.font,
826                 text: text
827             };
828         p.shape = el;
829         p.path = path;
830         p.textpath = o;
831         p.type = "text";
832         p.attrs.text = Str(text);
833         p.attrs.x = x;
834         p.attrs.y = y;
835         p.attrs.w = 1;
836         p.attrs.h = 1;
837         setFillAndStroke(p, attr);
838         el.appendChild(o);
839         el.appendChild(path);
840         vml.canvas.appendChild(el);
841         var skew = createNode("skew");
842         skew.on = true;
843         el.appendChild(skew);
844         p.skew = skew;
845         p.transform(E);
846         return p;
847     };
848     R._engine.setSize = function (width, height) {
849         var cs = this.canvas.style;
850         this.width = width;
851         this.height = height;
852         width == +width && (width += "px");
853         height == +height && (height += "px");
854         cs.width = width;
855         cs.height = height;
856         cs.clip = "rect(0 " + width + " " + height + " 0)";
857         if (this._viewBox) {
858             setViewBox.apply(this, this._viewBox);
859         }
860         return this;
861     };
862     R._engine.setViewBox = function (x, y, w, h, fit) {
863         R.eve("setViewBox", this, this._viewBox, [x, y, w, h, fit]);
864         var width = this.width,
865             height = this.height,
866             size = 1 / mmax(w / width, h / height),
867             H, W;
868         if (fit) {
869             H = height / h;
870             W = width / w;
871             if (w * H < width) {
872                 x -= (width - w * H) / 2 / H;
873             }
874             if (h * W < height) {
875                 y -= (height - h * W) / 2 / W;
876             }
877         }
878         this._viewBox = [x, y, w, h, !!fit];
879         this._viewBoxShift = {
880             dx: -x,
881             dy: -y,
882             scale: size
883         };
884         this.forEach(function (el) {
885             el.transform("...");
886         });
887         return this;
888     };
889     var createNode,
890         initWin = function (win) {
891             var doc = win.document;
892             doc.createStyleSheet().addRule(".rvml", "behavior:url(#default#VML)");
893             try {
894                 !doc.namespaces.rvml && doc.namespaces.add("rvml", "urn:schemas-microsoft-com:vml");
895                 createNode = function (tagName) {
896                     return doc.createElement('<rvml:' + tagName + ' class="rvml">');
897                 };
898             } catch (e) {
899                 createNode = function (tagName) {
900                     return doc.createElement('<' + tagName + ' xmlns="urn:schemas-microsoft.com:vml" class="rvml">');
901                 };
902             }
903         };
904     initWin(R._g.win);
905     R._engine.create = function () {
906         var con = R._getContainer.apply(0, arguments),
907             container = con.container,
908             height = con.height,
909             s,
910             width = con.width,
911             x = con.x,
912             y = con.y;
913         if (!container) {
914             throw new Error("VML container not found.");
915         }
916         var res = new R._Paper,
917             c = res.canvas = R._g.doc.createElement("div"),
918             cs = c.style;
919         x = x || 0;
920         y = y || 0;
921         width = width || 512;
922         height = height || 342;
923         res.width = width;
924         res.height = height;
925         width == +width && (width += "px");
926         height == +height && (height += "px");
927         res.coordsize = zoom * 1e3 + S + zoom * 1e3;
928         res.coordorigin = "0 0";
929         res.span = R._g.doc.createElement("span");
930         res.span.style.cssText = "position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;";
931         c.appendChild(res.span);
932         cs.cssText = R.format("top:0;left:0;width:{0};height:{1};display:inline-block;position:relative;clip:rect(0 {0} {1} 0);overflow:hidden", width, height);
933         if (container == 1) {
934             R._g.doc.body.appendChild(c);
935             cs.left = x + "px";
936             cs.top = y + "px";
937             cs.position = "absolute";
938         } else {
939             if (container.firstChild) {
940                 container.insertBefore(c, container.firstChild);
941             } else {
942                 container.appendChild(c);
943             }
944         }
945         // plugins.call(res, res, R.fn);
946         res.renderfix = function () {};
947         return res;
948     };
949     R.prototype.clear = function () {
950         R.eve("clear", this);
951         this.canvas.innerHTML = E;
952         this.span = R._g.doc.createElement("span");
953         this.span.style.cssText = "position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;display:inline;";
954         this.canvas.appendChild(this.span);
955         this.bottom = this.top = null;
956     };
957     R.prototype.remove = function () {
958         R.eve("remove", this);
959         this.canvas.parentNode.removeChild(this.canvas);
960         for (var i in this) {
961             this[i] = removed(i);
962         }
963         return true;
964     };
965 }(window.Raphael);