KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > internal > motif > XGCValues


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.motif;
12
13  
14 public class XGCValues {
15     public int function;
16     public int plane_mask;
17     public int foreground;
18     public int background;
19     public int line_width;
20     public int line_style;
21     public int cap_style;
22     public int join_style;
23     public int fill_style;
24     public int fill_rule;
25     public int arc_mode;
26     public int tile;
27     public int stipple;
28     public int ts_x_origin;
29     public int ts_y_origin;
30     public int font;
31     public int subwindow_mode;
32     public int graphics_exposures;
33     public int clip_x_origin;
34     public int clip_y_origin;
35     public int clip_mask;
36     public int dash_offset;
37     public byte dashes;
38     public static final int sizeof = 92;
39 }
40
Popular Tags