Changeset 213:36f5cb12e1a2 for dwt/dnd/DND.d
- Timestamp:
- 05/17/08 11:34:28 (8 months ago)
- Files:
-
- dwt/dnd/DND.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/dnd/DND.d
r212 r213 115 115 * DropTarget Event: the cursor has left the drop target boundaries OR the drop 116 116 * operation has been cancelled (such as by hitting ECS) OR the drop is about to 117 * happen (user has released the mous ebutotn over this target) (value is 2003).117 * happen (user has released the mouse button over this target) (value is 2003). 118 118 */ 119 119 public static const int DragLeave = 2003; … … 201 201 public static const int ERROR_INVALID_DATA = 2003; 202 202 203 /** 204 * DropTarget Key: The string constant for looking up the drop target 205 * for a control using <code>getData(String)</code>. When a drop target 206 * is created for a control, it is stored as a property in the control 207 * using <code>setData(String, Object)</code>. 208 * 209 * @since 3.4 210 */ 211 public static final String DROP_TARGET_KEY = "DropTarget"; //$NON-NLS-1$ 212 213 /** 214 * DragSource Key: The string constant for looking up the drag source 215 * for a control using <code>getData(String)</code>. When a drag source 216 * is created for a control, it is stored as a property in the control 217 * using <code>setData(String, Object)</code>. 218 * 219 * @since 3.4 220 */ 221 public static final String DRAG_SOURCE_KEY = "DragSource"; //$NON-NLS-1$ 203 222 204 223 static const String INIT_DRAG_MESSAGE = "Cannot initialize Drag"; //$NON-NLS-1$
