blob: 3195ecfaf10c3994c84adc65d6f8fbc4a4b5cb7f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.internal.motif;
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;
}