diff options
Diffstat (limited to 'qtjava/javalib/org/kde/qt/QWhatsThis.java')
-rw-r--r-- | qtjava/javalib/org/kde/qt/QWhatsThis.java | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/QWhatsThis.java b/qtjava/javalib/org/kde/qt/QWhatsThis.java new file mode 100644 index 00000000..685b59c0 --- /dev/null +++ b/qtjava/javalib/org/kde/qt/QWhatsThis.java @@ -0,0 +1,37 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.qt; + +import org.kde.qt.Qt; + +public class QWhatsThis extends Qt { + protected QWhatsThis(Class dummy){super((Class) null);} + public QWhatsThis(QWidget arg1) { + super((Class) null); + newQWhatsThis(arg1); + } + private native void newQWhatsThis(QWidget arg1); + public native String text(QPoint arg1); + public native boolean clicked(String href); + public static native void setFont(QFont font); + public static native void add(QWidget arg1, String arg2); + public static native void remove(QWidget arg1); + public static native String textFor(QWidget arg1, QPoint pos, boolean includeParents); + public static native String textFor(QWidget arg1, QPoint pos); + public static native String textFor(QWidget arg1); + public static native QToolButton whatsThisButton(QWidget parent); + public static native void enterWhatsThisMode(); + public static native boolean inWhatsThisMode(); + public static native void leaveWhatsThisMode(String arg1, QPoint pos, QWidget w); + public static native void leaveWhatsThisMode(String arg1, QPoint pos); + public static native void leaveWhatsThisMode(String arg1); + public static native void leaveWhatsThisMode(); + public static native void display(String text, QPoint pos, QWidget w); + public static native void display(String text, QPoint pos); + public static native void display(String text); + /** 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(); +} |