blob: 5b7a9d1b5178bbe21a34572834876ea01899ff06 [file] [log] [blame]
Veronika Irvine32759702001-05-11 13:46:50 +00001package org.eclipse.swt.internal.motif;
2
3/*
Veronika Irvine6c0e3d72001-06-21 15:16:50 +00004 * (c) Copyright IBM Corp. 2000, 2001.
5 * All Rights Reserved
Veronika Irvine32759702001-05-11 13:46:50 +00006 */
7
8public class XmDropProcCallback {
9 public int reason; // the reason callback was called
10 public int event; // event structure that triggered callback
11 public int timeStamp; // timestamp of ;logical event
12 public int dragContext; // DragContext widget associated with operation
13 public short x; // x-coordinate of pointer
14 public short y; // y-coordinate of pointer
15 public byte dropSiteStatus; // valid or invalid
16 public byte operation; // current operation
17 public byte operations; // supported operations
18 public byte dropAction; // drop or help
19
20 public static final int sizeof = 24;
21}