summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/photon/org/eclipse/swt/internal/photon/PhCursorInfo_t.java
blob: 83088b1031e903b538f5ef2bcbd6dba9ed8298c9 (plain)
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
35
36
37
38
39
40
41
42
43
44
/*******************************************************************************
 * 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.photon;


public class PhCursorInfo_t {
//	PhPoint_t pos;
	public short pos_x;
	public short pos_y;
	public int region;
	public int ig_region;
	public int color;
//	PhPoint_t last_press;
	public short last_press_x;
	public short last_press_y;
	public int msec;
//	PhPoint_t steady;
	public int steady_x;
	public int steady_y;
	public int dragger;
//	PhRect_t drag_boundary;
	public short drag_boundary_xUL;
	public short drag_boundary_yUL;
	public short drag_boundary_xLR;
	public short drag_boundary_yLR;
	public int phantom_rid;
	public short type;
	public short ig;
	public short button_state;
	public byte click_count;
	public byte zero10, zero11,zero12;
	public int key_mods;
	public int zero2;
	public static final int sizeof = 60;

}