summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/GdkGCValues.java
blob: 0bde74d92990f0635d8ac7bb5c4a5b8f90b9b4f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*******************************************************************************
 * Copyright (c) 2000, 2008 IBM Corporation and others. All rights reserved.
 * The contents of this file are made available under the terms
 * of the GNU Lesser General Public License (LGPL) Version 2.1 that
 * accompanies this distribution (lgpl-v21.txt).  The LGPL is also
 * available at http://www.gnu.org/licenses/lgpl.html.  If the version
 * of the LGPL at http://www.gnu.org is different to the version of
 * the LGPL accompanying this distribution and there is any conflict
 * between the two license versions, the terms of the LGPL accompanying
 * this distribution shall govern.
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.internal.gtk;


public class GdkGCValues {
	/** @field accessor=foreground.pixel,cast=(guint32) */
	public int foreground_pixel;
	/** @field accessor=foreground.red,cast=(guint16) */
	public short foreground_red;
	/** @field accessor=foreground.green,cast=(guint16) */
	public short foreground_green;
	/** @field accessor=foreground.blue,cast=(guint16) */
	public short foreground_blue;
	/** @field accessor=background.pixel,cast=(guint32) */
	public int background_pixel;
	/** @field accessor=background.red,cast=(guint16) */
	public short background_red;
	/** @field accessor=background.green,cast=(guint16) */
	public short background_green;
	/** @field accessor=background.blue,cast=(guint16) */
	public short background_blue;
	/** @field cast=(GdkFont *) */
	public long /*int*/ font;
	/** @field cast=(GdkFunction) */
	public long /*int*/ function;
	/** @field cast=(GdkFill) */
	public int fill;
	/** @field cast=(GdkPixmap *) */
	public long /*int*/ tile;
	/** @field cast=(GdkPixmap *) */
	public long /*int*/ stipple;
	/** @field cast=(GdkPixmap *) */
	public long /*int*/ clip_mask;
	/** @field cast=(GdkSubwindowMode) */
	public int subwindow_mode;
	/** @field cast=(gint) */
	public int ts_x_origin;
	/** @field cast=(gint) */
	public int ts_y_origin;
	/** @field cast=(gint) */
	public int clip_x_origin;
	/** @field cast=(gint) */
	public int clip_y_origin;
	/** @field cast=(gint) */
	public int graphics_exposures;
	/** @field cast=(gint) */
	public int line_width;
	/** @field cast=(GdkLineStyle) */
	public int line_style;
	/** @field cast=(GdkCapStyle) */
	public int cap_style;
	/** @field cast=(GdkJoinStyle) */
	public int join_style;
	public static final int sizeof = OS.GdkGCValues_sizeof();
}