comparison dwt/dnd/DNDEvent.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 b28f69fee882
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.DNDEvent;
12
13 import dwt.dwthelper.utils;
12 14
13 15
14 import dwt.graphics.*; 16 import dwt.graphics.Image;
15 import dwt.widgets.*; 17 import dwt.widgets.Event;
16 18
17 class DNDEvent : Event { 19 class DNDEvent extends Event {
18 public TransferData dataType; 20 public TransferData dataType;
19 public TransferData[] dataTypes; 21 public TransferData[] dataTypes;
20 public int operations; 22 public int operations;
21 public int feedback; 23 public int feedback;
22 public Image image; 24 public Image image;
25 public int offsetX;
26 public int offsetY;
23 } 27 }