blob: 28c2fd88355438e00335b6b94027eb9772a35e86 (
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
38
39
40
41
42
43
44
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class TQTab extends Qt {
protected TQTab(Class dummy){super((Class) null);}
public TQTab() {
super((Class) null);
newTQTab();
}
private native void newTQTab();
public TQTab(String text) {
super((Class) null);
newTQTab(text);
}
private native void newTQTab(String text);
public TQTab(TQIconSet icon, String text) {
super((Class) null);
newTQTab(icon,text);
}
private native void newTQTab(TQIconSet icon, String text);
public TQTab(TQIconSet icon) {
super((Class) null);
newTQTab(icon);
}
private native void newTQTab(TQIconSet icon);
public native void setText(String text);
public native String text();
public native void setIconSet(TQIconSet icon);
public native TQIconSet iconSet();
public native void setRect(TQRect rect);
public native TQRect rect();
public native void setEnabled(boolean enable);
public native boolean isEnabled();
public native void setIdentifier(int i);
public native int identifier();
/** 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();
}
|