KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > internal > photon > PhEvent_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 PhEvent_t {
15     public int type;
16     public short subtype;
17     public short processing_flags;
18 // public PhEventRegion_t emitter;
19
public int emitter_rid;
20     public int emitter_handle;
21 // public PhEventRegion_t collector;
22
public int collector_rid;
23     public int collector_handle;
24     public short input_group;
25     public short flags;
26     public int timestamp;
27 // public PhPoint_t translation;
28
public short translation_x;
29     public short translation_y;
30     public short num_rects;
31     public short data_len;
32     public static final int sizeof = 40;
33 }
34
Popular Tags