KickJava   Java API By Example, From Geeks To Geeks.

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


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 DataBrowserListViewHeaderDesc {
17     public int version;
18     public short minimumWidth;
19     public short maximumWidth;
20     public short titleOffset;
21     public int titleString;
22     public short initialOrder;
23     // ControlFontStyleRec btnFontStyle;
24
public short btnFontStyle_flags;
25     public short btnFontStyle_font;
26     public short btnFontStyle_size;
27     public short btnFontStyle_style;
28     public short btnFontStyle_mode;
29     public short btnFontStyle_just;
30     //RGBColor btnFontStyle_foreColor;
31
public short btnFontStyle_foreColor_red;
32     public short btnFontStyle_foreColor_green;
33     public short btnFontStyle_foreColor_blue;
34     //RGBColor btnFontStyle_backColor;
35
public short btnFontStyle_backColor_red;
36     public short btnFontStyle_backColor_green;
37     public short btnFontStyle_backColor_blue;
38     //ControlButtonContentInfo btnContentInfo;
39
public short btnContentInfo_contentType;
40     public int btnContentInfo_iconRef;
41     
42     public static final int sizeof = 46;
43 }
44
Popular Tags