Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b8631b9293ecac1dd220b034408cd3ab32cd46d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*******************************************************************************
 * Copyright (c) 2000, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.internal.gtk;

 
public class XCrossingEvent extends XAnyEvent {
	/** @field cast=(Window) */
	public int /*long*/ root;
	/** @field cast=(Window) */
	public int /*long*/ subwindow;
	/** @field cast=(Time) */
	public int time;
	public int x;
	public int y;
	public int x_root;
	public int y_root;
	public int mode;
	public int detail;
	/** @field cast=(Bool) */
	public boolean same_screen;
	/** @field cast=(Bool) */
	public boolean focus;
	/** @field cast=(unsigned int) */
	public int state;
	public static final int sizeof =  OS.XCrossingEvent_sizeof();
}

Back to the top