Skip to main content
summaryrefslogtreecommitdiffstats
blob: 410257e4aff87c5fa7c3f70dadea58e173687a5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.eclipse.swt.graphics;

import org.eclipse.swt.*;

public final class GCData {
	public Device device;
	public Image image;
	public int display;
	public int drawable;
	public int foreground = -1;
	public int background = -1;
	public int fontList;
	public int colormap;
	public int clipRgn;
	public int lineStyle = SWT.LINE_SOLID;
	public int renderTable;
}

Back to the top