blob: ae776ec303211768eb8b53e123c5d0ea5a2e7260 [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 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;
}