summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/UtilFuncs.java
blob: afe935eaa7c9219f56f030a4241b47a63472396e (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
package org.eclipse.swt.widgets;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */

import org.eclipse.swt.*;
import org.eclipse.swt.graphics.*;
import org.eclipse.swt.internal.gtk.*;

/**
 * This class contains static helpers wrapping some common
 * widget-inspecific operations like get the size of a gtk widget.
 */
class UtilFuncs {

static int getFont(int widget) {
	/* FIXME */
	return 0;
}

static void setFont(int handle, int font) {
	/* FIXME */
}

}