blob: 5a77837585ed8415953e92b38c6ad893ce3a067a (
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
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class QToolTip extends Qt {
protected QToolTip(Class dummy){super((Class) null);}
public native QWidget parentWidget();
public native QToolTipGroup group();
public static native void add(QWidget arg1, String arg2);
public static native void add(QWidget arg1, String arg2, QToolTipGroup arg3, String arg4);
public static native void remove(QWidget arg1);
public static native void add(QWidget arg1, QRect arg2, String arg3);
public static native void add(QWidget arg1, QRect arg2, String arg3, QToolTipGroup arg4, String arg5);
public static native void remove(QWidget arg1, QRect arg2);
public static native String textFor(QWidget arg1, QPoint pos);
public static native String textFor(QWidget arg1);
public static native void hide();
public static native QFont font();
public static native void setFont(QFont arg1);
public static native QPalette palette();
public static native void setPalette(QPalette arg1);
public static native void setEnabled(boolean enable);
public static native boolean enabled();
public static native void setGloballyEnabled(boolean arg1);
public static native boolean isGloballyEnabled();
public static native void setWakeUpDelay(int arg1);
}
|