DropTarget.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:5k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.dd.DropTarget
  3.  * @extends Ext.dd.DDTarget
  4.  * A simple class that provides the basic implementation needed to make any element a drop target that can have
  5.  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
  6.  * @constructor
  7.  * @param {Mixed} el The container element
  8.  * @param {Object} config
  9.  */
  10. Ext.dd.DropTarget = function(el, config){
  11.     this.el = Ext.get(el);
  12.     
  13.     Ext.apply(this, config);
  14.     
  15.     if(this.containerScroll){
  16.         Ext.dd.ScrollManager.register(this.el);
  17.     }
  18.     
  19.     Ext.dd.DropTarget.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group, 
  20.           {isTarget: true});
  21. };
  22. Ext.extend(Ext.dd.DropTarget, Ext.dd.DDTarget, {
  23.     /**
  24.      * @cfg {String} ddGroup
  25.      * A named drag drop group to which this object belongs.  If a group is specified, then this object will only
  26.      * interact with other drag drop objects in the same group (defaults to undefined).
  27.      */
  28.     /**
  29.      * @cfg {String} overClass
  30.      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
  31.      */
  32.     /**
  33.      * @cfg {String} dropAllowed
  34.      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
  35.      */
  36.     dropAllowed : "x-dd-drop-ok",
  37.     /**
  38.      * @cfg {String} dropNotAllowed
  39.      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
  40.      */
  41.     dropNotAllowed : "x-dd-drop-nodrop",
  42.     // private
  43.     isTarget : true,
  44.     // private
  45.     isNotifyTarget : true,
  46.     /**
  47.      * The function a {@link Ext.dd.DragSource} calls once to notify this drop target that the source is now over the
  48.      * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
  49.      * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
  50.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop target
  51.      * @param {Event} e The event
  52.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  53.      * @return {String} status The CSS class that communicates the drop status back to the source so that the
  54.      * underlying {@link Ext.dd.StatusProxy} can be updated
  55.      */
  56.     notifyEnter : function(dd, e, data){
  57.         if(this.overClass){
  58.             this.el.addClass(this.overClass);
  59.         }
  60.         return this.dropAllowed;
  61.     },
  62.     /**
  63.      * The function a {@link Ext.dd.DragSource} calls continuously while it is being dragged over the target.
  64.      * This method will be called on every mouse movement while the drag source is over the drop target.
  65.      * This default implementation simply returns the dropAllowed config value.
  66.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop target
  67.      * @param {Event} e The event
  68.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  69.      * @return {String} status The CSS class that communicates the drop status back to the source so that the
  70.      * underlying {@link Ext.dd.StatusProxy} can be updated
  71.      */
  72.     notifyOver : function(dd, e, data){
  73.         return this.dropAllowed;
  74.     },
  75.     /**
  76.      * The function a {@link Ext.dd.DragSource} calls once to notify this drop target that the source has been dragged
  77.      * out of the target without dropping.  This default implementation simply removes the CSS class specified by
  78.      * overClass (if any) from the drop element.
  79.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop target
  80.      * @param {Event} e The event
  81.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  82.      */
  83.     notifyOut : function(dd, e, data){
  84.         if(this.overClass){
  85.             this.el.removeClass(this.overClass);
  86.         }
  87.     },
  88.     /**
  89.      * The function a {@link Ext.dd.DragSource} calls once to notify this drop target that the dragged item has
  90.      * been dropped on it.  This method has no default implementation and returns false, so you must provide an
  91.      * implementation that does something to process the drop event and returns true so that the drag source's
  92.      * repair action does not run.
  93.      * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop target
  94.      * @param {Event} e The event
  95.      * @param {Object} data An object containing arbitrary data supplied by the drag source
  96.      * @return {Boolean} True if the drop was valid, else false
  97.      */
  98.     notifyDrop : function(dd, e, data){
  99.         return false;
  100.     }
  101. });