blob: 5b7a9d1b5178bbe21a34572834876ea01899ff06 [file] [log] [blame]
package org.eclipse.swt.internal.motif;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
public class XmDropProcCallback {
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 dropAction; // drop or help
public static final int sizeof = 24;
}