KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > internal > carbon > MenuTrackingData


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

13 package org.eclipse.swt.internal.carbon;
14
15  
16 public class MenuTrackingData {
17     public int menu;
18     public short itemSelected;
19     public short itemUnderMouse;
20 // Rect itemRect;
21
public short top;
22     public short left;
23     public short bottom;
24     public short right;
25     public int virtualMenuTop;
26     public int virtualMenuBottom;
27     public static int sizeof = 24;
28 }
29
Popular Tags