KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > internal > photon > PhCursorInfo_t


1 /*******************************************************************************
2  * Copyright (c) 2000, 2003 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.swt.internal.photon;
12
13
14 public class PhCursorInfo_t {
15 // PhPoint_t pos;
16
public short pos_x;
17     public short pos_y;
18     public int region;
19     public int ig_region;
20     public int color;
21 // PhPoint_t last_press;
22
public short last_press_x;
23     public short last_press_y;
24     public int msec;
25 // PhPoint_t steady;
26
public short steady_x;
27     public short steady_y;
28     public int dragger;
29 // PhRect_t drag_boundary;
30
public short drag_boundary_ul_x;
31     public short drag_boundary_ul_y;
32     public short drag_boundary_lr_x;
33     public short drag_boundary_lr_y;
34     public int phantom_rid;
35     public short type;
36     public short ig;
37     public short button_state;
38     public byte click_count;
39     public byte zero1;
40     public int key_mods;
41     public int zero2;
42     public static final int sizeof = 60;
43 }
44
Popular Tags