jquery.ui-all-1.5b3.js
上传用户:stephen_wu
上传日期:2008-07-05
资源大小:1757k
文件大小:262k
源码类别:

网络

开发平台:

Unix_Linux

  1. /*
  2.  * jQuery UI @VERSION
  3.  *
  4.  * Copyright (c) 2008 Paul Bakaus (ui.jquery.com)
  5.  * Dual licensed under the MIT (MIT-LICENSE.txt)
  6.  * and GPL (GPL-LICENSE.txt) licenses.
  7.  *
  8.  * http://docs.jquery.com/UI
  9.  *
  10.  * $Date: 2008-05-04 16:52:15 +0200 (So, 04 Mai 2008) $
  11.  * $Rev: 5419 $
  12.  */
  13. ;(function($) {
  14. $.ui = $.ui || {};
  15. // Add methods that are vital for all mouse interaction stuff
  16. // (plugin registering)
  17. $.extend($.ui, {
  18. plugin: {
  19. add: function(module, option, set) {
  20. var proto = $.ui[module].prototype;
  21. for(var i in set) {
  22. proto.plugins[i] = proto.plugins[i] || [];
  23. proto.plugins[i].push([option, set[i]]);
  24. }
  25. },
  26. call: function(instance, name, args) {
  27. var set = instance.plugins[name];
  28. if(!set) { return; }
  29. for (var i = 0; i < set.length; i++) {
  30. if (instance.options[set[i][0]]) {
  31. set[i][1].apply(instance.element, args);
  32. }
  33. }
  34. }
  35. },
  36. cssCache: {},
  37. css: function(name) {
  38. if ($.ui.cssCache[name]) { return $.ui.cssCache[name]; }
  39. var tmp = $('<div class="ui-resizable-gen">').addClass(name).css({position:'absolute', top:'-5000px', left:'-5000px', display:'block'}).appendTo('body');
  40. //if (!$.browser.safari)
  41. //tmp.appendTo('body'); 
  42. //Opera and Safari set width and height to 0px instead of auto
  43. //Safari returns rgba(0,0,0,0) when bgcolor is not set
  44. $.ui.cssCache[name] = !!(
  45. (!(/auto|default/).test(tmp.css('cursor')) || (/^[1-9]/).test(tmp.css('height')) || (/^[1-9]/).test(tmp.css('width')) || 
  46. !(/none/).test(tmp.css('backgroundImage')) || !(/transparent|rgba(0, 0, 0, 0)/).test(tmp.css('backgroundColor')))
  47. );
  48. try { $('body').get(0).removeChild(tmp.get(0)); } catch(e){}
  49. return $.ui.cssCache[name];
  50. },
  51. disableSelection: function(e) {
  52. e.unselectable = "on";
  53. e.onselectstart = function() { return false; };
  54. if (e.style) { e.style.MozUserSelect = "none"; }
  55. },
  56. enableSelection: function(e) {
  57. e.unselectable = "off";
  58. e.onselectstart = function() { return true; };
  59. if (e.style) { e.style.MozUserSelect = ""; }
  60. },
  61. hasScroll: function(e, a) {
  62. var scroll = /top/.test(a||"top") ? 'scrollTop' : 'scrollLeft', has = false;
  63. if (e[scroll] > 0) return true; e[scroll] = 1;
  64. has = e[scroll] > 0 ? true : false; e[scroll] = 0;
  65. return has;
  66. }
  67. });
  68. /** jQuery core modifications and additions **/
  69. var _remove = $.fn.remove;
  70. $.fn.remove = function() {
  71. $("*", this).add(this).trigger("remove");
  72. return _remove.apply(this, arguments );
  73. };
  74. // $.widget is a factory to create jQuery plugins
  75. // taking some boilerplate code out of the plugin code
  76. // created by Scott González and Jörn Zaefferer
  77. function getter(namespace, plugin, method) {
  78. var methods = $[namespace][plugin].getter || [];
  79. methods = (typeof methods == "string" ? methods.split(/,?s+/) : methods);
  80. return ($.inArray(method, methods) != -1);
  81. };
  82. var widgetPrototype = {
  83. init: function() {},
  84. destroy: function() {},
  85. getData: function(e, key) {
  86. return this.options[key];
  87. },
  88. setData: function(e, key, value) {
  89. this.options[key] = value;
  90. },
  91. enable: function() {
  92. this.setData(null, 'disabled', false);
  93. },
  94. disable: function() {
  95. this.setData(null, 'disabled', true);
  96. }
  97. };
  98. $.widget = function(name, prototype) {
  99. var namespace = name.split(".")[0];
  100. name = name.split(".")[1];
  101. // create plugin method
  102. $.fn[name] = function(options, data) {
  103. var isMethodCall = (typeof options == 'string'),
  104. args = arguments;
  105. if (isMethodCall && getter(namespace, name, options)) {
  106. var instance = $.data(this[0], name);
  107. return (instance ? instance[options](data) : undefined); 
  108. }
  109. return this.each(function() {
  110. var instance = $.data(this, name);
  111. if (!instance) {
  112. $.data(this, name, new $[namespace][name](this, options));
  113. } else if (isMethodCall) {
  114. instance[options].apply(instance, $.makeArray(args).slice(1));
  115. }
  116. });
  117. };
  118. // create widget constructor
  119. $[namespace][name] = function(element, options) {
  120. var self = this;
  121. this.options = $.extend({}, $[namespace][name].defaults, options);
  122. this.element = $(element)
  123. .bind('setData.' + name, function(e, key, value) {
  124. return self.setData(e, key, value);
  125. })
  126. .bind('getData.' + name, function(e, key) {
  127. return self.getData(e, key);
  128. })
  129. .bind('remove', function() {
  130. return self.destroy();
  131. });
  132. this.init();
  133. };
  134. // add widget prototype
  135. $[namespace][name].prototype = $.extend({}, widgetPrototype, prototype);
  136. };
  137. /** Mouse Interaction Plugin **/
  138. $.widget("ui.mouse", {
  139. init: function() {
  140. var self = this;
  141. this.element
  142. .bind('mousedown.mouse', function() { return self.click.apply(self, arguments); })
  143. .bind('mouseup.mouse', function() { (self.timer && clearInterval(self.timer)); })
  144. .bind('click.mouse', function() { if(self.initialized) { self.initialized = false; return false; } });
  145. //Prevent text selection in IE
  146. if ($.browser.msie) {
  147. this.unselectable = this.element.attr('unselectable');
  148. this.element.attr('unselectable', 'on');
  149. }
  150. },
  151. destroy: function() {
  152. this.element.unbind('.mouse').removeData("mouse");
  153. ($.browser.msie && this.element.attr('unselectable', this.unselectable));
  154. },
  155. trigger: function() { return this.click.apply(this, arguments); },
  156. click: function(e) {
  157. if(    e.which != 1 //only left click starts dragging
  158. || $.inArray(e.target.nodeName.toLowerCase(), this.options.dragPrevention || []) != -1 // Prevent execution on defined elements
  159. || (this.options.condition && !this.options.condition.apply(this.options.executor || this, [e, this.element])) //Prevent execution on condition
  160. ) { return true; }
  161. var self = this;
  162. this.initialized = false;
  163. var initialize = function() {
  164. self._MP = { left: e.pageX, top: e.pageY }; // Store the click mouse position
  165. $(document).bind('mouseup.mouse', function() { return self.stop.apply(self, arguments); });
  166. $(document).bind('mousemove.mouse', function() { return self.drag.apply(self, arguments); });
  167. if(!self.initalized && Math.abs(self._MP.left-e.pageX) >= self.options.distance || Math.abs(self._MP.top-e.pageY) >= self.options.distance) {
  168. (self.options.start && self.options.start.call(self.options.executor || self, e, self.element));
  169. (self.options.drag && self.options.drag.call(self.options.executor || self, e, this.element)); //This is actually not correct, but expected
  170. self.initialized = true;
  171. }
  172. };
  173. if(this.options.delay) {
  174. if(this.timer) { clearInterval(this.timer); }
  175. this.timer = setTimeout(initialize, this.options.delay);
  176. } else {
  177. initialize();
  178. }
  179. return false;
  180. },
  181. stop: function(e) {
  182. if(!this.initialized) {
  183. return $(document).unbind('mouseup.mouse').unbind('mousemove.mouse');
  184. }
  185. (this.options.stop && this.options.stop.call(this.options.executor || this, e, this.element));
  186. $(document).unbind('mouseup.mouse').unbind('mousemove.mouse');
  187. return false;
  188. },
  189. drag: function(e) {
  190. var o = this.options;
  191. if ($.browser.msie && !e.button) {
  192. return this.stop.call(this, e); // IE mouseup check
  193. }
  194. if(!this.initialized && (Math.abs(this._MP.left-e.pageX) >= o.distance || Math.abs(this._MP.top-e.pageY) >= o.distance)) {
  195. (o.start && o.start.call(o.executor || this, e, this.element));
  196. this.initialized = true;
  197. } else {
  198. if(!this.initialized) { return false; }
  199. }
  200. (o.drag && o.drag.call(this.options.executor || this, e, this.element));
  201. return false;
  202. }
  203. });
  204. })(jQuery);
  205. /*
  206.  * jQuery UI Draggable
  207.  *
  208.  * Copyright (c) 2008 Paul Bakaus
  209.  * Dual licensed under the MIT (MIT-LICENSE.txt)
  210.  * and GPL (GPL-LICENSE.txt) licenses.
  211.  * 
  212.  * http://docs.jquery.com/UI/Draggables
  213.  *
  214.  * Depends:
  215.  * ui.core.js
  216.  *
  217.  * Revision: $Id: ui.draggable.js 5433 2008-05-04 20:07:17Z joern.zaefferer $
  218.  */
  219. ;(function($) {
  220. $.widget("ui.draggable", {
  221. init: function() {
  222. //Initialize needed constants
  223. var o = this.options;
  224. //Initialize mouse events for interaction
  225. this.element.mouse({
  226. executor: this,
  227. delay: o.delay,
  228. distance: o.distance,
  229. dragPrevention: o.cancel,
  230. start: this.start,
  231. stop: this.stop,
  232. drag: this.drag,
  233. condition: function(e) {
  234. var handle = !this.options.handle || !$(this.options.handle, this.element).length ? true : false;
  235. if(!handle) $(this.options.handle, this.element).each(function() { if(this == e.target) handle = true; });
  236. return !(e.target.className.indexOf("ui-resizable-handle") != -1 || this.options.disabled) && handle;
  237. }
  238. });
  239. //Position the node
  240. if(o.helper == 'original' && !(/(relative|absolute|fixed)/).test(this.element.css('position')))
  241. this.element.css('position', 'relative');
  242. },
  243. start: function(e) {
  244. var o = this.options;
  245. if($.ui.ddmanager) $.ui.ddmanager.current = this;
  246. //Create and append the visible helper
  247. this.helper = $.isFunction(o.helper) ? $(o.helper.apply(this.element[0], [e])) : (o.helper == 'clone' ? this.element.clone() : this.element);
  248. if(!this.helper.parents('body').length) this.helper.appendTo((o.appendTo == 'parent' ? this.element[0].parentNode : o.appendTo));
  249. if(!this.helper.css("position") || this.helper.css("position") == "static") this.helper.css("position", "absolute");
  250. /*
  251.  * - Position generation -
  252.  * This block generates everything position related - it's the core of draggables.
  253.  */
  254. this.margins = { //Cache the margins
  255. left: (parseInt(this.element.css("marginLeft"),10) || 0),
  256. top: (parseInt(this.element.css("marginTop"),10) || 0)
  257. };
  258. this.cssPosition = this.helper.css("position"); //Store the helper's css position
  259. this.offset = this.element.offset(); //The element's absolute position on the page
  260. this.offset = { //Substract the margins from the element's absolute offset
  261. top: this.offset.top - this.margins.top,
  262. left: this.offset.left - this.margins.left
  263. };
  264. this.offset.click = { //Where the click happened, relative to the element
  265. left: e.pageX - this.offset.left,
  266. top: e.pageY - this.offset.top
  267. };
  268. this.offsetParent = this.helper.offsetParent(); var po = this.offsetParent.offset(); //Get the offsetParent and cache its position
  269. this.offset.parent = { //Store its position plus border
  270. top: po.top + (parseInt(this.offsetParent.css("borderTopWidth"),10) || 0),
  271. left: po.left + (parseInt(this.offsetParent.css("borderLeftWidth"),10) || 0)
  272. };
  273. var p = this.element.position(); //This is a relative to absolute position minus the actual position calculation - only used for relative positioned helpers
  274. this.offset.relative = this.cssPosition == "relative" ? {
  275. top: p.top - (parseInt(this.helper.css("top"),10) || 0) + this.offsetParent[0].scrollTop,
  276. left: p.left - (parseInt(this.helper.css("left"),10) || 0) + this.offsetParent[0].scrollLeft
  277. } : { top: 0, left: 0 };
  278. this.originalPosition = this.generatePosition(e); //Generate the original position
  279. this.helperProportions = { width: this.helper.outerWidth(), height: this.helper.outerHeight() };//Cache the helper size
  280. if(o.cursorAt) {
  281. if(o.cursorAt.left != undefined) this.offset.click.left = o.cursorAt.left;
  282. if(o.cursorAt.right != undefined) this.offset.click.left = this.helperProportions.width - o.cursorAt.right;
  283. if(o.cursorAt.top != undefined) this.offset.click.top = o.cursorAt.top;
  284. if(o.cursorAt.bottom != undefined) this.offset.click.top = this.helperProportions.height - o.cursorAt.bottom;
  285. }
  286. /*
  287.  * - Position constraining -
  288.  * Here we prepare position constraining like grid and containment.
  289.  */
  290. if(o.containment) {
  291. if(o.containment == 'parent') o.containment = this.helper[0].parentNode;
  292. if(o.containment == 'document') this.containment = [0,0,$(document).width(), ($(document).height() || document.body.parentNode.scrollHeight)];
  293. if(!(/^(document|window|parent)$/).test(o.containment)) {
  294. var ce = $(o.containment)[0];
  295. var co = $(o.containment).offset();
  296. this.containment = [
  297. co.left + (parseInt($(ce).css("borderLeftWidth"),10) || 0) - this.offset.relative.left - this.offset.parent.left,
  298. co.top + (parseInt($(ce).css("borderTopWidth"),10) || 0) - this.offset.relative.top - this.offset.parent.top,
  299. co.left+Math.max(ce.scrollWidth,ce.offsetWidth) - (parseInt($(ce).css("borderLeftWidth"),10) || 0) - this.offset.relative.left - this.offset.parent.left - this.helperProportions.width - this.margins.left - (parseInt(this.element.css("marginRight"),10) || 0),
  300. co.top+Math.max(ce.scrollHeight,ce.offsetHeight) - (parseInt($(ce).css("borderTopWidth"),10) || 0) - this.offset.relative.top - this.offset.parent.top - this.helperProportions.height - this.margins.top - (parseInt(this.element.css("marginBottom"),10) || 0)
  301. ];
  302. }
  303. }
  304. //Call plugins and callbacks
  305. this.propagate("start", e);
  306. this.helperProportions = { width: this.helper.outerWidth(), height: this.helper.outerHeight() };//Recache the helper size
  307. if ($.ui.ddmanager && !o.dropBehaviour) $.ui.ddmanager.prepareOffsets(this, e);
  308. return false;
  309. },
  310. convertPositionTo: function(d, pos) {
  311. if(!pos) pos = this.position;
  312. var mod = d == "absolute" ? 1 : -1;
  313. return {
  314. top: (
  315. pos.top // the calculated relative position
  316. + this.offset.relative.top * mod // Only for relative positioned nodes: Relative offset from element to offset parent
  317. + this.offset.parent.top * mod // The offsetParent's offset without borders (offset + border)
  318. - (this.cssPosition == "fixed" ? 0 : this.offsetParent[0].scrollTop) * mod // The offsetParent's scroll position, not if the element is fixed
  319. + this.margins.top * mod //Add the margin (you don't want the margin counting in intersection methods)
  320. ),
  321. left: (
  322. pos.left // the calculated relative position
  323. + this.offset.relative.left * mod // Only for relative positioned nodes: Relative offset from element to offset parent
  324. + this.offset.parent.left * mod // The offsetParent's offset without borders (offset + border)
  325. - (this.cssPosition == "fixed" ? 0 : this.offsetParent[0].scrollLeft) * mod // The offsetParent's scroll position, not if the element is fixed
  326. + this.margins.left * mod //Add the margin (you don't want the margin counting in intersection methods)
  327. )
  328. };
  329. },
  330. generatePosition: function(e) {
  331. var o = this.options;
  332. var position = {
  333. top: (
  334. e.pageY // The absolute mouse position
  335. - this.offset.click.top // Click offset (relative to the element)
  336. - this.offset.relative.top // Only for relative positioned nodes: Relative offset from element to offset parent
  337. - this.offset.parent.top // The offsetParent's offset without borders (offset + border)
  338. + (this.cssPosition == "fixed" ? 0 : this.offsetParent[0].scrollTop) // The offsetParent's scroll position, not if the element is fixed
  339. ),
  340. left: (
  341. e.pageX // The absolute mouse position
  342. - this.offset.click.left // Click offset (relative to the element)
  343. - this.offset.relative.left // Only for relative positioned nodes: Relative offset from element to offset parent
  344. - this.offset.parent.left // The offsetParent's offset without borders (offset + border)
  345. + (this.cssPosition == "fixed" ? 0 : this.offsetParent[0].scrollLeft) // The offsetParent's scroll position, not if the element is fixed
  346. )
  347. };
  348. if(!this.originalPosition) return position; //If we are not dragging yet, we won't check for options
  349. /*
  350.  * - Position constraining -
  351.  * Constrain the position to a mix of grid, containment.
  352.  */
  353. if(this.containment) {
  354. if(position.left < this.containment[0]) position.left = this.containment[0];
  355. if(position.top < this.containment[1]) position.top = this.containment[1];
  356. if(position.left > this.containment[2]) position.left = this.containment[2];
  357. if(position.top > this.containment[3]) position.top = this.containment[3];
  358. }
  359. if(o.grid) {
  360. var top = this.originalPosition.top + Math.round((position.top - this.originalPosition.top) / o.grid[1]) * o.grid[1];
  361. position.top = this.containment ? (!(top < this.containment[1] || top > this.containment[3]) ? top : (!(top < this.containment[1]) ? top - o.grid[1] : top + o.grid[1])) : top;
  362. var left = this.originalPosition.left + Math.round((position.left - this.originalPosition.left) / o.grid[0]) * o.grid[0];
  363. position.left = this.containment ? (!(left < this.containment[0] || left > this.containment[2]) ? left : (!(left < this.containment[0]) ? left - o.grid[0] : left + o.grid[0])) : left;
  364. }
  365. return position;
  366. },
  367. drag: function(e) {
  368. //Compute the helpers position
  369. this.position = this.generatePosition(e);
  370. this.positionAbs = this.convertPositionTo("absolute");
  371. //Call plugins and callbacks and use the resulting position if something is returned
  372. this.position = this.propagate("drag", e) || this.position;
  373. if(!this.options.axis || this.options.axis == "x") this.helper[0].style.left = this.position.left+'px';
  374. if(!this.options.axis || this.options.axis == "y") this.helper[0].style.top = this.position.top+'px';
  375. if($.ui.ddmanager) $.ui.ddmanager.drag(this, e);
  376. return false;
  377. },
  378. stop: function(e) {
  379. //If we are using droppables, inform the manager about the drop
  380. if ($.ui.ddmanager && !this.options.dropBehaviour)
  381. $.ui.ddmanager.drop(this, e);
  382. if(this.options.revert) {
  383. var self = this;
  384. $(this.helper).animate(this.originalPosition, parseInt(this.options.revert, 10) || 500, function() {
  385. self.propagate("stop", e);
  386. self.clear();
  387. });
  388. } else {
  389. this.propagate("stop", e);
  390. this.clear();
  391. }
  392. return false;
  393. },
  394. clear: function() {
  395. if(this.options.helper != 'original' && !this.cancelHelperRemoval) this.helper.remove();
  396. if($.ui.ddmanager) $.ui.ddmanager.current = null;
  397. this.helper = null;
  398. this.cancelHelperRemoval = false;
  399. },
  400. // From now on bulk stuff - mainly helpers
  401. plugins: {},
  402. ui: function(e) {
  403. return {
  404. helper: this.helper,
  405. position: this.position,
  406. absolutePosition: this.positionAbs,
  407. options: this.options
  408. };
  409. },
  410. propagate: function(n,e) {
  411. $.ui.plugin.call(this, n, [e, this.ui()]);
  412. return this.element.triggerHandler(n == "drag" ? n : "drag"+n, [e, this.ui()], this.options[n]);
  413. },
  414. destroy: function() {
  415. if(!this.element.data('draggable')) return;
  416. this.element.removeData("draggable").unbind(".draggable").mouse("destroy");
  417. },
  418. enable: function() {
  419. this.options.disabled = false;
  420. },
  421. disable: function() {
  422. this.options.disabled = true;
  423. }
  424. });
  425. $.ui.draggable.defaults = {
  426. helper: "original",
  427. appendTo: "parent",
  428. cancel: ['input','textarea','button','select','option'],
  429. distance: 1,
  430. delay: 0
  431. };
  432. $.ui.plugin.add("draggable", "cursor", {
  433. start: function(e, ui) {
  434. var t = $('body');
  435. if (t.css("cursor")) ui.options._cursor = t.css("cursor");
  436. t.css("cursor", ui.options.cursor);
  437. },
  438. stop: function(e, ui) {
  439. if (ui.options._cursor) $('body').css("cursor", ui.options._cursor);
  440. }
  441. });
  442. $.ui.plugin.add("draggable", "zIndex", {
  443. start: function(e, ui) {
  444. var t = $(ui.helper);
  445. if(t.css("zIndex")) ui.options._zIndex = t.css("zIndex");
  446. t.css('zIndex', ui.options.zIndex);
  447. },
  448. stop: function(e, ui) {
  449. if(ui.options._zIndex) $(ui.helper).css('zIndex', ui.options._zIndex);
  450. }
  451. });
  452. $.ui.plugin.add("draggable", "opacity", {
  453. start: function(e, ui) {
  454. var t = $(ui.helper);
  455. if(t.css("opacity")) ui.options._opacity = t.css("opacity");
  456. t.css('opacity', ui.options.opacity);
  457. },
  458. stop: function(e, ui) {
  459. if(ui.options._opacity) $(ui.helper).css('opacity', ui.options._opacity);
  460. }
  461. });
  462. $.ui.plugin.add("draggable", "iframeFix", {
  463. start: function(e, ui) {
  464. $(ui.options.iframeFix === true ? "iframe" : ui.options.iframeFix).each(function() {
  465. $('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>')
  466. .css({
  467. width: this.offsetWidth+"px", height: this.offsetHeight+"px",
  468. position: "absolute", opacity: "0.001", zIndex: 1000
  469. })
  470. .css($(this).offset())
  471. .appendTo("body");
  472. });
  473. },
  474. stop: function(e, ui) {
  475. $("div.DragDropIframeFix").each(function() { this.parentNode.removeChild(this); }); //Remove frame helpers
  476. }
  477. });
  478. $.ui.plugin.add("draggable", "scroll", {
  479. start: function(e, ui) {
  480. var o = ui.options;
  481. var i = $(this).data("draggable");
  482. o.scrollSensitivity = o.scrollSensitivity || 20;
  483. o.scrollSpeed = o.scrollSpeed || 20;
  484. i.overflowY = function(el) {
  485. do { if(/auto|scroll/.test(el.css('overflow')) || (/auto|scroll/).test(el.css('overflow-y'))) return el; el = el.parent(); } while (el[0].parentNode);
  486. return $(document);
  487. }(this);
  488. i.overflowX = function(el) {
  489. do { if(/auto|scroll/.test(el.css('overflow')) || (/auto|scroll/).test(el.css('overflow-x'))) return el; el = el.parent(); } while (el[0].parentNode);
  490. return $(document);
  491. }(this);
  492. if(i.overflowY[0] != document && i.overflowY[0].tagName != 'HTML') i.overflowYOffset = i.overflowY.offset();
  493. if(i.overflowX[0] != document && i.overflowX[0].tagName != 'HTML') i.overflowXOffset = i.overflowX.offset();
  494. },
  495. drag: function(e, ui) {
  496. var o = ui.options;
  497. var i = $(this).data("draggable");
  498. if(i.overflowY[0] != document && i.overflowY[0].tagName != 'HTML') {
  499. if((i.overflowYOffset.top + i.overflowY[0].offsetHeight) - e.pageY < o.scrollSensitivity)
  500. i.overflowY[0].scrollTop = i.overflowY[0].scrollTop + o.scrollSpeed;
  501. if(e.pageY - i.overflowYOffset.top < o.scrollSensitivity)
  502. i.overflowY[0].scrollTop = i.overflowY[0].scrollTop - o.scrollSpeed;
  503. } else {
  504. if(e.pageY - $(document).scrollTop() < o.scrollSensitivity)
  505. $(document).scrollTop($(document).scrollTop() - o.scrollSpeed);
  506. if($(window).height() - (e.pageY - $(document).scrollTop()) < o.scrollSensitivity)
  507. $(document).scrollTop($(document).scrollTop() + o.scrollSpeed);
  508. }
  509. if(i.overflowX[0] != document && i.overflowX[0].tagName != 'HTML') {
  510. if((i.overflowXOffset.left + i.overflowX[0].offsetWidth) - e.pageX < o.scrollSensitivity)
  511. i.overflowX[0].scrollLeft = i.overflowX[0].scrollLeft + o.scrollSpeed;
  512. if(e.pageX - i.overflowXOffset.left < o.scrollSensitivity)
  513. i.overflowX[0].scrollLeft = i.overflowX[0].scrollLeft - o.scrollSpeed;
  514. } else {
  515. if(e.pageX - $(document).scrollLeft() < o.scrollSensitivity)
  516. $(document).scrollLeft($(document).scrollLeft() - o.scrollSpeed);
  517. if($(window).width() - (e.pageX - $(document).scrollLeft()) < o.scrollSensitivity)
  518. $(document).scrollLeft($(document).scrollLeft() + o.scrollSpeed);
  519. }
  520. }
  521. });
  522. $.ui.plugin.add("draggable", "snap", {
  523. start: function(e, ui) {
  524. var inst = $(this).data("draggable");
  525. inst.snapElements = [];
  526. $(ui.options.snap === true ? '.ui-draggable' : ui.options.snap).each(function() {
  527. var $t = $(this); var $o = $t.offset();
  528. if(this != inst.element[0]) inst.snapElements.push({
  529. item: this,
  530. width: $t.outerWidth(), height: $t.outerHeight(),
  531. top: $o.top, left: $o.left
  532. });
  533. });
  534. },
  535. drag: function(e, ui) {
  536. var inst = $(this).data("draggable");
  537. var d = ui.options.snapTolerance || 20;
  538. var x1 = ui.absolutePosition.left, x2 = x1 + inst.helperProportions.width,
  539. y1 = ui.absolutePosition.top, y2 = y1 + inst.helperProportions.height;
  540. for (var i = inst.snapElements.length - 1; i >= 0; i--){
  541. var l = inst.snapElements[i].left, r = l + inst.snapElements[i].width, 
  542. t = inst.snapElements[i].top, b = t + inst.snapElements[i].height;
  543. //Yes, I know, this is insane ;)
  544. if(!((l-d < x1 && x1 < r+d && t-d < y1 && y1 < b+d) || (l-d < x1 && x1 < r+d && t-d < y2 && y2 < b+d) || (l-d < x2 && x2 < r+d && t-d < y1 && y1 < b+d) || (l-d < x2 && x2 < r+d && t-d < y2 && y2 < b+d))) continue;
  545. if(ui.options.snapMode != 'inner') {
  546. var ts = Math.abs(t - y2) <= 20;
  547. var bs = Math.abs(b - y1) <= 20;
  548. var ls = Math.abs(l - x2) <= 20;
  549. var rs = Math.abs(r - x1) <= 20;
  550. if(ts) ui.position.top = inst.convertPositionTo("relative", { top: t - inst.helperProportions.height, left: 0 }).top;
  551. if(bs) ui.position.top = inst.convertPositionTo("relative", { top: b, left: 0 }).top;
  552. if(ls) ui.position.left = inst.convertPositionTo("relative", { top: 0, left: l - inst.helperProportions.width }).left;
  553. if(rs) ui.position.left = inst.convertPositionTo("relative", { top: 0, left: r }).left;
  554. }
  555. if(ui.options.snapMode != 'outer') {
  556. var ts = Math.abs(t - y1) <= 20;
  557. var bs = Math.abs(b - y2) <= 20;
  558. var ls = Math.abs(l - x1) <= 20;
  559. var rs = Math.abs(r - x2) <= 20;
  560. if(ts) ui.position.top = inst.convertPositionTo("relative", { top: t, left: 0 }).top;
  561. if(bs) ui.position.top = inst.convertPositionTo("relative", { top: b - inst.helperProportions.height, left: 0 }).top;
  562. if(ls) ui.position.left = inst.convertPositionTo("relative", { top: 0, left: l }).left;
  563. if(rs) ui.position.left = inst.convertPositionTo("relative", { top: 0, left: r - inst.helperProportions.width }).left;
  564. }
  565. };
  566. }
  567. });
  568. $.ui.plugin.add("draggable", "connectToSortable", {
  569. start: function(e,ui) {
  570. var inst = $(this).data("draggable");
  571. inst.sortable = $.data($(ui.options.connectToSortable)[0], 'sortable');
  572. inst.sortableOffset = inst.sortable.element.offset();
  573. inst.sortableOuterWidth = inst.sortable.element.outerWidth();
  574. inst.sortableOuterHeight = inst.sortable.element.outerHeight();
  575. if(inst.sortable.options.revert) inst.sortable.shouldRevert = true;
  576. },
  577. stop: function(e,ui) {
  578. //If we are still over the sortable, we fake the stop event of the sortable, but also remove helper
  579. var instDraggable = $(this).data("draggable");
  580. var inst = instDraggable.sortable;
  581. if(inst.isOver) {
  582. inst.isOver = 0;
  583. instDraggable.cancelHelperRemoval = true; //Don't remove the helper in the draggable instance
  584. inst.cancelHelperRemoval = false; //Remove it in the sortable instance (so sortable plugins like revert still work)
  585. if(inst.shouldRevert) inst.options.revert = true; //revert here
  586. inst.stop(e);
  587. inst.options.helper = "original";
  588. }
  589. },
  590. drag: function(e,ui) {
  591. //This is handy: We reuse the intersectsWith method for checking if the current draggable helper
  592. //intersects with the sortable container
  593. var instDraggable = $(this).data("draggable");
  594. var inst = instDraggable.sortable;
  595. instDraggable.position.absolute = ui.absolutePosition; //Sorry, this is an ugly API fix
  596. if(inst.intersectsWith.call(instDraggable, {
  597. left: instDraggable.sortableOffset.left, top: instDraggable.sortableOffset.top,
  598. width: instDraggable.sortableOuterWidth, height: instDraggable.sortableOuterHeight
  599. })) {
  600. //If it intersects, we use a little isOver variable and set it once, so our move-in stuff gets fired only once
  601. if(!inst.isOver) {
  602. inst.isOver = 1;
  603. //Cache the width/height of the new helper
  604. var height = inst.options.placeholderElement ? $(inst.options.placeholderElement, $(inst.options.items, inst.element)).innerHeight() : $(inst.options.items, inst.element).innerHeight();
  605. var width = inst.options.placeholderElement ? $(inst.options.placeholderElement, $(inst.options.items, inst.element)).innerWidth() : $(inst.options.items, inst.element).innerWidth();
  606. //Now we fake the start of dragging for the sortable instance,
  607. //by cloning the list group item, appending it to the sortable and using it as inst.currentItem
  608. //We can then fire the start event of the sortable with our passed browser event, and our own helper (so it doesn't create a new one)
  609. inst.currentItem = $(this).clone().appendTo(inst.element);
  610. inst.options.helper = function() { return ui.helper[0]; };
  611. inst.start(e);
  612. //Because the browser event is way off the new appended portlet, we modify a couple of variables to reflect the changes
  613. inst.clickOffset.top = instDraggable.offset.click.top;
  614. inst.clickOffset.left = instDraggable.offset.click.left;
  615. inst.offset.left -= ui.absolutePosition.left - inst.position.absolute.left;
  616. inst.offset.top -= ui.absolutePosition.top - inst.position.absolute.top;
  617. //Do a nifty little helper animation: Animate it to the portlet's size (just takes the first 'li' element in the sortable now)
  618. inst.helperProportions = {width: width, height: height}; //We have to reset the helper proportions, because we are doing our animation there
  619. ui.helper.animate({height: height, width: width}, 500);
  620. instDraggable.propagate("toSortable", e);
  621. }
  622. //Provided we did all the previous steps, we can fire the drag event of the sortable on every draggable drag, when it intersects with the sortable
  623. if(inst.currentItem) inst.drag(e);
  624. } else {
  625. //If it doesn't intersect with the sortable, and it intersected before,
  626. //we fake the drag stop of the sortable, but make sure it doesn't remove the helper by using cancelHelperRemoval
  627. if(inst.isOver) {
  628. inst.isOver = 0;
  629. inst.cancelHelperRemoval = true;
  630. inst.options.revert = false; //No revert here
  631. inst.stop(e);
  632. inst.options.helper = "original";
  633. //Now we remove our currentItem, the list group clone again, and the placeholder, and animate the helper back to it's original size
  634. inst.currentItem.remove();
  635. inst.placeholder.remove();
  636. ui.helper.animate({ height: this.innerHeight(), width: this.innerWidth() }, 500);
  637. instDraggable.propagate("fromSortable", e);
  638. }
  639. };
  640. }
  641. });
  642. $.ui.plugin.add("draggable", "stack", {
  643. start: function(e,ui) {
  644. var group = $.makeArray($(ui.options.stack.group)).sort(function(a,b) {
  645. return (parseInt($(a).css("zIndex")) || ui.options.stack.min) - (parseInt($(b).css("zIndex")) || ui.options.stack.min);
  646. });
  647. $(group).each(function(i) {
  648. this.style.zIndex = ui.options.stack.min + i;
  649. });
  650. this[0].style.zIndex = ui.options.stack.min + group.length;
  651. }
  652. });
  653. })(jQuery);/*
  654.  * jQuery UI Droppable
  655.  *
  656.  * Copyright (c) 2008 Paul Bakaus
  657.  * Dual licensed under the MIT (MIT-LICENSE.txt)
  658.  * and GPL (GPL-LICENSE.txt) licenses.
  659.  * 
  660.  * http://docs.jquery.com/UI/Droppables
  661.  *
  662.  * Depends:
  663.  * ui.core.js
  664.  * ui.draggable.js
  665.  *
  666.  * Revision: $Id: ui.droppable.js 5433 2008-05-04 20:07:17Z joern.zaefferer $
  667.  */
  668. ;(function($) {
  669. $.widget("ui.droppable", {
  670. init: function() {
  671. this.element.addClass("ui-droppable");
  672. this.isover = 0; this.isout = 1;
  673. //Prepare the passed options
  674. var o = this.options, accept = o.accept;
  675. o = $.extend(o, {
  676. accept: o.accept && o.accept.constructor == Function ? o.accept : function(d) {
  677. return $(d).is(accept);
  678. }
  679. });
  680. //Store the droppable's proportions
  681. this.proportions = { width: this.element.outerWidth(), height: this.element.outerHeight() };
  682. // Add the reference and positions to the manager
  683. $.ui.ddmanager.droppables.push(this);
  684. },
  685. plugins: {},
  686. ui: function(c) {
  687. return {
  688. instance: this,
  689. draggable: (c.currentItem || c.element),
  690. helper: c.helper,
  691. position: c.position,
  692. absolutePosition: c.positionAbs,
  693. options: this.options,
  694. element: this.element
  695. };
  696. },
  697. destroy: function() {
  698. var drop = $.ui.ddmanager.droppables;
  699. for ( var i = 0; i < drop.length; i++ )
  700. if ( drop[i] == this )
  701. drop.splice(i, 1);
  702. this.element
  703. .removeClass("ui-droppable ui-droppable-disabled")
  704. .removeData("droppable")
  705. .unbind(".droppable");
  706. },
  707. enable: function() {
  708. this.element.removeClass("ui-droppable-disabled");
  709. this.options.disabled = false;
  710. },
  711. disable: function() {
  712. this.element.addClass("ui-droppable-disabled");
  713. this.options.disabled = true;
  714. },
  715. over: function(e) {
  716. var draggable = $.ui.ddmanager.current;
  717. if (!draggable || (draggable.currentItem || draggable.element)[0] == this.element[0]) return; // Bail if draggable and droppable are same element
  718. if (this.options.accept.call(this.element,(draggable.currentItem || draggable.element))) {
  719. $.ui.plugin.call(this, 'over', [e, this.ui(draggable)]);
  720. this.element.triggerHandler("dropover", [e, this.ui(draggable)], this.options.over);
  721. }
  722. },
  723. out: function(e) {
  724. var draggable = $.ui.ddmanager.current;
  725. if (!draggable || (draggable.currentItem || draggable.element)[0] == this.element[0]) return; // Bail if draggable and droppable are same element
  726. if (this.options.accept.call(this.element,(draggable.currentItem || draggable.element))) {
  727. $.ui.plugin.call(this, 'out', [e, this.ui(draggable)]);
  728. this.element.triggerHandler("dropout", [e, this.ui(draggable)], this.options.out);
  729. }
  730. },
  731. drop: function(e,custom) {
  732. var draggable = custom || $.ui.ddmanager.current;
  733. if (!draggable || (draggable.currentItem || draggable.element)[0] == this.element[0]) return false; // Bail if draggable and droppable are same element
  734. var childrenIntersection = false;
  735. this.element.find(".ui-droppable").each(function() {
  736. var inst = $.data(this, 'droppable');
  737. if(inst.options.greedy && $.ui.intersect(draggable, $.extend(inst, { offset: inst.element.offset() }), inst.options.tolerance)) {
  738. childrenIntersection = true; return false;
  739. }
  740. });
  741. if(childrenIntersection) return false;
  742. if(this.options.accept.call(this.element,(draggable.currentItem || draggable.element))) {
  743. $.ui.plugin.call(this, 'drop', [e, this.ui(draggable)]);
  744. this.element.triggerHandler("drop", [e, this.ui(draggable)], this.options.drop);
  745. return true;
  746. }
  747. return false;
  748. },
  749. activate: function(e) {
  750. var draggable = $.ui.ddmanager.current;
  751. $.ui.plugin.call(this, 'activate', [e, this.ui(draggable)]);
  752. if(draggable) this.element.triggerHandler("dropactivate", [e, this.ui(draggable)], this.options.activate);
  753. },
  754. deactivate: function(e) {
  755. var draggable = $.ui.ddmanager.current;
  756. $.ui.plugin.call(this, 'deactivate', [e, this.ui(draggable)]);
  757. if(draggable) this.element.triggerHandler("dropdeactivate", [e, this.ui(draggable)], this.options.deactivate);
  758. }
  759. });
  760. $.extend($.ui.droppable, {
  761. defaults: {
  762. disabled: false,
  763. tolerance: 'intersect'
  764. }
  765. });
  766. $.ui.intersect = function(draggable, droppable, toleranceMode) {
  767. if (!droppable.offset) return false;
  768. var x1 = (draggable.positionAbs || draggable.position.absolute).left, x2 = x1 + draggable.helperProportions.width,
  769. y1 = (draggable.positionAbs || draggable.position.absolute).top, y2 = y1 + draggable.helperProportions.height;
  770. var l = droppable.offset.left, r = l + droppable.proportions.width,
  771. t = droppable.offset.top, b = t + droppable.proportions.height;
  772. switch (toleranceMode) {
  773. case 'fit':
  774. if(!((y2-(draggable.helperProportions.height/2) > t && y1 < t) || (y1 < b && y2 > b) || (x2 > l && x1 < l) || (x1 < r && x2 > r))) return false;
  775. if(y2-(draggable.helperProportions.height/2) > t && y1 < t) return 1; //Crosses top edge
  776. if(y1 < b && y2 > b) return 2; //Crosses bottom edge
  777. if(x2 > l && x1 < l) return 1; //Crosses left edge
  778. if(x1 < r && x2 > r) return 2; //Crosses right edge
  779. //return (l < x1 && x2 < r
  780. // && t < y1 && y2 < b);
  781. break;
  782. case 'intersect':
  783. return (l < x1 + (draggable.helperProportions.width / 2) // Right Half
  784. && x2 - (draggable.helperProportions.width / 2) < r // Left Half
  785. && t < y1 + (draggable.helperProportions.height / 2) // Bottom Half
  786. && y2 - (draggable.helperProportions.height / 2) < b ); // Top Half
  787. break;
  788. case 'pointer':
  789. return (l < ((draggable.positionAbs || draggable.position.absolute).left + (draggable.clickOffset || draggable.offset.click).left) && ((draggable.positionAbs || draggable.position.absolute).left + (draggable.clickOffset || draggable.offset.click).left) < r
  790. && t < ((draggable.positionAbs || draggable.position.absolute).top + (draggable.clickOffset || draggable.offset.click).top) && ((draggable.positionAbs || draggable.position.absolute).top + (draggable.clickOffset || draggable.offset.click).top) < b);
  791. break;
  792. case 'touch':
  793. return (
  794. (y1 >= t && y1 <= b) || // Top edge touching
  795. (y2 >= t && y2 <= b) || // Bottom edge touching
  796. (y1 < t && y2 > b) // Surrounded vertically
  797. ) && (
  798. (x1 >= l && x1 <= r) || // Left edge touching
  799. (x2 >= l && x2 <= r) || // Right edge touching
  800. (x1 < l && x2 > r) // Surrounded horizontally
  801. );
  802. break;
  803. default:
  804. return false;
  805. break;
  806. }
  807. };
  808. /*
  809. This manager tracks offsets of draggables and droppables
  810. */
  811. $.ui.ddmanager = {
  812. current: null,
  813. droppables: [],
  814. prepareOffsets: function(t, e) {
  815. var m = $.ui.ddmanager.droppables;
  816. var type = e ? e.type : null; // workaround for #2317
  817. for (var i = 0; i < m.length; i++) {
  818. if(m[i].options.disabled || (t && !m[i].options.accept.call(m[i].element,(t.currentItem || t.element)))) continue;
  819. m[i].visible = m[i].element.is(":visible"); if(!m[i].visible) continue; //If the element is not visible, continue
  820. m[i].offset = m[i].element.offset();
  821. m[i].proportions = { width: m[i].element.outerWidth(), height: m[i].element.outerHeight() };
  822. if(type == "dragstart" || type == "sortactivate") m[i].activate.call(m[i], e); //Activate the droppable if used directly from draggables
  823. }
  824. },
  825. drop: function(draggable, e) {
  826. var dropped = false;
  827. $.each($.ui.ddmanager.droppables, function() {
  828. if(!this.options) return;
  829. if (!this.options.disabled && this.visible && $.ui.intersect(draggable, this, this.options.tolerance))
  830. dropped = this.drop.call(this, e);
  831. if (!this.options.disabled && this.visible && this.options.accept.call(this.element,(draggable.currentItem || draggable.element))) {
  832. this.isout = 1; this.isover = 0;
  833. this.deactivate.call(this, e);
  834. }
  835. });
  836. return dropped;
  837. },
  838. drag: function(draggable, e) {
  839. //If you have a highly dynamic page, you might try this option. It renders positions every time you move the mouse.
  840. if(draggable.options.refreshPositions) $.ui.ddmanager.prepareOffsets(draggable, e);
  841. //Run through all droppables and check their positions based on specific tolerance options
  842. $.each($.ui.ddmanager.droppables, function() {
  843. if(this.disabled || this.greedyChild || !this.visible) return;
  844. var intersects = $.ui.intersect(draggable, this, this.options.tolerance);
  845. var c = !intersects && this.isover == 1 ? 'isout' : (intersects && this.isover == 0 ? 'isover' : null);
  846. if(!c) return;
  847. var parentInstance;
  848. if (this.options.greedy) {
  849. var parent = this.element.parents('.ui-droppable:eq(0)');
  850. if (parent.length) {
  851. parentInstance = $.data(parent[0], 'droppable');
  852. parentInstance.greedyChild = (c == 'isover' ? 1 : 0);
  853. }
  854. }
  855. // we just moved into a greedy child
  856. if (parentInstance && c == 'isover') {
  857. parentInstance['isover'] = 0;
  858. parentInstance['isout'] = 1;
  859. parentInstance.out.call(parentInstance, e);
  860. }
  861. this[c] = 1; this[c == 'isout' ? 'isover' : 'isout'] = 0;
  862. this[c == "isover" ? "over" : "out"].call(this, e);
  863. // we just moved out of a greedy child
  864. if (parentInstance && c == 'isout') {
  865. parentInstance['isout'] = 0;
  866. parentInstance['isover'] = 1;
  867. parentInstance.over.call(parentInstance, e);
  868. }
  869. });
  870. }
  871. };
  872. /*
  873.  * Droppable Extensions
  874.  */
  875. $.ui.plugin.add("droppable", "activeClass", {
  876. activate: function(e, ui) {
  877. $(this).addClass(ui.options.activeClass);
  878. },
  879. deactivate: function(e, ui) {
  880. $(this).removeClass(ui.options.activeClass);
  881. },
  882. drop: function(e, ui) {
  883. $(this).removeClass(ui.options.activeClass);
  884. }
  885. });
  886. $.ui.plugin.add("droppable", "hoverClass", {
  887. over: function(e, ui) {
  888. $(this).addClass(ui.options.hoverClass);
  889. },
  890. out: function(e, ui) {
  891. $(this).removeClass(ui.options.hoverClass);
  892. },
  893. drop: function(e, ui) {
  894. $(this).removeClass(ui.options.hoverClass);
  895. }
  896. });
  897.  
  898. })(jQuery);
  899. /*
  900.  * jQuery UI Resizable
  901.  *
  902.  * Copyright (c) 2008 Paul Bakaus
  903.  * Dual licensed under the MIT (MIT-LICENSE.txt)
  904.  * and GPL (GPL-LICENSE.txt) licenses.
  905.  * 
  906.  * http://docs.jquery.com/UI/Resizables
  907.  *
  908.  * Depends:
  909.  * ui.core.js
  910.  *
  911.  * Revision: $Id: ui.resizable.js 5649 2008-05-21 03:06:36Z braeker $
  912.  */
  913. ;(function($) {
  914. $.widget("ui.resizable", {
  915. init: function() {
  916. var self = this, o = this.options;
  917. var elpos = this.element.css('position');
  918. // simulate .ui-resizable { position: relative; }
  919. this.element.addClass("ui-resizable").css({ position: /static/.test(elpos) ? 'relative' : elpos });
  920. $.extend(o, {
  921. _aspectRatio: !!(o.aspectRatio),
  922. proxy: o.proxy || o.ghost || o.animate ? 'proxy' : null,
  923. knobHandles: o.knobHandles === true ? 'ui-resizable-knob-handle' : o.knobHandles
  924. });
  925. //Default Theme
  926. var aBorder = '1px solid #DEDEDE';
  927. o.defaultTheme = {
  928. 'ui-resizable': { display: 'block' },
  929. 'ui-resizable-handle': { position: 'absolute', background: '#F2F2F2', fontSize: '0.1px' },
  930. 'ui-resizable-n': { cursor: 'n-resize', height: '4px', left: '0px', right: '0px', borderTop: aBorder },
  931. 'ui-resizable-s': { cursor: 's-resize', height: '4px', left: '0px', right: '0px', borderBottom: aBorder },
  932. 'ui-resizable-e': { cursor: 'e-resize', width: '4px', top: '0px', bottom: '0px', borderRight: aBorder },
  933. 'ui-resizable-w': { cursor: 'w-resize', width: '4px', top: '0px', bottom: '0px', borderLeft: aBorder },
  934. 'ui-resizable-se': { cursor: 'se-resize', width: '4px', height: '4px', borderRight: aBorder, borderBottom: aBorder },
  935. 'ui-resizable-sw': { cursor: 'sw-resize', width: '4px', height: '4px', borderBottom: aBorder, borderLeft: aBorder },
  936. 'ui-resizable-ne': { cursor: 'ne-resize', width: '4px', height: '4px', borderRight: aBorder, borderTop: aBorder },
  937. 'ui-resizable-nw': { cursor: 'nw-resize', width: '4px', height: '4px', borderLeft: aBorder, borderTop: aBorder }
  938. };
  939. o.knobTheme = {
  940. 'ui-resizable-handle': { background: '#F2F2F2', border: '1px solid #808080', height: '8px', width: '8px' },
  941. 'ui-resizable-n': { cursor: 'n-resize', top: '0px', left: '45%' },
  942. 'ui-resizable-s': { cursor: 's-resize', bottom: '0px', left: '45%' },
  943. 'ui-resizable-e': { cursor: 'e-resize', right: '0px', top: '45%' },
  944. 'ui-resizable-w': { cursor: 'w-resize', left: '0px', top: '45%' },
  945. 'ui-resizable-se': { cursor: 'se-resize', right: '0px', bottom: '0px' },
  946. 'ui-resizable-sw': { cursor: 'sw-resize', left: '0px', bottom: '0px' },
  947. 'ui-resizable-nw': { cursor: 'nw-resize', left: '0px', top: '0px' },
  948. 'ui-resizable-ne': { cursor: 'ne-resize', right: '0px', top: '0px' }
  949. };
  950. o._nodeName = this.element[0].nodeName;
  951. //Wrap the element if it cannot hold child nodes
  952. if(o._nodeName.match(/canvas|textarea|input|select|button|img/i)) {
  953. var el = this.element;
  954. //Opera fixing relative position
  955. if (/relative/.test(el.css('position')) && $.browser.opera)
  956. el.css({ position: 'relative', top: 'auto', left: 'auto' });
  957. //Create a wrapper element and set the wrapper to the new current internal element
  958. el.wrap(
  959. $('<div class="ui-wrapper" style="overflow: hidden;"></div>').css( {
  960. position: el.css('position'),
  961. width: el.outerWidth(),
  962. height: el.outerHeight(),
  963. top: el.css('top'),
  964. left: el.css('left')
  965. })
  966. );
  967. var oel = this.element; this.element = this.element.parent();
  968. //Move margins to the wrapper
  969. this.element.css({ marginLeft: oel.css("marginLeft"), marginTop: oel.css("marginTop"),
  970. marginRight: oel.css("marginRight"), marginBottom: oel.css("marginBottom")
  971. });
  972. oel.css({ marginLeft: 0, marginTop: 0, marginRight: 0, marginBottom: 0});
  973. //Prevent Safari textarea resize
  974. if ($.browser.safari && o.preventDefault) oel.css('resize', 'none');
  975. o.proportionallyResize = oel.css({ position: 'static', zoom: 1, display: 'block' });
  976. // avoid IE jump
  977. this.element.css({ margin: oel.css('margin') });
  978. // fix handlers offset
  979. this._proportionallyResize();
  980. }
  981. if(!o.handles) o.handles = !$('.ui-resizable-handle', this.element).length ? "e,s,se" : { n: '.ui-resizable-n', e: '.ui-resizable-e', s: '.ui-resizable-s', w: '.ui-resizable-w', se: '.ui-resizable-se', sw: '.ui-resizable-sw', ne: '.ui-resizable-ne', nw: '.ui-resizable-nw' };
  982. if(o.handles.constructor == String) {
  983. o.zIndex = o.zIndex || 1000;
  984. if(o.handles == 'all') o.handles = 'n,e,s,w,se,sw,ne,nw';
  985. var n = o.handles.split(","); o.handles = {};
  986. // insertions are applied when don't have theme loaded
  987. var insertionsDefault = {
  988. handle: 'position: absolute; display: none; overflow:hidden;',
  989. n: 'top: 0pt; width:100%;',
  990. e: 'right: 0pt; height:100%;',
  991. s: 'bottom: 0pt; width:100%;',
  992. w: 'left: 0pt; height:100%;',
  993. se: 'bottom: 0pt; right: 0px;',
  994. sw: 'bottom: 0pt; left: 0px;',
  995. ne: 'top: 0pt; right: 0px;',
  996. nw: 'top: 0pt; left: 0px;'
  997. };
  998. for(var i = 0; i < n.length; i++) {
  999. var handle = $.trim(n[i]), dt = o.defaultTheme, hname = 'ui-resizable-'+handle, loadDefault = !$.ui.css(hname) && !o.knobHandles, userKnobClass = $.ui.css('ui-resizable-knob-handle'), 
  1000. allDefTheme = $.extend(dt[hname], dt['ui-resizable-handle']), allKnobTheme = $.extend(o.knobTheme[hname], !userKnobClass ? o.knobTheme['ui-resizable-handle'] : {});
  1001. // increase zIndex of sw, se, ne, nw axis
  1002. var applyZIndex = /sw|se|ne|nw/.test(handle) ? { zIndex: ++o.zIndex } : {};
  1003. var defCss = (loadDefault ? insertionsDefault[handle] : ''), 
  1004. axis = $(['<div class="ui-resizable-handle ', hname, '" style="', defCss, insertionsDefault.handle, '"></div>'].join('')).css( applyZIndex );
  1005. o.handles[handle] = '.ui-resizable-'+handle;
  1006. this.element.append(
  1007. //Theme detection, if not loaded, load o.defaultTheme
  1008. axis.css( loadDefault ? allDefTheme : {} )
  1009. // Load the knobHandle css, fix width, height, top, left...
  1010. .css( o.knobHandles ? allKnobTheme : {} ).addClass(o.knobHandles ? 'ui-resizable-knob-handle' : '').addClass(o.knobHandles)
  1011. );
  1012. }
  1013. if (o.knobHandles) this.element.addClass('ui-resizable-knob').css( !$.ui.css('ui-resizable-knob') ? { /*border: '1px #fff dashed'*/ } : {} );
  1014. }
  1015. this._renderAxis = function(target) {
  1016. target = target || this.element;
  1017. for(var i in o.handles) {
  1018. if(o.handles[i].constructor == String) 
  1019. o.handles[i] = $(o.handles[i], this.element).show();
  1020. if (o.transparent)
  1021. o.handles[i].css({opacity:0});
  1022. //Apply pad to wrapper element, needed to fix axis position (textarea, inputs, scrolls)
  1023. if (this.element.is('.ui-wrapper') && 
  1024. o._nodeName.match(/textarea|input|select|button/i)) {
  1025. var axis = $(o.handles[i], this.element), padWrapper = 0;
  1026. //Checking the correct pad and border
  1027. padWrapper = /sw|ne|nw|se|n|s/.test(i) ? axis.outerHeight() : axis.outerWidth();
  1028. //The padding type i have to apply...
  1029. var padPos = [ 'padding', 
  1030. /ne|nw|n/.test(i) ? 'Top' :
  1031. /se|sw|s/.test(i) ? 'Bottom' : 
  1032. /^e$/.test(i) ? 'Right' : 'Left' ].join(""); 
  1033. if (!o.transparent)
  1034. target.css(padPos, padWrapper);
  1035. this._proportionallyResize();
  1036. }
  1037. if(!$(o.handles[i]).length) continue;
  1038. }
  1039. };
  1040. this._renderAxis(this.element);
  1041. o._handles = $('.ui-resizable-handle', self.element);
  1042. if (o.disableSelection)
  1043. o._handles.each(function(i, e) { $.ui.disableSelection(e); });
  1044. //Matching axis name
  1045. o._handles.mouseover(function() {
  1046. if (!o.resizing) {
  1047. if (this.className) 
  1048. var axis = this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);
  1049. //Axis, default = se
  1050. self.axis = o.axis = axis && axis[1] ? axis[1] : 'se';
  1051. }
  1052. });
  1053. //If we want to auto hide the elements
  1054. if (o.autohide) {
  1055. o._handles.hide();
  1056. $(self.element).addClass("ui-resizable-autohide").hover(function() {
  1057. $(this).removeClass("ui-resizable-autohide");
  1058. o._handles.show();
  1059. },
  1060. function(){
  1061. if (!o.resizing) {
  1062. $(this).addClass("ui-resizable-autohide");
  1063. o._handles.hide();
  1064. }
  1065. });
  1066. }
  1067. //Initialize mouse events for interaction
  1068. this.element.mouse({
  1069. executor: this,
  1070. delay: 0,
  1071. distance: 0,
  1072. dragPrevention: ['input','textarea','button','select','option'],
  1073. start: this.start,
  1074. stop: this.stop,
  1075. drag: this.drag,
  1076. condition: function(e) {
  1077. if(this.disabled) return false;
  1078. for(var i in this.options.handles) {
  1079. if($(this.options.handles[i])[0] == e.target) return true;
  1080. }
  1081. return false;
  1082. }
  1083. });
  1084. },
  1085. plugins: {},
  1086. ui: function() {
  1087. return {
  1088. instance: this,
  1089. axis: this.options.axis,
  1090. options: this.options
  1091. };
  1092. },
  1093. propagate: function(n,e) {
  1094. $.ui.plugin.call(this, n, [e, this.ui()]);
  1095. this.element.triggerHandler(n == "resize" ? n : ["resize", n].join(""), [e, this.ui()], this.options[n]);
  1096. },
  1097. destroy: function() {
  1098. var el = this.element, wrapped = el.children(".ui-resizable").get(0),
  1099. _destroy = function(exp) {
  1100. $(exp).removeClass("ui-resizable ui-resizable-disabled")
  1101. .mouse("destroy").removeData("resizable").unbind(".resizable").find('.ui-resizable-handle').remove();
  1102. };
  1103. _destroy(el);
  1104. if (el.is('.ui-wrapper') && wrapped) {
  1105. el.parent().append(
  1106. $(wrapped).css({
  1107. position: el.css('position'),
  1108. width: el.outerWidth(),
  1109. height: el.outerHeight(),
  1110. top: el.css('top'),
  1111. left: el.css('left')
  1112. })
  1113. ).end().remove();
  1114. _destroy(wrapped);
  1115. }
  1116. },
  1117. enable: function() {
  1118. this.element.removeClass("ui-resizable-disabled");
  1119. this.disabled = false;
  1120. },
  1121. disable: function() {
  1122. this.element.addClass("ui-resizable-disabled");
  1123. this.disabled = true;
  1124. },
  1125. start: function(e) {
  1126. var o = this.options, iniPos = this.element.position(), el = this.element, 
  1127. num = function(v) { return parseInt(v, 10) || 0; }, ie6 = $.browser.msie && $.browser.version < 7;
  1128. o.resizing = true;
  1129. o.documentScroll = { top: $(document).scrollTop(), left: $(document).scrollLeft() };
  1130. // bugfix #1749
  1131. if (el.is('.ui-draggable') || (/absolute/).test(el.css('position'))) {
  1132. // sOffset decides if document scrollOffset will be added to the top/left of the resizable element
  1133. var sOffset = $.browser.msie && !o.containment && (/absolute/).test(el.css('position')) && !(/relative/).test(el.parent().css('position'));
  1134. var dscrollt = sOffset ? o.documentScroll.top : 0, dscrolll = sOffset ? o.documentScroll.left : 0;
  1135. el.css({ position: 'absolute', top: (iniPos.top + dscrollt), left: (iniPos.left + dscrolll) });
  1136. }
  1137. //Opera fixing relative position
  1138. if (/relative/.test(el.css('position')) && $.browser.opera)
  1139. el.css({ position: 'relative', top: 'auto', left: 'auto' });
  1140. this._renderProxy();
  1141. var curleft = num(this.helper.css('left')), curtop = num(this.helper.css('top'));
  1142. //Store needed variables
  1143. this.offset = this.helper.offset();
  1144. this.position = { left: curleft, top: curtop };
  1145. this.size = o.proxy || ie6 ? { width: el.outerWidth(), height: el.outerHeight() } : { width: el.width(), height: el.height() };
  1146. this.originalSize = o.proxy || ie6 ? { width: el.outerWidth(), height: el.outerHeight() } : { width: el.width(), height: el.height() };
  1147. this.originalPosition = { left: curleft, top: curtop };
  1148. this.sizeDiff = { width: el.outerWidth() - el.width(), height: el.outerHeight() - el.height() };
  1149. this.originalMousePosition = { left: e.pageX, top: e.pageY };
  1150. //Aspect Ratio
  1151. o.aspectRatio = (typeof o.aspectRatio == 'number') ? o.aspectRatio : ((this.originalSize.height / this.originalSize.width)||1);
  1152. if (o.preserveCursor)
  1153. $('body').css('cursor', this.axis + '-resize');
  1154. this.propagate("start", e);
  1155. return false;
  1156. },
  1157. stop: function(e) {
  1158. this.options.resizing = false;
  1159. var o = this.options, num = function(v) { return parseInt(v, 10) || 0; }, self = this;
  1160. if(o.proxy) {
  1161. var pr = o.proportionallyResize, ista = pr && (/textarea/i).test(pr.get(0).nodeName), 
  1162. soffseth = ista && $.ui.hasScroll(pr.get(0), 'left') /* TODO - jump height */ ? 0 : self.sizeDiff.height,
  1163. soffsetw = ista ? 0 : self.sizeDiff.width;
  1164. var s = { width: (self.size.width - soffsetw), height: (self.size.height - soffseth) },
  1165. left = (parseInt(self.element.css('left'), 10) + (self.position.left - self.originalPosition.left)) || null, 
  1166. top = (parseInt(self.element.css('top'), 10) + (self.position.top - self.originalPosition.top)) || null;
  1167. if (!o.animate)
  1168. this.element.css($.extend(s, { top: top, left: left }));
  1169. if (o.proxy && !o.animate) this._proportionallyResize();
  1170. this.helper.remove();
  1171. }
  1172. if (o.preserveCursor)
  1173. $('body').css('cursor', 'auto');
  1174. this.propagate("stop", e);
  1175. return false;
  1176. },
  1177. drag: function(e) {
  1178. //Increase performance, avoid regex
  1179. var el = this.helper, o = this.options, props = {},
  1180. self = this, smp = this.originalMousePosition, a = this.axis;
  1181. var dx = (e.pageX-smp.left)||0, dy = (e.pageY-smp.top)||0;
  1182. var trigger = this._change[a];
  1183. if (!trigger) return false;
  1184. // Calculate the attrs that will be change
  1185. var data = trigger.apply(this, [e, dx, dy]), ie6 = $.browser.msie && $.browser.version < 7, csdif = this.sizeDiff;
  1186. if (o._aspectRatio || e.shiftKey)
  1187. data = this._updateRatio(data, e);
  1188. data = this._respectSize(data, e);
  1189. this.propagate("resize", e);
  1190. el.css({
  1191. top: this.position.top + "px", left: this.position.left + "px", 
  1192. width: this.size.width + "px", height: this.size.height + "px"
  1193. });
  1194. if (!o.proxy && o.proportionallyResize)
  1195. this._proportionallyResize();
  1196. this._updateCache(data);
  1197. return false;
  1198. },
  1199. _updateCache: function(data) {
  1200. var o = this.options;
  1201. this.offset = this.helper.offset();
  1202. if (data.left) this.position.left = data.left;
  1203. if (data.top) this.position.top = data.top;
  1204. if (data.height) this.size.height = data.height;
  1205. if (data.width) this.size.width = data.width;
  1206. },
  1207. _updateRatio: function(data, e) {
  1208. var o = this.options, cpos = this.position, csize = this.size, a = this.axis;
  1209. if (data.height) data.width = (csize.height / o.aspectRatio);
  1210. else if (data.width) data.height = (csize.width * o.aspectRatio);
  1211. if (a == 'sw') {
  1212. data.left = cpos.left + (csize.width - data.width);
  1213. data.top = null;
  1214. }
  1215. if (a == 'nw') { 
  1216. data.top = cpos.top + (csize.height - data.height);
  1217. data.left = cpos.left + (csize.width - data.width);
  1218. }
  1219. return data;
  1220. },
  1221. _respectSize: function(data, e) {
  1222. var el = this.helper, o = this.options, pRatio = o._aspectRatio || e.shiftKey, a = this.axis, 
  1223. ismaxw = data.width && o.maxWidth && o.maxWidth < data.width, ismaxh = data.height && o.maxHeight && o.maxHeight < data.height,
  1224. isminw = data.width && o.minWidth && o.minWidth > data.width, isminh = data.height && o.minHeight && o.minHeight > data.height;
  1225. if (isminw) data.width = o.minWidth;
  1226. if (isminh) data.height = o.minHeight;
  1227. if (ismaxw) data.width = o.maxWidth;
  1228. if (ismaxh) data.height = o.maxHeight;
  1229. var dw = this.originalPosition.left + this.originalSize.width, dh = this.position.top + this.size.height;
  1230. var cw = /sw|nw|w/.test(a), ch = /nw|ne|n/.test(a);
  1231. if (isminw && cw) data.left = dw - o.minWidth;
  1232. if (ismaxw && cw) data.left = dw - o.maxWidth;
  1233. if (isminh && ch) data.top = dh - o.minHeight;
  1234. if (ismaxh && ch) data.top = dh - o.maxHeight;
  1235. // fixing jump error on top/left - bug #2330
  1236. var isNotwh = !data.width && !data.height;
  1237. if (isNotwh && !data.left && data.top) data.top = null;
  1238. else if (isNotwh && !data.top && data.left) data.left = null;
  1239. return data;
  1240. },
  1241. _proportionallyResize: function() {
  1242. var o = this.options;
  1243. if (!o.proportionallyResize) return;
  1244. var prel = o.proportionallyResize, el = this.helper || this.element;
  1245. if (!o.borderDif) {
  1246. var b = [prel.css('borderTopWidth'), prel.css('borderRightWidth'), prel.css('borderBottomWidth'), prel.css('borderLeftWidth')],
  1247. p = [prel.css('paddingTop'), prel.css('paddingRight'), prel.css('paddingBottom'), prel.css('paddingLeft')];
  1248. o.borderDif = $.map(b, function(v, i) {
  1249. var border = parseInt(v,10)||0, padding = parseInt(p[i],10)||0;
  1250. return border + padding; 
  1251. });
  1252. }
  1253. prel.css({
  1254. height: (el.height() - o.borderDif[0] - o.borderDif[2]) + "px",
  1255. width: (el.width() - o.borderDif[1] - o.borderDif[3]) + "px"
  1256. });
  1257. },
  1258. _renderProxy: function() {
  1259. var el = this.element, o = this.options;
  1260. this.elementOffset = el.offset();
  1261. if(o.proxy) {
  1262. this.helper = this.helper || $('<div style="overflow:hidden;"></div>');
  1263. // fix ie6 offset
  1264. var ie6 = $.browser.msie && $.browser.version < 7, ie6offset = (ie6 ? 1 : 0),
  1265. pxyoffset = ( ie6 ? 2 : -1 );
  1266. this.helper.addClass(o.proxy).css({
  1267. width: el.outerWidth() + pxyoffset,
  1268. height: el.outerHeight() + pxyoffset,
  1269. position: 'absolute',
  1270. left: this.elementOffset.left - ie6offset +'px',
  1271. top: this.elementOffset.top - ie6offset +'px',
  1272. zIndex: ++o.zIndex
  1273. });
  1274. this.helper.appendTo("body");
  1275. if (o.disableSelection)
  1276. $.ui.disableSelection(this.helper.get(0));
  1277. } else {
  1278. this.helper = el; 
  1279. }
  1280. },
  1281. _change: {
  1282. e: function(e, dx, dy) {
  1283. return { width: this.originalSize.width + dx };
  1284. },
  1285. w: function(e, dx, dy) {
  1286. var o = this.options, cs = this.originalSize, sp = this.originalPosition;
  1287. return { left: sp.left + dx, width: cs.width - dx };
  1288. },
  1289. n: function(e, dx, dy) {
  1290. var o = this.options, cs = this.originalSize, sp = this.originalPosition;
  1291. return { top: sp.top + dy, height: cs.height - dy };
  1292. },
  1293. s: function(e, dx, dy) {
  1294. return { height: this.originalSize.height + dy };
  1295. },
  1296. se: function(e, dx, dy) {
  1297. return $.extend(this._change.s.apply(this, arguments), this._change.e.apply(this, [e, dx, dy]));
  1298. },
  1299. sw: function(e, dx, dy) {
  1300. return $.extend(this._change.s.apply(this, arguments), this._change.w.apply(this, [e, dx, dy]));
  1301. },
  1302. ne: function(e, dx, dy) {
  1303. return $.extend(this._change.n.apply(this, arguments), this._change.e.apply(this, [e, dx, dy]));
  1304. },
  1305. nw: function(e, dx, dy) {
  1306. return $.extend(this._change.n.apply(this, arguments), this._change.w.apply(this, [e, dx, dy]));
  1307. }
  1308. }
  1309. });
  1310. $.extend($.ui.resizable, {
  1311. defaults: {
  1312. preventDefault: true,
  1313. transparent: false,
  1314. minWidth: 10,
  1315. minHeight: 10,
  1316. aspectRatio: false,
  1317. disableSelection: true,
  1318. preserveCursor: true,
  1319. autohide: false,
  1320. knobHandles: false
  1321. }
  1322. });
  1323. /*
  1324.  * Resizable Extensions
  1325.  */
  1326. $.ui.plugin.add("resizable", "containment", {
  1327. start: function(e, ui) {
  1328. var o = ui.options, self = ui.instance, el = self.element;
  1329. var oc = o.containment, ce = (oc instanceof $) ? oc.get(0) : (/parent/.test(oc)) ? el.parent().get(0) : oc;
  1330. if (!ce) return;
  1331. if (/document/.test(oc) || oc == document) {
  1332. self.containerOffset = { left: 0, top: 0 };
  1333. self.parentData = { 
  1334. element: $(document), left: 0, top: 0, width: $(document).width(),
  1335. height: $(document).height() || document.body.parentNode.scrollHeight
  1336. };
  1337. }
  1338. // i'm a node, so compute top, left, right, bottom
  1339. else{
  1340. self.containerOffset = $(ce).offset();
  1341. self.containerSize = { height: $(ce).innerHeight(), width: $(ce).innerWidth() };
  1342. var co = self.containerOffset, ch = self.containerSize.height, cw = self.containerSize.width, 
  1343. width = ($.ui.hasScroll(ce, "left") ? ce.scrollWidth : cw ), height = ($.ui.hasScroll(ce) ? ce.scrollHeight : ch);
  1344. self.parentData = { 
  1345. element: ce, left: co.left, top: co.top, width: width, height: height
  1346. };
  1347. }
  1348. },
  1349. resize: function(e, ui) {
  1350. var o = ui.options, self = ui.instance, ps = self.containerSize, 
  1351. co = self.containerOffset, cs = self.size, cp = self.position,
  1352. pRatio = o._aspectRatio || e.shiftKey;
  1353. if (cp.left < (o.proxy ? co.left : 0)) {
  1354. self.size.width = self.size.width + (o.proxy ? (self.position.left - co.left) : self.position.left);
  1355. if (pRatio) self.size.height = self.size.width * o.aspectRatio;
  1356. self.position.left = o.proxy ? co.left : 0;
  1357. }
  1358. if (cp.top < (o.proxy ? co.top : 0)) {
  1359. self.size.height = self.size.height + (o.proxy ? (self.position.top - co.top) : self.position.top);
  1360. if (pRatio) self.size.width = self.size.height / o.aspectRatio;
  1361. self.position.top = o.proxy ? co.top : 0;
  1362. }
  1363. var woset = (o.proxy ? self.offset.left - co.left : self.position.left) + self.sizeDiff.width, 
  1364. hoset = (o.proxy ? self.offset.top - co.top : self.position.top) + self.sizeDiff.height;
  1365. if (woset + self.size.width >= self.parentData.width) {
  1366. self.size.width = self.parentData.width - woset;
  1367. if (pRatio) self.size.height = self.size.width * o.aspectRatio;
  1368. }
  1369. if (hoset + self.size.height >= self.parentData.height) {
  1370. self.size.height = self.parentData.height - hoset;
  1371. if (pRatio) self.size.width = self.size.height / o.aspectRatio;
  1372. }
  1373. }
  1374. });
  1375. $.ui.plugin.add("resizable", "grid", {
  1376. resize: function(e, ui) {
  1377. var o = ui.options, self = ui.instance, cs = self.size, os = self.originalSize, op = self.originalPosition, a = self.axis, ratio = o._aspectRatio || e.shiftKey;
  1378. o.grid = typeof o.grid == "number" ? [o.grid, o.grid] : o.grid;
  1379. var ox = Math.round((cs.width - os.width) / o.grid[0]) * o.grid[0], oy = Math.round((cs.height - os.height) / o.grid[1]) * o.grid[1];
  1380. if (/^(se|s|e)$/.test(a)) {
  1381. self.size.width = os.width + ox;
  1382. self.size.height = os.height + oy;
  1383. }
  1384. else if (/^(ne)$/.test(a)) {
  1385. self.size.width = os.width + ox;
  1386. self.size.height = os.height + oy;
  1387. self.position.top = op.top - oy;
  1388. }
  1389. else if (/^(sw)$/.test(a)) {
  1390. self.size.width = os.width + ox;
  1391. self.size.height = os.height + oy;
  1392. self.position.left = op.left - ox;
  1393. }
  1394. else {
  1395. self.size.width = os.width + ox;
  1396. self.size.height = os.height + oy;
  1397. self.position.top = op.top - oy;
  1398. self.position.left = op.left - ox;
  1399. }
  1400. }
  1401. });
  1402. $.ui.plugin.add("resizable", "animate", {
  1403. stop: function(e, ui) {
  1404. var o = ui.options, self = ui.instance;
  1405. var pr = o.proportionallyResize, ista = pr && (/textarea/i).test(pr.get(0).nodeName), 
  1406. soffseth = ista && $.ui.hasScroll(pr.get(0), 'left') /* TODO - jump height */ ? 0 : self.sizeDiff.height,
  1407. soffsetw = ista ? 0 : self.sizeDiff.width;
  1408. var style = { width: (self.size.width - soffsetw), height: (self.size.height - soffseth) },
  1409. left = (parseInt(self.element.css('left'), 10) + (self.position.left - self.originalPosition.left)) || null, 
  1410. top = (parseInt(self.element.css('top'), 10) + (self.position.top - self.originalPosition.top)) || null; 
  1411. self.element.animate(
  1412. $.extend(style, top && left ? { top: top, left: left } : {}), { 
  1413. duration: o.animateDuration || "slow", easing: o.animateEasing || "swing", 
  1414. step: function() {
  1415. var data = {
  1416. width: parseInt(self.element.css('width'), 10),
  1417. height: parseInt(self.element.css('height'), 10),
  1418. top: parseInt(self.element.css('top'), 10),
  1419. left: parseInt(self.element.css('left'), 10)
  1420. };
  1421. if (pr) pr.css({ width: data.width, height: data.height });
  1422. // propagating resize, and updating values for each animation step
  1423. self._updateCache(data);
  1424. self.propagate("animate", e);
  1425. }
  1426. }
  1427. );
  1428. }
  1429. });
  1430. $.ui.plugin.add("resizable", "ghost", {
  1431. start: function(e, ui) {
  1432. var o = ui.options, self = ui.instance, pr = o.proportionallyResize, cs = self.size;
  1433. if (!pr) self.ghost = self.element.clone();
  1434. else self.ghost = pr.clone();
  1435. self.ghost.css(
  1436. { opacity: .25, display: 'block', position: 'relative', height: cs.height, width: cs.width, margin: 0, left: 0, top: 0 }
  1437. )
  1438. .addClass('ui-resizable-ghost').addClass(typeof o.ghost == 'string' ? o.ghost : '');
  1439. self.ghost.appendTo(self.helper);
  1440. },
  1441. resize: function(e, ui){
  1442. var o = ui.options, self = ui.instance, pr = o.proportionallyResize;
  1443. if (self.ghost) self.ghost.css({ position: 'relative', height: self.size.height, width: self.size.width });
  1444. },
  1445. stop: function(e, ui){
  1446. var o = ui.options, self = ui.instance, pr = o.proportionallyResize;
  1447. if (self.ghost && self.helper) self.helper.get(0).removeChild(self.ghost.get(0));
  1448. }
  1449. });
  1450. $.ui.plugin.add("resizable", "alsoResize", {
  1451. start: function(e, ui) {
  1452. var o = ui.options, self = ui.instance, 
  1453. _store = function(exp) {
  1454. $(exp).each(function() {
  1455. $(this).data("resizable-alsoresize-start", {
  1456. width: parseInt($(this).css('width'), 10), height: parseInt($(this).css('height'), 10),
  1457. left: parseInt($(this).css('left'), 10), top: parseInt($(this).css('top'), 10)
  1458. });
  1459. });
  1460. };
  1461. if (typeof(o.alsoResize) == 'object') {
  1462. $.each(o.alsoResize, function(exp, c) { _store(exp); });
  1463. }else{
  1464. _store(o.alsoResize);
  1465. },
  1466. resize: function(e, ui){
  1467. var o = ui.options, self = ui.instance, os = self.originalSize, op = self.originalPosition;
  1468. var delta = { 
  1469. height: (self.size.height - os.height) || 0, width: (self.size.width - os.width) || 0,
  1470. top: (self.position.top - op.top) || 0, left: (self.position.left - op.left) || 0
  1471. },
  1472. _alsoResize = function(exp, c) {
  1473. $(exp).each(function() {
  1474. var start = $(this).data("resizable-alsoresize-start"), style = {}, css = c && c.length ? c : ['width', 'height', 'top', 'left'];
  1475. $.each(css || ['width', 'height', 'top', 'left'], function(i, prop) {
  1476. style[prop] = (start[prop] + delta[prop]) || null
  1477. });
  1478. $(this).css(style);
  1479. });
  1480. };
  1481. if (typeof(o.alsoResize) == 'object') {
  1482. $.each(o.alsoResize, function(exp, c) { _alsoResize(exp, c); });
  1483. }else{
  1484. _alsoResize(o.alsoResize);
  1485. }
  1486. },
  1487. stop: function(e, ui){
  1488. $(this).removeData("resizable-alsoresize-start");
  1489. }
  1490. });
  1491. })(jQuery);
  1492. /*
  1493.  * jQuery UI Selectable
  1494.  *
  1495.  * Copyright (c) 2008 Richard D. Worth (rdworth.org)
  1496.  * Dual licensed under the MIT (MIT-LICENSE.txt)
  1497.  * and GPL (GPL-LICENSE.txt) licenses.
  1498.  * 
  1499.  * http://docs.jquery.com/UI/Selectables
  1500.  *
  1501.  * Depends:
  1502.  * ui.core.js
  1503.  *
  1504.  * Revision: $Id: ui.selectable.js 5433 2008-05-04 20:07:17Z joern.zaefferer $
  1505.  */
  1506. ;(function($) {
  1507. $.widget("ui.selectable", {
  1508. init: function() {
  1509. var instance = this;
  1510. this.element.addClass("ui-selectable");
  1511. this.element.bind("setData.selectable", function(event, key, value){
  1512. instance.options[key] = value;
  1513. }).bind("getData.selectable", function(event, key){
  1514. return instance.options[key];
  1515. });
  1516. this.dragged = false;
  1517. // cache selectee children based on filter
  1518. var selectees;
  1519. this.refresh = function() {
  1520. selectees = $(instance.options.filter, instance.element[0]);
  1521. selectees.each(function() {
  1522. var $this = $(this);
  1523. var pos = $this.offset();
  1524. $.data(this, "selectable-item", {
  1525. element: this,
  1526. $element: $this,
  1527. left: pos.left,
  1528. top: pos.top,
  1529. right: pos.left + $this.width(),
  1530. bottom: pos.top + $this.height(),
  1531. startselected: false,
  1532. selected: $this.hasClass('ui-selected'),
  1533. selecting: $this.hasClass('ui-selecting'),
  1534. unselecting: $this.hasClass('ui-unselecting')
  1535. });
  1536. });
  1537. };
  1538. this.refresh();
  1539. this.selectees = selectees.addClass("ui-selectee");
  1540. //Initialize mouse interaction
  1541. this.element.mouse({
  1542. executor: this,
  1543. appendTo: 'body',
  1544. delay: 0,
  1545. distance: 0,
  1546. dragPrevention: ['input','textarea','button','select','option'],
  1547. start: this.start,
  1548. stop: this.stop,
  1549. drag: this.drag,
  1550. condition: function(e) {
  1551. var isSelectee = false;
  1552. $(e.target).parents().andSelf().each(function() {
  1553. if($.data(this, "selectable-item")) isSelectee = true;
  1554. });
  1555. return this.options.keyboard ? !isSelectee : true;
  1556. }
  1557. });
  1558. this.helper = $(document.createElement('div')).css({border:'1px dotted black'});
  1559. },
  1560. toggle: function() {
  1561. if(this.disabled){
  1562. this.enable();
  1563. } else {
  1564. this.disable();
  1565. }
  1566. },
  1567. destroy: function() {
  1568. this.element
  1569. .removeClass("ui-selectable ui-selectable-disabled")
  1570. .removeData("selectable")
  1571. .unbind(".selectable")
  1572. .mouse("destroy");
  1573. },
  1574. enable: function() {
  1575. this.element.removeClass("ui-selectable-disabled");
  1576. this.disabled = false;
  1577. },
  1578. disable: function() {
  1579. this.element.addClass("ui-selectable-disabled");
  1580. this.disabled = true;
  1581. },
  1582. start: function(ev, element) {
  1583. this.opos = [ev.pageX, ev.pageY];
  1584. if (this.disabled)
  1585. return;
  1586. var options = this.options;
  1587. this.selectees = $(options.filter, element);
  1588. // selectable START callback
  1589. this.element.triggerHandler("selectablestart", [ev, {
  1590. "selectable": element,
  1591. "options": options
  1592. }], options.start);
  1593. $('body').append(this.helper);
  1594. // position helper (lasso)
  1595. this.helper.css({
  1596. "z-index": 100,
  1597. "position": "absolute",
  1598. "left": ev.clientX,
  1599. "top": ev.clientY,
  1600. "width": 0,
  1601. "height": 0
  1602. });
  1603. if (options.autoRefresh) {
  1604. this.refresh();
  1605. }
  1606. this.selectees.filter('.ui-selected').each(function() {
  1607. var selectee = $.data(this, "selectable-item");
  1608. selectee.startselected = true;
  1609. if (!ev.ctrlKey) {
  1610. selectee.$element.removeClass('ui-selected');
  1611. selectee.selected = false;
  1612. selectee.$element.addClass('ui-unselecting');
  1613. selectee.unselecting = true;
  1614. // selectable UNSELECTING callback
  1615. $(this.element).triggerHandler("selectableunselecting", [ev, {
  1616. selectable: element,
  1617. unselecting: selectee.element,
  1618. options: options
  1619. }], options.unselecting);
  1620. }
  1621. });
  1622. },
  1623. drag: function(ev, element) {
  1624. this.dragged = true;
  1625. if (this.disabled)
  1626. return;
  1627. var options = this.options;
  1628. var x1 = this.opos[0], y1 = this.opos[1], x2 = ev.pageX, y2 = ev.pageY;
  1629. if (x1 > x2) { var tmp = x2; x2 = x1; x1 = tmp; }
  1630. if (y1 > y2) { var tmp = y2; y2 = y1; y1 = tmp; }
  1631. this.helper.css({left: x1, top: y1, width: x2-x1, height: y2-y1});
  1632. this.selectees.each(function() {
  1633. var selectee = $.data(this, "selectable-item");
  1634. //prevent helper from being selected if appendTo: selectable
  1635. if (!selectee || selectee.element == element)
  1636. return;
  1637. var hit = false;
  1638. if (options.tolerance == 'touch') {
  1639. hit = ( !(selectee.left > x2 || selectee.right < x1 || selectee.top > y2 || selectee.bottom < y1) );
  1640. } else if (options.tolerance == 'fit') {
  1641. hit = (selectee.left > x1 && selectee.right < x2 && selectee.top > y1 && selectee.bottom < y2);
  1642. }
  1643. if (hit) {
  1644. // SELECT
  1645. if (selectee.selected) {
  1646. selectee.$element.removeClass('ui-selected');
  1647. selectee.selected = false;
  1648. }
  1649. if (selectee.unselecting) {
  1650. selectee.$element.removeClass('ui-unselecting');
  1651. selectee.unselecting = false;
  1652. }
  1653. if (!selectee.selecting) {
  1654. selectee.$element.addClass('ui-selecting');
  1655. selectee.selecting = true;
  1656. // selectable SELECTING callback
  1657. $(this.element).triggerHandler("selectableselecting", [ev, {
  1658. selectable: element,
  1659. selecting: selectee.element,
  1660. options: options
  1661. }], options.selecting);
  1662. }
  1663. } else {
  1664. // UNSELECT
  1665. if (selectee.selecting) {
  1666. if (ev.ctrlKey && selectee.startselected) {
  1667. selectee.$element.removeClass('ui-selecting');
  1668. selectee.selecting = false;
  1669. selectee.$element.addClass('ui-selected');
  1670. selectee.selected = true;
  1671. } else {
  1672. selectee.$element.removeClass('ui-selecting');
  1673. selectee.selecting = false;
  1674. if (selectee.startselected) {
  1675. selectee.$element.addClass('ui-unselecting');
  1676. selectee.unselecting = true;
  1677. }
  1678. // selectable UNSELECTING callback
  1679. $(this.element).triggerHandler("selectableunselecting", [ev, {
  1680. selectable: element,
  1681. unselecting: selectee.element,
  1682. options: options
  1683. }], options.unselecting);
  1684. }
  1685. }
  1686. if (selectee.selected) {
  1687. if (!ev.ctrlKey && !selectee.startselected) {
  1688. selectee.$element.removeClass('ui-selected');
  1689. selectee.selected = false;
  1690. selectee.$element.addClass('ui-unselecting');
  1691. selectee.unselecting = true;
  1692. // selectable UNSELECTING callback
  1693. $(this.element).triggerHandler("selectableunselecting", [ev, {
  1694. selectable: element,
  1695. unselecting: selectee.element,
  1696. options: options
  1697. }], options.unselecting);
  1698. }
  1699. }
  1700. }
  1701. });
  1702. },
  1703. stop: function(ev, element) {
  1704. this.dragged = false;
  1705. var options = this.options;
  1706. $('.ui-unselecting', this.element).each(function() {
  1707. var selectee = $.data(this, "selectable-item");
  1708. selectee.$element.removeClass('ui-unselecting');
  1709. selectee.unselecting = false;
  1710. selectee.startselected = false;
  1711. $(this.element).triggerHandler("selectableunselected", [ev, {
  1712. selectable: element,
  1713. unselected: selectee.element,
  1714. options: options
  1715. }], options.unselected);
  1716. });
  1717. $('.ui-selecting', this.element).each(function() {
  1718. var selectee = $.data(this, "selectable-item");
  1719. selectee.$element.removeClass('ui-selecting').addClass('ui-selected');
  1720. selectee.selecting = false;
  1721. selectee.selected = true;
  1722. selectee.startselected = true;
  1723. $(this.element).triggerHandler("selectableselected", [ev, {
  1724. selectable: element,
  1725. selected: selectee.element,
  1726. options: options
  1727. }], options.selected);
  1728. });
  1729. $(this.element).triggerHandler("selectablestop", [ev, {
  1730. selectable: element,
  1731. options: this.options
  1732. }], this.options.stop);
  1733. this.helper.remove();
  1734. }
  1735. });
  1736. $.ui.selectable.defaults = {
  1737. appendTo: 'body',
  1738. autoRefresh: true,
  1739. filter: '*',
  1740. tolerance: 'touch'
  1741. };
  1742. })(jQuery);
  1743. /*
  1744.  * jQuery UI Sortable
  1745.  *
  1746.  * Copyright (c) 2008 Paul Bakaus
  1747.  * Dual licensed under the MIT (MIT-LICENSE.txt)
  1748.  * and GPL (GPL-LICENSE.txt) licenses.
  1749.  * 
  1750.  * http://docs.jquery.com/UI/Sortables
  1751.  *
  1752.  * Depends:
  1753.  * ui.core.js
  1754.  *
  1755.  * Revision: $Id: ui.sortable.js 5433 2008-05-04 20:07:17Z joern.zaefferer $
  1756.  */
  1757. ;(function($) {
  1758. function contains(a, b) { 
  1759.     var safari2 = $.browser.safari && $.browser.version < 522; 
  1760.     if (a.contains && !safari2) { 
  1761.         return a.contains(b); 
  1762.     } 
  1763.     if (a.compareDocumentPosition) 
  1764.         return !!(a.compareDocumentPosition(b) & 16); 
  1765.     while (b = b.parentNode) 
  1766.           if (b == a) return true; 
  1767.     return false; 
  1768. };
  1769. $.widget("ui.sortable", {
  1770. init: function() {
  1771. var o = this.options;
  1772. this.containerCache = {};
  1773. this.element.addClass("ui-sortable");
  1774. //Get the items
  1775. this.refresh();
  1776. //Let's determine if the items are floating
  1777. this.floating = this.items.length ? (/left|right/).test(this.items[0].item.css('float')) : false;
  1778. //Let's determine the parent's offset
  1779. if(!(/(relative|absolute|fixed)/).test(this.element.css('position'))) this.element.css('position', 'relative');
  1780. this.offset = this.element.offset();
  1781. //Initialize mouse events for interaction
  1782. this.element.mouse({
  1783. executor: this,
  1784. delay: o.delay,
  1785. distance: o.distance || 1,
  1786. dragPrevention: o.prevention ? o.prevention.toLowerCase().split(',') : ['input','textarea','button','select','option'],
  1787. start: this.start,