Skip to main content
summaryrefslogtreecommitdiffstats
blob: f4a0c6f2544bbbc0599fa53e67bb380c37e24ef9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.eclipse.swt.internal.motif;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */
 
public class XmDragProcCallback {
	public int   reason;         // the reason callback was called
	public int   event;          // event structure that triggered callback
	public int   timeStamp;      // timestamp of ;logical event
	public int   dragContext;    // DragContext widget associated with operation
	public short x;              // x-coordinate of pointer
	public short y;              // y-coordinate of pointer
	public byte  dropSiteStatus; // valid or invalid
	public byte  operation;      // current operation
	public byte  operations;     // supported operations
	public byte  animate;        // toolkit or receiver does animation

	public static final int sizeof = 24;
}

Back to the top