You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.5 KiB
Java
46 lines
1.5 KiB
Java
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.kde.qt;
|
|
|
|
import org.kde.qt.Qt;
|
|
|
|
/**
|
|
See {@link QTextBrowserSignals} for signals emitted by QTextBrowser
|
|
*/
|
|
public class QTextBrowser extends QTextEdit {
|
|
protected QTextBrowser(Class dummy){super((Class) null);}
|
|
public native QMetaObject metaObject();
|
|
public native String className();
|
|
public QTextBrowser(QWidget parent, String name) {
|
|
super((Class) null);
|
|
newQTextBrowser(parent,name);
|
|
}
|
|
private native void newQTextBrowser(QWidget parent, String name);
|
|
public QTextBrowser(QWidget parent) {
|
|
super((Class) null);
|
|
newQTextBrowser(parent);
|
|
}
|
|
private native void newQTextBrowser(QWidget parent);
|
|
public QTextBrowser() {
|
|
super((Class) null);
|
|
newQTextBrowser();
|
|
}
|
|
private native void newQTextBrowser();
|
|
public native String source();
|
|
public native void setSource(String name);
|
|
public native void backward();
|
|
public native void forward();
|
|
public native void home();
|
|
public native void reload();
|
|
public native void setText(String txt);
|
|
public native void setText(String txt, String context);
|
|
public static native String tr(String arg1, String arg2);
|
|
public static native String tr(String arg1);
|
|
protected native void keyPressEvent(QKeyEvent e);
|
|
/** 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();
|
|
}
|