Skip to main content
summaryrefslogtreecommitdiffstats
blob: f021841ba1d9d99ed0d456ad1f0e8e23811e8e8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.eclipse.swt.graphics;

/*
 * Licensed Materials - Property of IBM,
 * (c) Copyright IBM Corp. 1998, 2001  All Rights Reserved
 */

import org.eclipse.swt.*;

public final class GCData {
	public Device device;
	public Image image;
	public int rid;
	public int widget, topWidget;
	public int foreground = -1;
	public int background = -1;
	public byte[] font;
	public boolean xorMode;
	public int lineStyle = SWT.LINE_SOLID;
	public int lineWidth = 1;
	public int clipRectsCount;
	public int clipRects;
}

Back to the top