summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QFontMetrics.java
blob: 6c1f61ea3f870528a6c41814f95cd3737a7e0f5e (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;

import org.kde.qt.Qt;

public class TQFontMetrics implements QtSupport {
	private long _qt;
	private boolean _allocatedInJavaWorld = true;
	protected TQFontMetrics(Class dummy){}

	public TQFontMetrics(TQFont arg1) {
		newTQFontMetrics(arg1);
	}
	private native void newTQFontMetrics(TQFont arg1);
	public TQFontMetrics(TQFont arg1, int arg2) {
		newTQFontMetrics(arg1,arg2);
	}
	private native void newTQFontMetrics(TQFont arg1, int arg2);
	public TQFontMetrics(TQFontMetrics arg1) {
		newTQFontMetrics(arg1);
	}
	private native void newTQFontMetrics(TQFontMetrics arg1);
	public native int ascent();
	public native int descent();
	public native int height();
	public native int leading();
	public native int lineSpacing();
	public native int minLeftBearing();
	public native int minRightBearing();
	public native int maxWidth();
	public native boolean inFont(char arg1);
	public native int leftBearing(char arg1);
	public native int rightBearing(char arg1);
	public native int width(String arg1, int len);
	public native int width(String arg1);
	public native int width(char arg1);
	public native int charWidth(String str, int pos);
	public native TQRect boundingRect(String arg1, int len);
	public native TQRect boundingRect(String arg1);
	public native TQRect boundingRect(char arg1);
	// TQRect boundingRect(int arg1,int arg2,int arg3,int arg4,int arg5,const TQString& arg6,int arg7,int arg8,int* arg9,TQTextParag** arg10); >>>> NOT CONVERTED
	public native TQRect boundingRect(int x, int y, int w, int h, int flags, String str, int len, int tabstops, int[] tabarray);
	public native TQRect boundingRect(int x, int y, int w, int h, int flags, String str, int len, int tabstops);
	public native TQRect boundingRect(int x, int y, int w, int h, int flags, String str, int len);
	public native TQRect boundingRect(int x, int y, int w, int h, int flags, String str);
	// TQSize size(int arg1,const TQString& arg2,int arg3,int arg4,int* arg5,TQTextParag** arg6); >>>> NOT CONVERTED
	public native TQSize size(int flags, String str, int len, int tabstops, int[] tabarray);
	public native TQSize size(int flags, String str, int len, int tabstops);
	public native TQSize size(int flags, String str, int len);
	public native TQSize size(int flags, String str);
	public native int underlinePos();
	public native int overlinePos();
	public native int strikeOutPos();
	public native int lineWidth();
	/** Deletes the wrapped C++ instance */
	protected native void finalize() throws InternalError;
	/** Delete the wrapped C++ instance ahead of finalize() */
	public native void dispose();
	/** Has the wrapped C++ instance been deleted? */
	public native boolean isDisposed();
}