vml.js
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:31k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2. Copyright (c) 2004-2006, The Dojo Foundation
  3. All Rights Reserved.
  4. Licensed under the Academic Free License version 2.1 or above OR the
  5. modified BSD license. For more information on Dojo licensing, see:
  6. http://dojotoolkit.org/community/licensing.shtml
  7. */
  8. dojo.provide("dojo.gfx.vml");
  9. dojo.require("dojo.dom");
  10. dojo.require("dojo.math");
  11. dojo.require("dojo.lang.declare");
  12. dojo.require("dojo.lang.extras");
  13. dojo.require("dojo.string.*");
  14. dojo.require("dojo.html.metrics");
  15. dojo.require("dojo.gfx.color");
  16. dojo.require("dojo.gfx.common");
  17. dojo.require("dojo.gfx.shape");
  18. dojo.require("dojo.gfx.path");
  19. dojo.require("dojo.experimental");
  20. dojo.experimental("dojo.gfx.vml");
  21. dojo.gfx.vml.xmlns = "urn:schemas-microsoft-com:vml";
  22. dojo.gfx.vml._parseFloat = function (str) {
  23. return str.match(/^d+f$/i) ? parseInt(str) / 65536 : parseFloat(str);
  24. };
  25. dojo.gfx.vml.cm_in_pt = 72 / 2.54;
  26. dojo.gfx.vml.mm_in_pt = 7.2 / 2.54;
  27. dojo.gfx.vml.px_in_pt = function () {
  28. return dojo.html.getCachedFontMeasurements()["12pt"] / 12;
  29. };
  30. dojo.gfx.vml.pt2px = function (len) {
  31. return len * this.px_in_pt();
  32. };
  33. dojo.gfx.vml.px2pt = function (len) {
  34. return len / this.px_in_pt();
  35. };
  36. dojo.gfx.vml.normalizedLength = function (len) {
  37. if (len.length == 0) {
  38. return 0;
  39. }
  40. if (len.length > 2) {
  41. var px_in_pt = this.px_in_pt();
  42. var val = parseFloat(len);
  43. switch (len.slice(-2)) {
  44.   case "px":
  45. return val;
  46.   case "pt":
  47. return val * px_in_pt;
  48.   case "in":
  49. return val * 72 * px_in_pt;
  50.   case "pc":
  51. return val * 12 * px_in_pt;
  52.   case "mm":
  53. return val / this.mm_in_pt * px_in_pt;
  54.   case "cm":
  55. return val / this.cm_in_pt * px_in_pt;
  56. }
  57. }
  58. return parseFloat(len);
  59. };
  60. dojo.lang.extend(dojo.gfx.Shape, {setFill:function (fill) {
  61. if (!fill) {
  62. this.fillStyle = null;
  63. this.rawNode.filled = false;
  64. return this;
  65. }
  66. if (typeof (fill) == "object" && "type" in fill) {
  67. switch (fill.type) {
  68.   case "linear":
  69. var f = dojo.gfx.makeParameters(dojo.gfx.defaultLinearGradient, fill);
  70. this.fillStyle = f;
  71. var s = "";
  72. for (var i = 0; i < f.colors.length; ++i) {
  73. f.colors[i].color = dojo.gfx.normalizeColor(f.colors[i].color);
  74. s += f.colors[i].offset.toFixed(8) + " " + f.colors[i].color.toHex() + ";";
  75. }
  76. var fo = this.rawNode.fill;
  77. fo.colors.value = s;
  78. fo.method = "sigma";
  79. fo.type = "gradient";
  80. fo.angle = (dojo.math.radToDeg(Math.atan2(f.x2 - f.x1, f.y2 - f.y1)) + 180) % 360;
  81. fo.on = true;
  82. break;
  83.   case "radial":
  84. var f = dojo.gfx.makeParameters(dojo.gfx.defaultRadialGradient, fill);
  85. this.fillStyle = f;
  86. var w = parseFloat(this.rawNode.style.width);
  87. var h = parseFloat(this.rawNode.style.height);
  88. var c = isNaN(w) ? 1 : 2 * f.r / w;
  89. var i = f.colors.length - 1;
  90. f.colors[i].color = dojo.gfx.normalizeColor(f.colors[i].color);
  91. var s = "0 " + f.colors[i].color.toHex();
  92. for (; i >= 0; --i) {
  93. f.colors[i].color = dojo.gfx.normalizeColor(f.colors[i].color);
  94. s += (1 - c * f.colors[i].offset).toFixed(8) + " " + f.colors[i].color.toHex() + ";";
  95. }
  96. var fo = this.rawNode.fill;
  97. fo.colors.value = s;
  98. fo.method = "sigma";
  99. fo.type = "gradientradial";
  100. if (isNaN(w) || isNaN(h)) {
  101. fo.focusposition = "0.5 0.5";
  102. } else {
  103. fo.focusposition = (f.cx / w).toFixed(8) + " " + (f.cy / h).toFixed(8);
  104. }
  105. fo.focussize = "0 0";
  106. fo.on = true;
  107. break;
  108.   case "pattern":
  109. var f = dojo.gfx.makeParameters(dojo.gfx.defaultPattern, fill);
  110. this.fillStyle = f;
  111. var fo = this.rawNode.fill;
  112. fo.type = "tile";
  113. fo.src = f.src;
  114. if (f.width && f.height) {
  115. fo.size.x = dojo.gfx.vml.px2pt(f.width);
  116. fo.size.y = dojo.gfx.vml.px2pt(f.height);
  117. }
  118. fo.alignShape = false;
  119. fo.position.x = 0;
  120. fo.position.y = 0;
  121. fo.origin.x = f.width ? f.x / f.width : 0;
  122. fo.origin.y = f.height ? f.y / f.height : 0;
  123. fo.on = true;
  124. break;
  125. }
  126. this.rawNode.fill.opacity = 1;
  127. return this;
  128. }
  129. this.fillStyle = dojo.gfx.normalizeColor(fill);
  130. this.rawNode.fillcolor = this.fillStyle.toHex();
  131. this.rawNode.fill.opacity = this.fillStyle.a;
  132. this.rawNode.filled = true;
  133. return this;
  134. }, setStroke:function (stroke) {
  135. if (!stroke) {
  136. this.strokeStyle = null;
  137. this.rawNode.stroked = false;
  138. return this;
  139. }
  140. this.strokeStyle = dojo.gfx.makeParameters(dojo.gfx.defaultStroke, stroke);
  141. this.strokeStyle.color = dojo.gfx.normalizeColor(this.strokeStyle.color);
  142. var s = this.strokeStyle;
  143. this.rawNode.stroked = true;
  144. this.rawNode.strokecolor = s.color.toCss();
  145. this.rawNode.strokeweight = s.width + "px";
  146. if (this.rawNode.stroke) {
  147. this.rawNode.stroke.opacity = s.color.a;
  148. this.rawNode.stroke.endcap = this._translate(this._capMap, s.cap);
  149. if (typeof (s.join) == "number") {
  150. this.rawNode.stroke.joinstyle = "miter";
  151. this.rawNode.stroke.miterlimit = s.join;
  152. } else {
  153. this.rawNode.stroke.joinstyle = s.join;
  154. }
  155. }
  156. return this;
  157. }, _capMap:{butt:"flat"}, _capMapReversed:{flat:"butt"}, _translate:function (dict, value) {
  158. return (value in dict) ? dict[value] : value;
  159. }, _applyTransform:function () {
  160. var matrix = this._getRealMatrix();
  161. if (!matrix) {
  162. return this;
  163. }
  164. var skew = this.rawNode.skew;
  165. if (typeof (skew) == "undefined") {
  166. for (var i = 0; i < this.rawNode.childNodes.length; ++i) {
  167. if (this.rawNode.childNodes[i].tagName == "skew") {
  168. skew = this.rawNode.childNodes[i];
  169. break;
  170. }
  171. }
  172. }
  173. if (skew) {
  174. skew.on = false;
  175. var mt = matrix.xx.toFixed(8) + " " + matrix.xy.toFixed(8) + " " + matrix.yx.toFixed(8) + " " + matrix.yy.toFixed(8) + " 0 0";
  176. var offset = Math.floor(matrix.dx).toFixed() + "px " + Math.floor(matrix.dy).toFixed() + "px";
  177. var l = parseFloat(this.rawNode.style.left);
  178. var t = parseFloat(this.rawNode.style.top);
  179. var w = parseFloat(this.rawNode.style.width);
  180. var h = parseFloat(this.rawNode.style.height);
  181. if (isNaN(l)) {
  182. l = 0;
  183. }
  184. if (isNaN(t)) {
  185. t = 0;
  186. }
  187. if (isNaN(w)) {
  188. w = 1;
  189. }
  190. if (isNaN(h)) {
  191. h = 1;
  192. }
  193. var origin = (-l / w - 0.5).toFixed(8) + " " + (-t / h - 0.5).toFixed(8);
  194. skew.matrix = mt;
  195. skew.origin = origin;
  196. skew.offset = offset;
  197. skew.on = true;
  198. }
  199. return this;
  200. }, setRawNode:function (rawNode) {
  201. rawNode.stroked = false;
  202. rawNode.filled = false;
  203. this.rawNode = rawNode;
  204. }, attachFill:function (rawNode) {
  205. var fillStyle = null;
  206. var fo = rawNode.fill;
  207. if (rawNode) {
  208. if (fo.on && fo.type == "gradient") {
  209. var fillStyle = dojo.lang.shallowCopy(dojo.gfx.defaultLinearGradient, true);
  210. var rad = dojo.math.degToRad(fo.angle);
  211. fillStyle.x2 = Math.cos(rad);
  212. fillStyle.y2 = Math.sin(rad);
  213. fillStyle.colors = [];
  214. var stops = fo.colors.value.split(";");
  215. for (var i = 0; i < stops.length; ++i) {
  216. var t = stops[i].match(/S+/g);
  217. if (!t || t.length != 2) {
  218. continue;
  219. }
  220. fillStyle.colors.push({offset:dojo.gfx.vml._parseFloat(t[0]), color:new dojo.gfx.color.Color(t[1])});
  221. }
  222. } else {
  223. if (fo.on && fo.type == "gradientradial") {
  224. var fillStyle = dojo.lang.shallowCopy(dojo.gfx.defaultRadialGradient, true);
  225. var w = parseFloat(rawNode.style.width);
  226. var h = parseFloat(rawNode.style.height);
  227. fillStyle.cx = isNaN(w) ? 0 : fo.focusposition.x * w;
  228. fillStyle.cy = isNaN(h) ? 0 : fo.focusposition.y * h;
  229. fillStyle.r = isNaN(w) ? 1 : w / 2;
  230. fillStyle.colors = [];
  231. var stops = fo.colors.value.split(";");
  232. for (var i = stops.length - 1; i >= 0; --i) {
  233. var t = stops[i].match(/S+/g);
  234. if (!t || t.length != 2) {
  235. continue;
  236. }
  237. fillStyle.colors.push({offset:dojo.gfx.vml._parseFloat(t[0]), color:new dojo.gfx.color.Color(t[1])});
  238. }
  239. } else {
  240. if (fo.on && fo.type == "tile") {
  241. var fillStyle = dojo.lang.shallowCopy(dojo.gfx.defaultPattern, true);
  242. fillStyle.width = dojo.gfx.vml.pt2px(fo.size.x);
  243. fillStyle.height = dojo.gfx.vml.pt2px(fo.size.y);
  244. fillStyle.x = fo.origin.x * fillStyle.width;
  245. fillStyle.y = fo.origin.y * fillStyle.height;
  246. fillStyle.src = fo.src;
  247. } else {
  248. if (fo.on && rawNode.fillcolor) {
  249. fillStyle = new dojo.gfx.color.Color(rawNode.fillcolor + "");
  250. fillStyle.a = fo.opacity;
  251. }
  252. }
  253. }
  254. }
  255. }
  256. return fillStyle;
  257. }, attachStroke:function (rawNode) {
  258. var strokeStyle = dojo.lang.shallowCopy(dojo.gfx.defaultStroke, true);
  259. if (rawNode && rawNode.stroked) {
  260. strokeStyle.color = new dojo.gfx.color.Color(rawNode.strokecolor.value);
  261. dojo.debug("We are expecting an .75pt here, instead of strokeweight = " + rawNode.strokeweight);
  262. strokeStyle.width = dojo.gfx.vml.normalizedLength(rawNode.strokeweight + "");
  263. strokeStyle.color.a = rawNode.stroke.opacity;
  264. strokeStyle.cap = this._translate(this._capMapReversed, rawNode.stroke.endcap);
  265. strokeStyle.join = rawNode.stroke.joinstyle == "miter" ? rawNode.stroke.miterlimit : rawNode.stroke.joinstyle;
  266. } else {
  267. return null;
  268. }
  269. return strokeStyle;
  270. }, attachTransform:function (rawNode) {
  271. var matrix = {};
  272. if (rawNode) {
  273. var s = rawNode.skew;
  274. matrix.xx = s.matrix.xtox;
  275. matrix.xy = s.matrix.ytox;
  276. matrix.yx = s.matrix.xtoy;
  277. matrix.yy = s.matrix.ytoy;
  278. matrix.dx = dojo.gfx.vml.pt2px(s.offset.x);
  279. matrix.dy = dojo.gfx.vml.pt2px(s.offset.y);
  280. }
  281. return dojo.gfx.matrix.normalize(matrix);
  282. }, attach:function (rawNode) {
  283. if (rawNode) {
  284. this.rawNode = rawNode;
  285. this.shape = this.attachShape(rawNode);
  286. this.fillStyle = this.attachFill(rawNode);
  287. this.strokeStyle = this.attachStroke(rawNode);
  288. this.matrix = this.attachTransform(rawNode);
  289. }
  290. }});
  291. dojo.declare("dojo.gfx.Group", dojo.gfx.shape.VirtualGroup, {add:function (shape) {
  292. if (this != shape.getParent()) {
  293. this.rawNode.appendChild(shape.rawNode);
  294. dojo.gfx.Group.superclass.add.apply(this, arguments);
  295. }
  296. return this;
  297. }, remove:function (shape, silently) {
  298. if (this == shape.getParent()) {
  299. if (this.rawNode == shape.rawNode.parentNode) {
  300. this.rawNode.removeChild(shape.rawNode);
  301. }
  302. dojo.gfx.Group.superclass.remove.apply(this, arguments);
  303. }
  304. return this;
  305. }, attach:function (rawNode) {
  306. if (rawNode) {
  307. this.rawNode = rawNode;
  308. this.shape = null;
  309. this.fillStyle = null;
  310. this.strokeStyle = null;
  311. this.matrix = null;
  312. }
  313. }});
  314. dojo.gfx.Group.nodeType = "group";
  315. var zIndex = {moveToFront:function () {
  316. this.rawNode.parentNode.appendChild(this.rawNode);
  317. return this;
  318. }, moveToBack:function () {
  319. this.rawNode.parentNode.insertBefore(this.rawNode, this.rawNode.parentNode.firstChild);
  320. return this;
  321. }};
  322. dojo.lang.extend(dojo.gfx.Shape, zIndex);
  323. dojo.lang.extend(dojo.gfx.Group, zIndex);
  324. delete zIndex;
  325. dojo.declare("dojo.gfx.Rect", dojo.gfx.shape.Rect, {attachShape:function (rawNode) {
  326. var arcsize = rawNode.outerHTML.match(/arcsize = "(d*.?d+[%f]?)"/)[1];
  327. arcsize = (arcsize.indexOf("%") >= 0) ? parseFloat(arcsize) / 100 : dojo.gfx.vml._parseFloat(arcsize);
  328. var style = rawNode.style;
  329. var width = parseFloat(style.width);
  330. var height = parseFloat(style.height);
  331. var o = dojo.gfx.makeParameters(dojo.gfx.defaultRect, {x:parseInt(style.left), y:parseInt(style.top), width:width, height:height, r:Math.min(width, height) * arcsize});
  332. return o;
  333. }, setShape:function (newShape) {
  334. var shape = this.shape = dojo.gfx.makeParameters(this.shape, newShape);
  335. this.bbox = null;
  336. var style = this.rawNode.style;
  337. style.left = shape.x.toFixed();
  338. style.top = shape.y.toFixed();
  339. style.width = (typeof (shape.width) == "string" && shape.width.indexOf("%") >= 0) ? shape.width : shape.width.toFixed();
  340. style.height = (typeof (shape.width) == "string" && shape.height.indexOf("%") >= 0) ? shape.height : shape.height.toFixed();
  341. var r = Math.min(1, (shape.r / Math.min(parseFloat(shape.width), parseFloat(shape.height)))).toFixed(8);
  342. var parent = this.rawNode.parentNode;
  343. var before = null;
  344. if (parent) {
  345. if (parent.lastChild != this.rawNode) {
  346. for (var i = 0; i < parent.childNodes.length; ++i) {
  347. if (parent.childNodes[i] == this.rawNode) {
  348. before = parent.childNodes[i + 1];
  349. break;
  350. }
  351. }
  352. }
  353. parent.removeChild(this.rawNode);
  354. }
  355. this.rawNode.arcsize = r;
  356. if (parent) {
  357. if (before) {
  358. parent.insertBefore(this.rawNode, before);
  359. } else {
  360. parent.appendChild(this.rawNode);
  361. }
  362. }
  363. return this.setTransform(this.matrix);
  364. }});
  365. dojo.gfx.Rect.nodeType = "roundrect";
  366. dojo.declare("dojo.gfx.Ellipse", dojo.gfx.shape.Ellipse, {attachShape:function (rawNode) {
  367. var style = this.rawNode.style;
  368. var rx = parseInt(style.width) / 2;
  369. var ry = parseInt(style.height) / 2;
  370. var o = dojo.gfx.makeParameters(dojo.gfx.defaultEllipse, {cx:parseInt(style.left) + rx, cy:parseInt(style.top) + ry, rx:rx, ry:ry});
  371. return o;
  372. }, setShape:function (newShape) {
  373. var shape = this.shape = dojo.gfx.makeParameters(this.shape, newShape);
  374. this.bbox = null;
  375. var style = this.rawNode.style;
  376. style.left = (shape.cx - shape.rx).toFixed();
  377. style.top = (shape.cy - shape.ry).toFixed();
  378. style.width = (shape.rx * 2).toFixed();
  379. style.height = (shape.ry * 2).toFixed();
  380. return this.setTransform(this.matrix);
  381. }});
  382. dojo.gfx.Ellipse.nodeType = "oval";
  383. dojo.declare("dojo.gfx.Circle", dojo.gfx.shape.Circle, {attachShape:function (rawNode) {
  384. var style = this.rawNode.style;
  385. var r = parseInt(style.width) / 2;
  386. var o = dojo.gfx.makeParameters(dojo.gfx.defaultCircle, {cx:parseInt(style.left) + r, cy:parseInt(style.top) + r, r:r});
  387. return o;
  388. }, setShape:function (newShape) {
  389. var shape = this.shape = dojo.gfx.makeParameters(this.shape, newShape);
  390. this.bbox = null;
  391. var style = this.rawNode.style;
  392. style.left = (shape.cx - shape.r).toFixed();
  393. style.top = (shape.cy - shape.r).toFixed();
  394. style.width = (shape.r * 2).toFixed();
  395. style.height = (shape.r * 2).toFixed();
  396. return this;
  397. }});
  398. dojo.gfx.Circle.nodeType = "oval";
  399. dojo.declare("dojo.gfx.Line", dojo.gfx.shape.Line, function (rawNode) {
  400. if (rawNode) {
  401. rawNode.setAttribute("dojoGfxType", "line");
  402. }
  403. }, {attachShape:function (rawNode) {
  404. var p = rawNode.path.v.match(dojo.gfx.pathRegExp);
  405. var shape = {};
  406. do {
  407. if (p.length < 7 || p[0] != "m" || p[3] != "l" || p[6] != "e") {
  408. break;
  409. }
  410. shape.x1 = parseInt(p[1]);
  411. shape.y1 = parseInt(p[2]);
  412. shape.x2 = parseInt(p[4]);
  413. shape.y2 = parseInt(p[5]);
  414. } while (false);
  415. return dojo.gfx.makeParameters(dojo.gfx.defaultLine, shape);
  416. }, setShape:function (newShape) {
  417. var shape = this.shape = dojo.gfx.makeParameters(this.shape, newShape);
  418. this.bbox = null;
  419. this.rawNode.path.v = "m" + shape.x1.toFixed() + " " + shape.y1.toFixed() + "l" + shape.x2.toFixed() + " " + shape.y2.toFixed() + "e";
  420. return this.setTransform(this.matrix);
  421. }});
  422. dojo.gfx.Line.nodeType = "shape";
  423. dojo.declare("dojo.gfx.Polyline", dojo.gfx.shape.Polyline, function (rawNode) {
  424. if (rawNode) {
  425. rawNode.setAttribute("dojoGfxType", "polyline");
  426. }
  427. }, {attachShape:function (rawNode) {
  428. var shape = dojo.lang.shallowCopy(dojo.gfx.defaultPolyline, true);
  429. var p = rawNode.path.v.match(dojo.gfx.pathRegExp);
  430. do {
  431. if (p.length < 3 || p[0] != "m") {
  432. break;
  433. }
  434. var x = parseInt(p[0]);
  435. var y = parseInt(p[1]);
  436. if (isNaN(x) || isNaN(y)) {
  437. break;
  438. }
  439. shape.points.push({x:x, y:y});
  440. if (p.length < 6 || p[3] != "l") {
  441. break;
  442. }
  443. for (var i = 4; i < p.length; i += 2) {
  444. x = parseInt(p[i]);
  445. y = parseInt(p[i + 1]);
  446. if (isNaN(x) || isNaN(y)) {
  447. break;
  448. }
  449. shape.points.push({x:x, y:y});
  450. }
  451. } while (false);
  452. return shape;
  453. }, setShape:function (points, closed) {
  454. if (points && points instanceof Array) {
  455. this.shape = dojo.gfx.makeParameters(this.shape, {points:points});
  456. if (closed && this.shape.points.length) {
  457. this.shape.points.push(this.shape.points[0]);
  458. }
  459. } else {
  460. this.shape = dojo.gfx.makeParameters(this.shape, points);
  461. }
  462. this.bbox = null;
  463. var attr = [];
  464. var p = this.shape.points;
  465. if (p.length > 0) {
  466. attr.push("m");
  467. attr.push(p[0].x.toFixed());
  468. attr.push(p[0].y.toFixed());
  469. if (p.length > 1) {
  470. attr.push("l");
  471. for (var i = 1; i < p.length; ++i) {
  472. attr.push(p[i].x.toFixed());
  473. attr.push(p[i].y.toFixed());
  474. }
  475. }
  476. }
  477. attr.push("e");
  478. this.rawNode.path.v = attr.join(" ");
  479. return this.setTransform(this.matrix);
  480. }});
  481. dojo.gfx.Polyline.nodeType = "shape";
  482. dojo.declare("dojo.gfx.Image", dojo.gfx.shape.Image, {getEventSource:function () {
  483. return this.rawNode ? this.rawNode.firstChild : null;
  484. }, attachShape:function (rawNode) {
  485. var shape = dojo.lang.shallowCopy(dojo.gfx.defaultImage, true);
  486. shape.src = rawNode.firstChild.src;
  487. return shape;
  488. }, setShape:function (newShape) {
  489. var shape = this.shape = dojo.gfx.makeParameters(this.shape, newShape);
  490. this.bbox = null;
  491. var firstChild = this.rawNode.firstChild;
  492. firstChild.src = shape.src;
  493. if (shape.width || shape.height) {
  494. firstChild.style.width = shape.width;
  495. firstChild.style.height = shape.height;
  496. }
  497. return this.setTransform(this.matrix);
  498. }, setStroke:function () {
  499. return this;
  500. }, setFill:function () {
  501. return this;
  502. }, attachStroke:function (rawNode) {
  503. return null;
  504. }, attachFill:function (rawNode) {
  505. return null;
  506. }, attachTransform:function (rawNode) {
  507. var matrix = {};
  508. if (rawNode) {
  509. var m = rawNode.filters["DXImageTransform.Microsoft.Matrix"];
  510. matrix.xx = m.M11;
  511. matrix.xy = m.M12;
  512. matrix.yx = m.M21;
  513. matrix.yy = m.M22;
  514. matrix.dx = m.Dx;
  515. matrix.dy = m.Dy;
  516. }
  517. return dojo.gfx.matrix.normalize(matrix);
  518. }, _applyTransform:function () {
  519. var matrix = this._getRealMatrix();
  520. if (!matrix) {
  521. return this;
  522. }
  523. with (this.rawNode.filters["DXImageTransform.Microsoft.Matrix"]) {
  524. M11 = matrix.xx;
  525. M12 = matrix.xy;
  526. M21 = matrix.yx;
  527. M22 = matrix.yy;
  528. Dx = matrix.dx;
  529. Dy = matrix.dy;
  530. }
  531. return this;
  532. }});
  533. dojo.gfx.Image.nodeType = "image";
  534. dojo.gfx.path._calcArc = function (alpha) {
  535. var cosa = Math.cos(alpha);
  536. var sina = Math.sin(alpha);
  537. var p2 = {x:cosa + (4 / 3) * (1 - cosa), y:sina - (4 / 3) * cosa * (1 - cosa) / sina};
  538. return {s:{x:cosa, y:sina}, c1:p2, c2:{x:p2.x, y:-p2.y}, e:{x:cosa, y:-sina}};
  539. };
  540. dojo.declare("dojo.gfx.Path", dojo.gfx.path.Path, function (rawNode) {
  541. if (rawNode) {
  542. rawNode.setAttribute("dojoGfxType", "path");
  543. }
  544. this.vmlPath = "";
  545. this.lastControl = {};
  546. }, {_updateWithSegment:function (segment) {
  547. var last = dojo.lang.shallowCopy(this.last);
  548. dojo.gfx.Path.superclass._updateWithSegment.apply(this, arguments);
  549. var path = this[this.renderers[segment.action]](segment, last);
  550. if (typeof (this.vmlPath) == "string") {
  551. this.vmlPath += path.join("");
  552. } else {
  553. this.vmlPath = this.vmlPath.concat(path);
  554. }
  555. if (typeof (this.vmlPath) == "string") {
  556. this.rawNode.path.v = this.vmlPath + " e";
  557. }
  558. }, attachShape:function (rawNode) {
  559. var shape = dojo.lang.shallowCopy(dojo.gfx.defaultPath, true);
  560. var p = rawNode.path.v.match(dojo.gfx.pathRegExp);
  561. var t = [], skip = false;
  562. for (var i = 0; i < p.length; ++p) {
  563. var s = p[i];
  564. if (s in this._pathVmlToSvgMap) {
  565. skip = false;
  566. t.push(this._pathVmlToSvgMap[s]);
  567. } else {
  568. if (!skip) {
  569. var n = parseInt(s);
  570. if (isNaN(n)) {
  571. skip = true;
  572. } else {
  573. t.push(n);
  574. }
  575. }
  576. }
  577. }
  578. if (t.length) {
  579. shape.path = t.join(" ");
  580. }
  581. return shape;
  582. }, setShape:function (newShape) {
  583. this.vmlPath = [];
  584. this.lastControl = {};
  585. dojo.gfx.Path.superclass.setShape.apply(this, arguments);
  586. this.vmlPath = this.vmlPath.join("");
  587. this.rawNode.path.v = this.vmlPath + " e";
  588. return this;
  589. }, _pathVmlToSvgMap:{m:"M", l:"L", t:"m", r:"l", c:"C", v:"c", qb:"Q", x:"z", e:""}, renderers:{M:"_moveToA", m:"_moveToR", L:"_lineToA", l:"_lineToR", H:"_hLineToA", h:"_hLineToR", V:"_vLineToA", v:"_vLineToR", C:"_curveToA", c:"_curveToR", S:"_smoothCurveToA", s:"_smoothCurveToR", Q:"_qCurveToA", q:"_qCurveToR", T:"_qSmoothCurveToA", t:"_qSmoothCurveToR", A:"_arcTo", a:"_arcTo", Z:"_closePath", z:"_closePath"}, _addArgs:function (path, args, from, upto) {
  590. if (typeof (upto) == "undefined") {
  591. upto = args.length;
  592. }
  593. if (typeof (from) == "undefined") {
  594. from = 0;
  595. }
  596. for (var i = from; i < upto; ++i) {
  597. path.push(" ");
  598. path.push(args[i].toFixed());
  599. }
  600. }, _addArgsAdjusted:function (path, last, args, from, upto) {
  601. if (typeof (upto) == "undefined") {
  602. upto = args.length;
  603. }
  604. if (typeof (from) == "undefined") {
  605. from = 0;
  606. }
  607. for (var i = from; i < upto; i += 2) {
  608. path.push(" ");
  609. path.push((last.x + args[i]).toFixed());
  610. path.push(" ");
  611. path.push((last.y + args[i + 1]).toFixed());
  612. }
  613. }, _moveToA:function (segment) {
  614. var p = [" m"];
  615. var n = segment.args;
  616. var l = n.length;
  617. if (l == 2) {
  618. this._addArgs(p, n);
  619. } else {
  620. this._addArgs(p, n, 0, 2);
  621. p.push(" l");
  622. this._addArgs(p, n, 2);
  623. }
  624. this.lastControl = {};
  625. return p;
  626. }, _moveToR:function (segment, last) {
  627. var p = ["x" in last ? " t" : " m"];
  628. var n = segment.args;
  629. var l = n.length;
  630. if (l == 2) {
  631. this._addArgs(p, n);
  632. } else {
  633. this._addArgs(p, n, 0, 2);
  634. p.push(" r");
  635. this._addArgs(p, n, 2);
  636. }
  637. this.lastControl = {};
  638. return p;
  639. }, _lineToA:function (segment) {
  640. var p = [" l"];
  641. this._addArgs(p, segment.args);
  642. this.lastControl = {};
  643. return p;
  644. }, _lineToR:function (segment) {
  645. var p = [" r"];
  646. this._addArgs(p, segment.args);
  647. this.lastControl = {};
  648. return p;
  649. }, _hLineToA:function (segment, last) {
  650. var p = [" l"];
  651. var n = segment.args;
  652. var l = n.length;
  653. var y = " " + last.y.toFixed();
  654. for (var i = 0; i < l; ++i) {
  655. p.push(" ");
  656. p.push(n[i].toFixed());
  657. p.push(y);
  658. }
  659. this.lastControl = {};
  660. return p;
  661. }, _hLineToR:function (segment) {
  662. var p = [" r"];
  663. var n = segment.args;
  664. var l = n.length;
  665. for (var i = 0; i < l; ++i) {
  666. p.push(" ");
  667. p.push(n[i].toFixed());
  668. p.push(" 0");
  669. }
  670. this.lastControl = {};
  671. return p;
  672. }, _vLineToA:function (segment, last) {
  673. var p = [" l"];
  674. var n = segment.args;
  675. var l = n.length;
  676. var x = " " + last.x.toFixed();
  677. for (var i = 0; i < l; ++i) {
  678. p.push(x);
  679. p.push(" ");
  680. p.push(n[i].toFixed());
  681. }
  682. this.lastControl = {};
  683. return p;
  684. }, _vLineToR:function (segment) {
  685. var p = [" r"];
  686. var n = segment.args;
  687. var l = n.length;
  688. for (var i = 0; i < l; ++i) {
  689. p.push(" 0 ");
  690. p.push(n[i].toFixed());
  691. }
  692. this.lastControl = {};
  693. return p;
  694. }, _curveToA:function (segment) {
  695. var p = [];
  696. var n = segment.args;
  697. var l = n.length;
  698. for (var i = 0; i < l; i += 6) {
  699. p.push(" c");
  700. this._addArgs(p, n, i, i + 6);
  701. }
  702. this.lastControl = {x:n[l - 4], y:n[l - 3], type:"C"};
  703. return p;
  704. }, _curveToR:function (segment, last) {
  705. var p = [];
  706. var n = segment.args;
  707. var l = n.length;
  708. for (var i = 0; i < l; i += 6) {
  709. p.push(" v");
  710. this._addArgs(p, n, i, i + 6);
  711. this.lastControl = {x:last.x + n[i + 2], y:last.y + n[i + 3]};
  712. last.x += n[i + 4];
  713. last.y += n[i + 5];
  714. }
  715. this.lastControl.type = "C";
  716. return p;
  717. }, _smoothCurveToA:function (segment, last) {
  718. var p = [];
  719. var n = segment.args;
  720. var l = n.length;
  721. for (var i = 0; i < l; i += 4) {
  722. p.push(" c");
  723. if (this.lastControl.type == "C") {
  724. this._addArgs(p, [2 * last.x - this.lastControl.x, 2 * last.y - this.lastControl.y]);
  725. } else {
  726. this._addArgs(p, [last.x, last.y]);
  727. }
  728. this._addArgs(p, n, i, i + 4);
  729. }
  730. this.lastControl = {x:n[l - 4], y:n[l - 3], type:"C"};
  731. return p;
  732. }, _smoothCurveToR:function (segment, last) {
  733. var p = [];
  734. var n = segment.args;
  735. var l = n.length;
  736. for (var i = 0; i < l; i += 4) {
  737. p.push(" v");
  738. if (this.lastControl.type == "C") {
  739. this._addArgs(p, [last.x - this.lastControl.x, last.y - this.lastControl.y]);
  740. } else {
  741. this._addArgs(p, [0, 0]);
  742. }
  743. this._addArgs(p, n, i, i + 4);
  744. this.lastControl = {x:last.x + n[i], y:last.y + n[i + 1]};
  745. last.x += n[i + 2];
  746. last.y += n[i + 3];
  747. }
  748. this.lastControl.type = "C";
  749. return p;
  750. }, _qCurveToA:function (segment) {
  751. var p = [];
  752. var n = segment.args;
  753. var l = n.length;
  754. for (var i = 0; i < l; i += 4) {
  755. p.push(" qb");
  756. this._addArgs(p, n, i, i + 4);
  757. }
  758. this.lastControl = {x:n[l - 4], y:n[l - 3], type:"Q"};
  759. return p;
  760. }, _qCurveToR:function (segment, last) {
  761. var p = [];
  762. var n = segment.args;
  763. var l = n.length;
  764. for (var i = 0; i < l; i += 4) {
  765. p.push(" qb");
  766. this._addArgsAdjusted(p, last, n, i, i + 4);
  767. this.lastControl = {x:last.x + n[i], y:last.y + n[i + 1]};
  768. last.x += n[i + 2];
  769. last.y += n[i + 3];
  770. }
  771. this.lastControl.type = "Q";
  772. return p;
  773. }, _qSmoothCurveToA:function (segment, last) {
  774. var p = [];
  775. var n = segment.args;
  776. var l = n.length;
  777. for (var i = 0; i < l; i += 2) {
  778. p.push(" qb");
  779. if (this.lastControl.type == "Q") {
  780. this._addArgs(p, [this.lastControl.x = 2 * last.x - this.lastControl.x, this.lastControl.y = 2 * last.y - this.lastControl.y]);
  781. } else {
  782. this._addArgs(p, [this.lastControl.x = last.x, this.lastControl.y = last.y]);
  783. }
  784. this._addArgs(p, n, i, i + 2);
  785. }
  786. this.lastControl.type = "Q";
  787. return p;
  788. }, _qSmoothCurveToR:function (segment, last) {
  789. var p = [];
  790. var n = segment.args;
  791. var l = n.length;
  792. for (var i = 0; i < l; i += 2) {
  793. p.push(" qb");
  794. if (this.lastControl.type == "Q") {
  795. this._addArgs(p, [this.lastControl.x = 2 * last.x - this.lastControl.x, this.lastControl.y = 2 * last.y - this.lastControl.y]);
  796. } else {
  797. this._addArgs(p, [this.lastControl.x = last.x, this.lastControl.y = last.y]);
  798. }
  799. this._addArgsAdjusted(p, last, n, i, i + 2);
  800. }
  801. this.lastControl.type = "Q";
  802. return p;
  803. }, _PI4:Math.PI / 4, _curvePI4:dojo.gfx.path._calcArc(Math.PI / 8), _calcArcTo:function (path, last, rx, ry, xRotg, large, cw, x, y) {
  804. var m = dojo.gfx.matrix;
  805. var xRot = -dojo.math.degToRad(xRotg);
  806. var rx2 = rx * rx;
  807. var ry2 = ry * ry;
  808. var pa = m.multiplyPoint(m.rotate(-xRot), {x:(last.x - x) / 2, y:(last.y - y) / 2});
  809. var pax2 = pa.x * pa.x;
  810. var pay2 = pa.y * pa.y;
  811. var c1 = Math.sqrt((rx2 * ry2 - rx2 * pay2 - ry2 * pax2) / (rx2 * pay2 + ry2 * pax2));
  812. var ca = {x:c1 * rx * pa.y / ry, y:-c1 * ry * pa.x / rx};
  813. if (large == cw) {
  814. ca = {x:-ca.x, y:-ca.y};
  815. }
  816. var c = m.multiplyPoint([m.translate((last.x + x) / 2, (last.y + y) / 2), m.rotate(xRot)], ca);
  817. var startAngle = Math.atan2(c.y - last.y, last.x - c.x) - xRot;
  818. var endAngle = Math.atan2(c.y - y, x - c.x) - xRot;
  819. var theta = cw ? startAngle - endAngle : endAngle - startAngle;
  820. if (theta < 0) {
  821. theta += this._2PI;
  822. } else {
  823. if (theta > this._2PI) {
  824. theta = this._2PI;
  825. }
  826. }
  827. var elliptic_transform = m.normalize([m.translate(c.x, c.y), m.rotate(xRot), m.scale(rx, ry)]);
  828. var alpha = this._PI4 / 2;
  829. var curve = this._curvePI4;
  830. var step = cw ? -alpha : alpha;
  831. for (var angle = theta; angle > 0; angle -= this._PI4) {
  832. if (angle < this._PI4) {
  833. alpha = angle / 2;
  834. curve = dojo.gfx.path._calcArc(alpha);
  835. step = cw ? -alpha : alpha;
  836. }
  837. var c1, c2, e;
  838. var M = m.normalize([elliptic_transform, m.rotate(startAngle + step)]);
  839. if (cw) {
  840. c1 = m.multiplyPoint(M, curve.c2);
  841. c2 = m.multiplyPoint(M, curve.c1);
  842. e = m.multiplyPoint(M, curve.s);
  843. } else {
  844. c1 = m.multiplyPoint(M, curve.c1);
  845. c2 = m.multiplyPoint(M, curve.c2);
  846. e = m.multiplyPoint(M, curve.e);
  847. }
  848. path.push(" c");
  849. this._addArgs(path, [c1.x, c1.y, c2.x, c2.y, e.x, e.y]);
  850. startAngle += 2 * step;
  851. }
  852. }, _arcTo:function (segment, last) {
  853. var p = [];
  854. var n = segment.args;
  855. var l = n.length;
  856. var relative = segment.action == "a";
  857. for (var i = 0; i < l; i += 7) {
  858. var x1 = n[i + 5];
  859. var y1 = n[i + 6];
  860. if (relative) {
  861. x1 += last.x;
  862. y1 += last.y;
  863. }
  864. this._calcArcTo(p, last, n[i], n[i + 1], n[i + 2], n[i + 3] ? 1 : 0, n[i + 4] ? 1 : 0, x1, y1);
  865. last = {x:x1, y:y1};
  866. }
  867. this.lastControl = {};
  868. return p;
  869. }, _closePath:function () {
  870. this.lastControl = {};
  871. return ["x"];
  872. }});
  873. dojo.gfx.Path.nodeType = "shape";
  874. dojo.gfx._creators = {createPath:function (path) {
  875. return this.createObject(dojo.gfx.Path, path, true);
  876. }, createRect:function (rect) {
  877. return this.createObject(dojo.gfx.Rect, rect);
  878. }, createCircle:function (circle) {
  879. return this.createObject(dojo.gfx.Circle, circle);
  880. }, createEllipse:function (ellipse) {
  881. return this.createObject(dojo.gfx.Ellipse, ellipse);
  882. }, createLine:function (line) {
  883. return this.createObject(dojo.gfx.Line, line, true);
  884. }, createPolyline:function (points) {
  885. return this.createObject(dojo.gfx.Polyline, points, true);
  886. }, createImage:function (image) {
  887. if (!this.rawNode) {
  888. return null;
  889. }
  890. var shape = new dojo.gfx.Image();
  891. var node = document.createElement("div");
  892. node.style.position = "relative";
  893. node.style.width = this.rawNode.style.width;
  894. node.style.height = this.rawNode.style.height;
  895. node.style.filter = "progid:DXImageTransform.Microsoft.Matrix(M11=1, M12=0, M21=0, M22=1, Dx=0, Dy=0)";
  896. var img = document.createElement("img");
  897. node.appendChild(img);
  898. shape.setRawNode(node);
  899. this.rawNode.appendChild(node);
  900. shape.setShape(image);
  901. this.add(shape);
  902. return shape;
  903. }, createGroup:function () {
  904. return this.createObject(dojo.gfx.Group, null, true);
  905. }, createObject:function (shapeType, rawShape, overrideSize) {
  906. if (!this.rawNode) {
  907. return null;
  908. }
  909. var shape = new shapeType();
  910. var node = document.createElement("v:" + shapeType.nodeType);
  911. shape.setRawNode(node);
  912. this.rawNode.appendChild(node);
  913. if (overrideSize) {
  914. this._overrideSize(node);
  915. }
  916. shape.setShape(rawShape);
  917. this.add(shape);
  918. return shape;
  919. }, _overrideSize:function (node) {
  920. node.style.width = this.rawNode.style.width;
  921. node.style.height = this.rawNode.style.height;
  922. node.coordsize = parseFloat(node.style.width) + " " + parseFloat(node.style.height);
  923. }};
  924. dojo.lang.extend(dojo.gfx.Group, dojo.gfx._creators);
  925. dojo.lang.extend(dojo.gfx.Surface, dojo.gfx._creators);
  926. delete dojo.gfx._creators;
  927. dojo.gfx.attachNode = function (node) {
  928. if (!node) {
  929. return null;
  930. }
  931. var s = null;
  932. switch (node.tagName.toLowerCase()) {
  933.   case dojo.gfx.Rect.nodeType:
  934. s = new dojo.gfx.Rect();
  935. break;
  936.   case dojo.gfx.Ellipse.nodeType:
  937. s = (node.style.width == node.style.height) ? new dojo.gfx.Circle() : new dojo.gfx.Ellipse();
  938. break;
  939.   case dojo.gfx.Path.nodeType:
  940. switch (node.getAttribute("dojoGfxType")) {
  941.   case "line":
  942. s = new dojo.gfx.Line();
  943. break;
  944.   case "polyline":
  945. s = new dojo.gfx.Polyline();
  946. break;
  947.   case "path":
  948. s = new dojo.gfx.Path();
  949. break;
  950. }
  951. break;
  952.   case dojo.gfx.Image.nodeType:
  953. s = new dojo.gfx.Image();
  954. break;
  955.   default:
  956. dojo.debug("FATAL ERROR! tagName = " + node.tagName);
  957. }
  958. s.attach(node);
  959. return s;
  960. };
  961. dojo.lang.extend(dojo.gfx.Surface, {setDimensions:function (width, height) {
  962. if (!this.rawNode) {
  963. return this;
  964. }
  965. this.rawNode.style.width = width;
  966. this.rawNode.style.height = height;
  967. this.rawNode.coordsize = width + " " + height;
  968. return this;
  969. }, getDimensions:function () {
  970. return this.rawNode ? {width:this.rawNode.style.width, height:this.rawNode.style.height} : null;
  971. }, add:function (shape) {
  972. var oldParent = shape.getParent();
  973. if (this != oldParent) {
  974. this.rawNode.appendChild(shape.rawNode);
  975. if (oldParent) {
  976. oldParent.remove(shape, true);
  977. }
  978. shape._setParent(this, null);
  979. }
  980. return this;
  981. }, remove:function (shape, silently) {
  982. if (this == shape.getParent()) {
  983. if (this.rawNode == shape.rawNode.parentNode) {
  984. this.rawNode.removeChild(shape.rawNode);
  985. }
  986. shape._setParent(null, null);
  987. }
  988. return this;
  989. }});
  990. dojo.gfx.createSurface = function (parentNode, width, height) {
  991. var s = new dojo.gfx.Surface();
  992. s.rawNode = document.createElement("v:group");
  993. s.rawNode.style.width = width ? width : "100%";
  994. s.rawNode.style.height = height ? height : "100%";
  995. s.rawNode.coordsize = (width && height) ? (parseFloat(width) + " " + parseFloat(height)) : "100% 100%";
  996. s.rawNode.coordorigin = "0 0";
  997. dojo.byId(parentNode).appendChild(s.rawNode);
  998. return s;
  999. };
  1000. dojo.gfx.attachSurface = function (node) {
  1001. var s = new dojo.gfx.Surface();
  1002. s.rawNode = node;
  1003. return s;
  1004. };