summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QWhatsThis.java
blob: 685b59c0d90a864c215e02fba9392d6a6a4e31ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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();
}