-<html>\r
-<head>\r
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> \r
- <title>The source code</title>\r
- <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
- <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
-</head>\r
-<body onload="prettyPrint();">\r
- <pre class="prettyprint lang-js">/*
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+ <title>The source code</title>
+ <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
+ <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
+</head>
+<body onload="prettyPrint();">
+ <pre class="prettyprint lang-js">/*!
+ * Ext JS Library 3.3.1
+ * Copyright(c) 2006-2010 Sencha Inc.
+ * licensing@sencha.com
+ * http://www.sencha.com/license
+ */
+/*
* These classes are derivatives of the similarly named classes in the YUI Library.
* The original license:
* Copyright (c) 2006, Yahoo! Inc. All rights reserved.
/**
* The id of the element that will be dragged. By default this is same
- * as the linked element , but could be changed to another element. Ex:
+ * as the linked element, but could be changed to another element. Ex:
* Ext.dd.DDProxy
* @property dragElId
* @type String
* Lock this instance
* @method lock
*/
- lock: function() { this.locked = true; },
+ lock: function() {
+ this.locked = true;
+ },
<div id="prop-Ext.dd.DragDrop-moveOnly"></div>/**
* When set to true, other DD objects in cooperating DDGroups do not receive
* Unlock this instace
* @method unlock
*/
- unlock: function() { this.locked = false; },
+ unlock: function() {
+ this.locked = false;
+ },
<div id="prop-Ext.dd.DragDrop-isTarget"></div>/**
* By default, all instances can be a drop target. This can be disabled by
* The up constraint
* @property minY
* @type int
- * @type int
* @private
*/
minY: 0,
primaryButtonOnly: true,
<div id="prop-Ext.dd.DragDrop-available"></div>/**
- * The availabe property is false until the linked dom element is accessible.
+ * The available property is false until the linked dom element is accessible.
* @property available
* @type boolean
*/
this.lastPageX = p[0];
this.lastPageY = p[1];
-
this.setStartPosition(p);
},
// set the initial element position
this.setStartPosition();
-
this.b4MouseDown(e);
this.onMouseDown(e);
* @param {boolean} maintainOffset
*/
resetConstraints: function() {
-
-
// Maintain offsets if necessary
if (this.initPageX || this.initPageX === 0) {
// figure out how much this thing has moved
* @private
*/
getTick: function(val, tickArray) {
-
if (!tickArray) {
// If tick interval is not defined, it is effectively 1 pixel,
// so we return the value passed to us.
};
})();
-<div id="prop-Ext.dd.DragDrop-Only"></div>/**
+/*
* The drag and drop utility provides a framework for building drag and drop
* applications. In addition to enabling drag and drop for specific elements,
* the drag and drop elements are tracked by the manager class, and the
* dimension is the DragDrop item group, the second the DragDrop
* object.
* @property ids
- * @type {string: string}
+ * @type String[]
* @private
* @static
*/
* if the element that generated the mousedown event is actually the
* handle and not the html element itself.
* @property handleIds
- * @type {string: string}
+ * @type String[]
* @private
* @static
*/
* Returns true if the specified dd target is a legal target for
* the specifice drag obj
* @method isLegalTarget
- * @param {DragDrop} the drag obj
- * @param {DragDrop} the target
+ * @param {DragDrop} oDD the drag obj
+ * @param {DragDrop} oTargetDD the target
* @return {boolean} true if the target is a legal target for the
* dd obj
* @static
*/
handleMouseDown: function(e, oDD) {
if(Ext.QuickTips){
- Ext.QuickTips.disable();
+ Ext.QuickTips.ddDisable();
}
if(this.dragCurrent){
// the original browser mouseup wasn't handled (e.g. outside FF browser window)
handleMouseUp: function(e) {
if(Ext.QuickTips){
- Ext.QuickTips.enable();
+ Ext.QuickTips.ddEnable();
}
if (! this.dragCurrent) {
return;
return (el) ? el.style : null;
},
- <div id="cls-DragDropMgr.ElementWrapper"></div>/**
+ <div id="cls-Ext.dd.DragDropMgr.ElementWrapper"></div>/**
* Inner class for cached elements
- * @class DragDropMgr.ElementWrapper
+ * @class Ext.dd.DragDropMgr.ElementWrapper
* @for DragDropMgr
* @private
* @deprecated
*/
ElementWrapper: function(el) {
- <div id="prop-DragDropMgr.ElementWrapper-el"></div>/**
+ <div id="prop-Ext.dd.DragDropMgr.ElementWrapper-el"></div>/**
* The element
* @property el
*/
this.el = el || null;
- <div id="prop-DragDropMgr.ElementWrapper-id"></div>/**
+ <div id="prop-Ext.dd.DragDropMgr.ElementWrapper-id"></div>/**
* The element id
* @property id
*/
this.id = this.el && el.id;
- <div id="prop-DragDropMgr.ElementWrapper-css"></div>/**
+ <div id="prop-Ext.dd.DragDropMgr.ElementWrapper-css"></div>/**
* A reference to the style property
* @property css
*/
this.css = this.el && el.style;
},
- <div id="method-DragDropMgr.ElementWrapper-getPosX"></div>/**
+ <div id="method-Ext.dd.DragDropMgr.ElementWrapper-getPosX"></div>/**
* Returns the X position of an html element
* @method getPosX
* @param el the element for which to get the position
return Ext.lib.Dom.getX(el);
},
- <div id="method-DragDropMgr.ElementWrapper-getPosY"></div>/**
+ <div id="method-Ext.dd.DragDropMgr.ElementWrapper-getPosY"></div>/**
* Returns the Y position of an html element
* @method getPosY
* @param el the element for which to get the position
return Ext.lib.Dom.getY(el);
},
- <div id="method-DragDropMgr.ElementWrapper-swapNode"></div>/**
+ <div id="method-Ext.dd.DragDropMgr.ElementWrapper-swapNode"></div>/**
* Swap two nodes. In IE, we use the native method, for others we
* emulate the IE behavior
* @method swapNode
return { top: t, left: l };
},
- <div id="method-DragDropMgr.ElementWrapper-getStyle"></div>/**
+ <div id="method-Ext.dd.DragDropMgr.ElementWrapper-getStyle"></div>/**
* Returns the specified element style property
* @method getStyle
* @param {HTMLElement} el the element
return Ext.fly(el).getStyle(styleProp);
},
- <div id="method-DragDropMgr.ElementWrapper-getScrollTop"></div>/**
+ <div id="method-Ext.dd.DragDropMgr.ElementWrapper-getScrollTop"></div>/**
* Gets the scrollTop
* @method getScrollTop
* @return {int} the document's scrollTop
* @static
*/
- getScrollTop: function () { return this.getScroll().top; },
+ getScrollTop: function () {
+ return this.getScroll().top;
+ },
- <div id="method-DragDropMgr.ElementWrapper-getScrollLeft"></div>/**
+ <div id="method-Ext.dd.DragDropMgr.ElementWrapper-getScrollLeft"></div>/**
* Gets the scrollLeft
* @method getScrollLeft
* @return {int} the document's scrollTop
* @static
*/
- getScrollLeft: function () { return this.getScroll().left; },
+ getScrollLeft: function () {
+ return this.getScroll().left;
+ },
- <div id="method-DragDropMgr.ElementWrapper-moveToEl"></div>/**
+ <div id="method-Ext.dd.DragDropMgr.ElementWrapper-moveToEl"></div>/**
* Sets the x/y position of an element to the location of the
* target element.
* @method moveToEl
Ext.lib.Dom.setXY(moveEl, aCoord);
},
- <div id="method-DragDropMgr.ElementWrapper-numericSort"></div>/**
+ <div id="method-Ext.dd.DragDropMgr.ElementWrapper-numericSort"></div>/**
* Numeric array sort function
* @method numericSort
* @static
*/
- numericSort: function(a, b) { return (a - b); },
+ numericSort: function(a, b) {
+ return (a - b);
+ },
/**
* Internal counter
}
},
- <div id="method-DragDropMgr.ElementWrapper-handleWasClicked"></div>/**
+ <div id="method-Ext.dd.DragDropMgr.ElementWrapper-handleWasClicked"></div>/**
* Recursively searches the immediate parent and all child nodes for
* the handle element in order to determine wheter or not it was
* clicked.
* @private
*/
getTargetCoord: function(iPageX, iPageY) {
-
-
var x = iPageX - this.deltaX;
var y = iPageY - this.deltaY;
toString: function() {
return ("DDTarget " + this.id);
}
-});</pre> \r
-</body>\r
+});</pre>
+</body>
</html>
\ No newline at end of file