summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QFontMetrics.java
blob: 6786b95ee44948913a05618a5ec8e36b01a83c80 (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 QFontMetrics implements QtSupport {
	private long _qt;
	private boolean _allocatedInJavaWorld = true;
	protected QFontMetrics(Class dummy){}

	public QFontMetrics(QFont arg1) {
		newQFontMetrics(arg1);
	}
	private native void newQFontMetrics(QFont arg1);
	public QFontMetrics(QFont arg1, int arg2) {
		newQFontMetrics(arg1,arg2);
	}
	private native void newQFontMetrics(QFont arg1, int arg2);
	public QFontMetrics(QFontMetrics arg1) {
		newQFontMetrics(arg1);
	}
	private native void newQFontMetrics(QFontMetrics 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 QRect boundingRect(String arg1, int len);
	public native QRect boundingRect(String arg1);
	public native QRect boundingRect(char arg1);
	// QRect boundingRect(int arg1,int arg2,int arg3,int arg4,int arg5,const QString& arg6,int arg7,int arg8,int* arg9,QTextParag** arg10); >>>> NOT CONVERTED
	public native QRect boundingRect(int x, int y, int w, int h, int flags, String str, int len, int tabstops, int[] tabarray);
	public native QRect boundingRect(int x, int y, int w, int h, int flags, String str, int len, int tabstops);
	public native QRect boundingRect(int x, int y, int w, int h, int flags, String str, int len);
	public native QRect boundingRect(int x, int y, int w, int h, int flags, String str);
	// QSize size(int arg1,const QString& arg2,int arg3,int arg4,int* arg5,QTextParag** arg6); >>>> NOT CONVERTED
	public native QSize size(int flags, String str, int len, int tabstops, int[] tabarray);
	public native QSize size(int flags, String str, int len, int tabstops);
	public native QSize size(int flags, String str, int len);
	public native QSize 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();
}