示例#1
0
 public bool beforeInvalidDrop(DragDrop target) { throw new Exception(); }
示例#2
0
 public bool beforeInvalidDrop(DragDrop target, HtmlDomEventArgs e, string id) { throw new Exception(); }
示例#3
0
 public static object getLocation(DragDrop oDD) { throw new Exception(); }
示例#4
0
 public bool beforeDragOver(DragDrop target, HtmlDomEventArgs e) { throw new Exception(); }
示例#5
0
		/// <summary>
		///     Returns true if the specified dd target is a legal target for
		///     the specifice drag obj
		///     dd obj
		/// </summary>
		/// <param name="the">drag obj</param>
		/// <param name="the2">target</param>
		/// <returns>boolean</returns>
		public extern static void isLegalTarget(DragDrop the, DragDrop the2);
示例#6
0
		/// <summary>
		///     Returns a Region object containing the drag and drop element's position
		///     and size, including the padding configured for it
		///     location for
		///     the element occupies, including any padding
		///     the instance is configured for.
		/// </summary>
		/// <param name="oDD">the drag and drop object to get the</param>
		/// <returns>Ext.lib.Region</returns>
		public extern static void getLocation(DragDrop oDD);
示例#7
0
 public void afterDragOut(DragDrop target, HtmlDomEventArgs e) { throw new Exception(); }
示例#8
0
		/// <summary>
		///     Returns the drag and drop instances that are in all groups the
		///     passed in instance belongs to.
		/// </summary>
		/// <param name="p_oDD">the obj to get related data for</param>
		/// <returns>DragDrop[]</returns>
		public extern static void getRelated(DragDrop p_oDD);
示例#9
0
 public static void regDragDrop(DragDrop oDD) { throw new Exception(); }
示例#10
0
 public static void regDragDrop(DragDrop oDD, string sGroup) { throw new Exception(); }
示例#11
0
 public static bool isLegalTarget(DragDrop the, DragDrop the2) { throw new Exception(); }
示例#12
0
 public static DragDrop getRelated(DragDrop p_oDD, bool bTargetsOnly) { throw new Exception(); }
示例#13
0
 public static DragDrop getRelated(DragDrop p_oDD) { throw new Exception(); }
示例#14
0
		/// <summary>
		///     Each DragDrop instance must be registered with the DragDropMgr.
		///     This is executed in DragDrop.init()
		/// </summary>
		/// <param name="oDD">the DragDrop object to register</param>
		/// <returns></returns>
		public extern static void regDragDrop(DragDrop oDD);
示例#15
0
 public void afterDragOver(DragDrop target) { throw new Exception(); }
示例#16
0
		/// <summary>
		///     Each DragDrop instance must be registered with the DragDropMgr.
		///     This is executed in DragDrop.init()
		/// </summary>
		/// <param name="oDD">the DragDrop object to register</param>
		/// <param name="sGroup">the name of the group this element belongs to</param>
		/// <returns></returns>
		public extern static void regDragDrop(DragDrop oDD, string sGroup);
示例#17
0
 public void afterDragOver(DragDrop target, HtmlDomEventArgs e, string id) { throw new Exception(); }
示例#18
0
		/// <summary>
		///     Returns the drag and drop instances that are in all groups the
		///     passed in instance belongs to.
		/// </summary>
		/// <param name="p_oDD">the obj to get related data for</param>
		/// <param name="bTargetsOnly">if true, only return targetable objs</param>
		/// <returns>DragDrop[]</returns>
		public extern static void getRelated(DragDrop p_oDD, bool bTargetsOnly);
示例#19
0
 public bool beforeDragEnter(DragDrop target, HtmlDomEventArgs e, string id) { throw new Exception(); }
示例#20
0
		/// <summary>
		///     Helper function for getting the best match from the list of drag
		///     and drop objects returned by the drag and drop events when we are
		///     in INTERSECT mode.  It returns either the first object that the
		///     cursor is over, or the object that has the greatest overlap with
		///     the dragged element.
		///     targeted
		/// </summary>
		/// <param name="dds">The array of drag and drop objects</param>
		/// <returns>DragDrop</returns>
		public extern static void getBestMatch(DragDrop[] dds);
示例#21
0
 public bool beforeDragOver(DragDrop target) { throw new Exception(); }
示例#22
0
 /// <summary>
 /// Fired when this object is clicked
 /// @method handleMouseDown
 /// @param {Event} e
 /// @param {Ext.dd.DragDrop} oDD the clicked dd object (this dd obj)
 /// @private
 /// </summary>
 public void handleMouseDown(object e, DragDrop oDD) { }
示例#23
0
 public static DragDrop getBestMatch(DragDrop dds) { throw new Exception(); }