You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.7 KiB
62 lines
2.7 KiB
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.trinitydesktop.qt;
|
|
|
|
import org.trinitydesktop.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();
|
|
}
|