comparison dwt/dnd/DragSourceListener.d @ 45:d8635bb48c7c

Merge with SWT 3.5
author Jacob Carlborg <doob@me.com>
date Mon, 01 Dec 2008 17:07:00 +0100
parents 380af2bdd8e5
children 52007db1276d
comparison
equal deleted inserted replaced
44:ca5e494f2bbf 45:d8635bb48c7c
6 * http://www.eclipse.org/legal/epl-v10.html 6 * http://www.eclipse.org/legal/epl-v10.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * IBM Corporation - initial API and implementation 9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/ 10 *******************************************************************************/
11 module dwt.dnd; 11 module dwt.dnd.DragSourceListener;
12
13 import dwt.dwthelper.utils;
12 14
13 import dwt.internal.DWTEventListener; 15 import dwt.internal.DWTEventListener;
14 16
15 /** 17 /**
16 * The <code>DragSourceListener</code> class provides event notification to the application for DragSource events. 18 * The <code>DragSourceListener</code> class provides event notification to the application for DragSource events.
22 * <p>After the drop has completed successfully or has been aborted, the application which defines the 24 * <p>After the drop has completed successfully or has been aborted, the application which defines the
23 * <code>DragSource</code> is required to take the appropriate cleanup action. In the case of a successful 25 * <code>DragSource</code> is required to take the appropriate cleanup action. In the case of a successful
24 * <b>move</b> operation, the application must remove the data that was transferred.</p> 26 * <b>move</b> operation, the application must remove the data that was transferred.</p>
25 * 27 *
26 */ 28 */
27 public interface DragSourceListener : DWTEventListener { 29 public interface DragSourceListener extends DWTEventListener {
28 30
29 /** 31 /**
30 * The user has begun the actions required to drag the widget. This event gives the application 32 * The user has begun the actions required to drag the widget. This event gives the application
31 * the chance to decide if a drag should be started. 33 * the chance to decide if a drag should be started.
32 * 34 *