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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class TQBoxLayout extends TQLayout {
protected TQBoxLayout(Class dummy){super((Class) null);}
public static final int LeftToRight = 0;
public static final int RightToLeft = 1;
public static final int TopToBottom = 2;
public static final int BottomToTop = 3;
public static final int Down = TopToBottom;
public static final int Up = BottomToTop;
public native TQMetaObject metaObject();
public native String className();
public TQBoxLayout(TQWidget parent, int arg2, int border, int spacing, String name) {
super((Class) null);
newTQBoxLayout(parent,arg2,border,spacing,name);
}
private native void newTQBoxLayout(TQWidget parent, int arg2, int border, int spacing, String name);
public TQBoxLayout(TQWidget parent, int arg2, int border, int spacing) {
super((Class) null);
newTQBoxLayout(parent,arg2,border,spacing);
}
private native void newTQBoxLayout(TQWidget parent, int arg2, int border, int spacing);
public TQBoxLayout(TQWidget parent, int arg2, int border) {
super((Class) null);
newTQBoxLayout(parent,arg2,border);
}
private native void newTQBoxLayout(TQWidget parent, int arg2, int border);
public TQBoxLayout(TQWidget parent, int arg2) {
super((Class) null);
newTQBoxLayout(parent,arg2);
}
private native void newTQBoxLayout(TQWidget parent, int arg2);
public TQBoxLayout(TQLayout parentLayout, int arg2, int spacing, String name) {
super((Class) null);
newTQBoxLayout(parentLayout,arg2,spacing,name);
}
private native void newTQBoxLayout(TQLayout parentLayout, int arg2, int spacing, String name);
public TQBoxLayout(TQLayout parentLayout, int arg2, int spacing) {
super((Class) null);
newTQBoxLayout(parentLayout,arg2,spacing);
}
private native void newTQBoxLayout(TQLayout parentLayout, int arg2, int spacing);
public TQBoxLayout(TQLayout parentLayout, int arg2) {
super((Class) null);
newTQBoxLayout(parentLayout,arg2);
}
private native void newTQBoxLayout(TQLayout parentLayout, int arg2);
public TQBoxLayout(int arg1, int spacing, String name) {
super((Class) null);
newTQBoxLayout(arg1,spacing,name);
}
private native void newTQBoxLayout(int arg1, int spacing, String name);
public TQBoxLayout(int arg1, int spacing) {
super((Class) null);
newTQBoxLayout(arg1,spacing);
}
private native void newTQBoxLayout(int arg1, int spacing);
public TQBoxLayout(int arg1) {
super((Class) null);
newTQBoxLayout(arg1);
}
private native void newTQBoxLayout(int arg1);
public native void addItem(TQLayoutItemInterface arg1);
public native int direction();
public native void setDirection(int arg1);
public native void addSpacing(int size);
public native void addStretch(int stretch);
public native void addStretch();
public native void addWidget(TQWidget arg1, int stretch, int alignment);
public native void addWidget(TQWidget arg1, int stretch);
public native void addWidget(TQWidget arg1);
public native void addLayout(TQLayout layout, int stretch);
public native void addLayout(TQLayout layout);
public native void addStrut(int arg1);
public native void insertSpacing(int index, int size);
public native void insertStretch(int index, int stretch);
public native void insertStretch(int index);
public native void insertWidget(int index, TQWidget widget, int stretch, int alignment);
public native void insertWidget(int index, TQWidget widget, int stretch);
public native void insertWidget(int index, TQWidget widget);
public native void insertLayout(int index, TQLayout layout, int stretch);
public native void insertLayout(int index, TQLayout layout);
public native boolean setStretchFactor(TQWidget arg1, int stretch);
public native boolean setStretchFactor(TQLayout l, int stretch);
public native TQSize sizeHint();
public native TQSize minimumSize();
public native TQSize maximumSize();
public native boolean hasHeightForWidth();
public native int heightForWidth(int arg1);
public native int minimumHeightForWidth(int arg1);
public native int expanding();
public native void invalidate();
// TQLayoutIterator iterator(); >>>> NOT CONVERTED
public native void setGeometry(TQRect arg1);
public native int findWidget(TQWidget w);
public static native String tr(String arg1, String arg2);
public static native String tr(String arg1);
public native void insertItem(int index, TQLayoutItemInterface arg2);
/** 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();
}
|