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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class TQHBoxLayout extends TQBoxLayout {
protected TQHBoxLayout(Class dummy){super((Class) null);}
public native TQMetaObject metaObject();
public native String className();
public TQHBoxLayout(TQWidget parent, int border, int spacing, String name) {
super((Class) null);
newTQHBoxLayout(parent,border,spacing,name);
}
private native void newTQHBoxLayout(TQWidget parent, int border, int spacing, String name);
public TQHBoxLayout(TQWidget parent, int border, int spacing) {
super((Class) null);
newTQHBoxLayout(parent,border,spacing);
}
private native void newTQHBoxLayout(TQWidget parent, int border, int spacing);
public TQHBoxLayout(TQWidget parent, int border) {
super((Class) null);
newTQHBoxLayout(parent,border);
}
private native void newTQHBoxLayout(TQWidget parent, int border);
public TQHBoxLayout(TQWidget parent) {
super((Class) null);
newTQHBoxLayout(parent);
}
private native void newTQHBoxLayout(TQWidget parent);
public TQHBoxLayout(TQLayout parentLayout, int spacing, String name) {
super((Class) null);
newTQHBoxLayout(parentLayout,spacing,name);
}
private native void newTQHBoxLayout(TQLayout parentLayout, int spacing, String name);
public TQHBoxLayout(TQLayout parentLayout, int spacing) {
super((Class) null);
newTQHBoxLayout(parentLayout,spacing);
}
private native void newTQHBoxLayout(TQLayout parentLayout, int spacing);
public TQHBoxLayout(TQLayout parentLayout) {
super((Class) null);
newTQHBoxLayout(parentLayout);
}
private native void newTQHBoxLayout(TQLayout parentLayout);
public TQHBoxLayout(int spacing, String name) {
super((Class) null);
newTQHBoxLayout(spacing,name);
}
private native void newTQHBoxLayout(int spacing, String name);
public TQHBoxLayout(int spacing) {
super((Class) null);
newTQHBoxLayout(spacing);
}
private native void newTQHBoxLayout(int spacing);
public TQHBoxLayout() {
super((Class) null);
newTQHBoxLayout();
}
private native void newTQHBoxLayout();
public static native String tr(String arg1, String arg2);
public static native String tr(String arg1);
/** 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();
}
|