KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > internal > gtk > GdkGCValues


1 /*******************************************************************************
2  * Copyright (c) 2000, 2004 IBM Corporation and others. All rights reserved.
3  * The contents of this file are made available under the terms
4  * of the GNU Lesser General Public License (LGPL) Version 2.1 that
5  * accompanies this distribution (lgpl-v21.txt). The LGPL is also
6  * available at http://www.gnu.org/licenses/lgpl.html. If the version
7  * of the LGPL at http://www.gnu.org is different to the version of
8  * the LGPL accompanying this distribution and there is any conflict
9  * between the two license versions, the terms of the LGPL accompanying
10  * this distribution shall govern.
11  *******************************************************************************/

12 package org.eclipse.swt.internal.gtk;
13
14
15 public class GdkGCValues {
16     public int foreground_pixel;
17     public short foreground_red;
18     public short foreground_green;
19     public short foreground_blue;
20     public int background_pixel;
21     public short background_red;
22     public short background_green;
23     public short background_blue;
24     public int /*long*/ font;
25     public int /*long*/ function;
26     public int fill;
27     public int /*long*/ tile;
28     public int /*long*/ stipple;
29     public int /*long*/ clip_mask;
30     public int subwindow_mode;
31     public int ts_x_origin;
32     public int ts_y_origin;
33     public int clip_x_origin;
34     public int clip_y_origin;
35     public int graphics_exposures;
36     public int line_width;
37     public int line_style;
38     public int cap_style;
39     public int join_style;
40     public static final int sizeof = OS.GdkGCValues_sizeof();
41 }
42
Popular Tags