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.
60 lines
3.3 KiB
60 lines
3.3 KiB
15 years ago
|
//Auto-generated by kalyptus. DO NOT EDIT.
|
||
11 years ago
|
package org.trinitydesktop.qt;
|
||
15 years ago
|
|
||
11 years ago
|
import org.trinitydesktop.qt.Qt;
|
||
15 years ago
|
|
||
13 years ago
|
public class TQSimpleRichText implements QtSupport {
|
||
15 years ago
|
private long _qt;
|
||
|
private boolean _allocatedInJavaWorld = true;
|
||
13 years ago
|
protected TQSimpleRichText(Class dummy){}
|
||
15 years ago
|
|
||
13 years ago
|
public TQSimpleRichText(String text, TQFont fnt, String context, TQStyleSheet sheet) {
|
||
|
newTQSimpleRichText(text,fnt,context,sheet);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQSimpleRichText(String text, TQFont fnt, String context, TQStyleSheet sheet);
|
||
|
public TQSimpleRichText(String text, TQFont fnt, String context) {
|
||
|
newTQSimpleRichText(text,fnt,context);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQSimpleRichText(String text, TQFont fnt, String context);
|
||
|
public TQSimpleRichText(String text, TQFont fnt) {
|
||
|
newTQSimpleRichText(text,fnt);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQSimpleRichText(String text, TQFont fnt);
|
||
|
public TQSimpleRichText(String text, TQFont fnt, String context, TQStyleSheet sheet, TQMimeSourceFactory factory, int pageBreak, TQColor linkColor, boolean linkUnderline) {
|
||
|
newTQSimpleRichText(text,fnt,context,sheet,factory,pageBreak,linkColor,linkUnderline);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQSimpleRichText(String text, TQFont fnt, String context, TQStyleSheet sheet, TQMimeSourceFactory factory, int pageBreak, TQColor linkColor, boolean linkUnderline);
|
||
|
public TQSimpleRichText(String text, TQFont fnt, String context, TQStyleSheet sheet, TQMimeSourceFactory factory, int pageBreak, TQColor linkColor) {
|
||
|
newTQSimpleRichText(text,fnt,context,sheet,factory,pageBreak,linkColor);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQSimpleRichText(String text, TQFont fnt, String context, TQStyleSheet sheet, TQMimeSourceFactory factory, int pageBreak, TQColor linkColor);
|
||
|
public TQSimpleRichText(String text, TQFont fnt, String context, TQStyleSheet sheet, TQMimeSourceFactory factory, int pageBreak) {
|
||
|
newTQSimpleRichText(text,fnt,context,sheet,factory,pageBreak);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQSimpleRichText(String text, TQFont fnt, String context, TQStyleSheet sheet, TQMimeSourceFactory factory, int pageBreak);
|
||
|
public TQSimpleRichText(String text, TQFont fnt, String context, TQStyleSheet sheet, TQMimeSourceFactory factory) {
|
||
|
newTQSimpleRichText(text,fnt,context,sheet,factory);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQSimpleRichText(String text, TQFont fnt, String context, TQStyleSheet sheet, TQMimeSourceFactory factory);
|
||
15 years ago
|
public native void setWidth(int arg1);
|
||
13 years ago
|
public native void setWidth(TQPainter arg1, int arg2);
|
||
|
public native void setDefaultFont(TQFont f);
|
||
15 years ago
|
public native int width();
|
||
|
public native int widthUsed();
|
||
|
public native int height();
|
||
|
public native void adjustSize();
|
||
13 years ago
|
public native void draw(TQPainter p, int x, int y, TQRect clipRect, TQColorGroup cg, TQBrush paper);
|
||
|
public native void draw(TQPainter p, int x, int y, TQRect clipRect, TQColorGroup cg);
|
||
|
public native void draw(TQPainter p, int x, int y, TQRegion clipRegion, TQColorGroup cg, TQBrush paper);
|
||
|
public native void draw(TQPainter p, int x, int y, TQRegion clipRegion, TQColorGroup cg);
|
||
15 years ago
|
public native String context();
|
||
13 years ago
|
public native String anchorAt(TQPoint pos);
|
||
|
public native boolean inText(TQPoint pos);
|
||
15 years ago
|
/** 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();
|
||
|
}
|