Show
Ignore:
Timestamp:
05/17/08 11:34:28 (8 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

Update to SWT 3.4M7

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/dnd/DND.d

    r212 r213  
    115115     * DropTarget Event: the cursor has left the drop target boundaries OR the drop 
    116116     * 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). 
    118118     */ 
    119119    public static const int DragLeave   = 2003; 
     
    201201    public static const int ERROR_INVALID_DATA = 2003; 
    202202 
     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$ 
    203222 
    204223    static const String INIT_DRAG_MESSAGE = "Cannot initialize Drag"; //$NON-NLS-1$