summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/TQTextBrowser.java
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/org/kde/qt/TQTextBrowser.java')
-rw-r--r--qtjava/javalib/org/kde/qt/TQTextBrowser.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/TQTextBrowser.java b/qtjava/javalib/org/kde/qt/TQTextBrowser.java
new file mode 100644
index 00000000..03181e5e
--- /dev/null
+++ b/qtjava/javalib/org/kde/qt/TQTextBrowser.java
@@ -0,0 +1,45 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.qt;
+
+import org.kde.qt.Qt;
+
+/**
+ See {@link TQTextBrowserSignals} for signals emitted by TQTextBrowser
+*/
+public class TQTextBrowser extends TQTextEdit {
+ protected TQTextBrowser(Class dummy){super((Class) null);}
+ public native TQMetaObject metaObject();
+ public native String className();
+ public TQTextBrowser(TQWidget parent, String name) {
+ super((Class) null);
+ newTQTextBrowser(parent,name);
+ }
+ private native void newTQTextBrowser(TQWidget parent, String name);
+ public TQTextBrowser(TQWidget parent) {
+ super((Class) null);
+ newTQTextBrowser(parent);
+ }
+ private native void newTQTextBrowser(TQWidget parent);
+ public TQTextBrowser() {
+ super((Class) null);
+ newTQTextBrowser();
+ }
+ private native void newTQTextBrowser();
+ 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(TQKeyEvent 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();
+}