diff 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
line wrap: on
line diff
--- a/dwt/dnd/DNDEvent.d	Tue Oct 21 15:20:04 2008 +0200
+++ b/dwt/dnd/DNDEvent.d	Mon Dec 01 17:07:00 2008 +0100
@@ -8,16 +8,20 @@
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
-module dwt.dnd;
+module dwt.dnd.DNDEvent;
+
+import dwt.dwthelper.utils;
 
 
-import dwt.graphics.*;
-import dwt.widgets.*;
+import dwt.graphics.Image;
+import dwt.widgets.Event;
 
-class DNDEvent : Event {
+class DNDEvent extends Event {
     public TransferData dataType;
     public TransferData[] dataTypes;
     public int operations;
     public int feedback;
     public Image image;
+    public int offsetX;
+    public int offsetY;
 }