KickJava   Java API By Example, From Geeks To Geeks.

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


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 GDevice {
17     public short gdRefNum;
18     public short gdID;
19     public short gdType;
20     public int gdITable;
21     public short gdResPref;
22     public int gdSearchProc;
23     public int gdCompProc;
24     public short gdFlags;
25     public int gdPMap;
26     public int gdRefCon;
27     public int gdNextGD;
28     //Rect gdRect;
29
public short left;
30     public short top;
31     public short right;
32     public short bottom;
33     public int gdMode;
34     public short gdCCBytes;
35     public short gdCCDepth;
36     public int gdCCXData;
37     public int gdCCXMask;
38     public int gdExt;
39     public static final int sizeof = 62;
40 }
41
Popular Tags