KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > internal > photon > PtColorSelectInfo_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 PtColorSelectInfo_t {
15     public short flags;
16     public byte nselectors;
17     public byte ncolor_models;
18     public int color_models;
19     public int selectors;
20     public short pos_x;
21     public short pos_y;
22     public short size_w;
23     public short size_h;
24     public int palette;
25     public int accept_text;
26     public int dismiss_text;
27     public int accept_dismiss_text;
28     public int apply_f;
29     public int data;
30     public int rgb;
31     public int dialog;
32     public static final int sizeof = 52;
33 }
34
Popular Tags