summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QBoxLayout.java
blob: 8e8fb0dc73ac576b3072a79700c736905ecd7d75 (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
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 QBoxLayout extends QLayout  {
	protected QBoxLayout(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 QMetaObject metaObject();
	public native String className();
	public QBoxLayout(QWidget parent, int arg2, int border, int spacing, String name) {
		super((Class) null);
		newQBoxLayout(parent,arg2,border,spacing,name);
	}
	private native void newQBoxLayout(QWidget parent, int arg2, int border, int spacing, String name);
	public QBoxLayout(QWidget parent, int arg2, int border, int spacing) {
		super((Class) null);
		newQBoxLayout(parent,arg2,border,spacing);
	}
	private native void newQBoxLayout(QWidget parent, int arg2, int border, int spacing);
	public QBoxLayout(QWidget parent, int arg2, int border) {
		super((Class) null);
		newQBoxLayout(parent,arg2,border);
	}
	private native void newQBoxLayout(QWidget parent, int arg2, int border);
	public QBoxLayout(QWidget parent, int arg2) {
		super((Class) null);
		newQBoxLayout(parent,arg2);
	}
	private native void newQBoxLayout(QWidget parent, int arg2);
	public QBoxLayout(QLayout parentLayout, int arg2, int spacing, String name) {
		super((Class) null);
		newQBoxLayout(parentLayout,arg2,spacing,name);
	}
	private native void newQBoxLayout(QLayout parentLayout, int arg2, int spacing, String name);
	public QBoxLayout(QLayout parentLayout, int arg2, int spacing) {
		super((Class) null);
		newQBoxLayout(parentLayout,arg2,spacing);
	}
	private native void newQBoxLayout(QLayout parentLayout, int arg2, int spacing);
	public QBoxLayout(QLayout parentLayout, int arg2) {
		super((Class) null);
		newQBoxLayout(parentLayout,arg2);
	}
	private native void newQBoxLayout(QLayout parentLayout, int arg2);
	public QBoxLayout(int arg1, int spacing, String name) {
		super((Class) null);
		newQBoxLayout(arg1,spacing,name);
	}
	private native void newQBoxLayout(int arg1, int spacing, String name);
	public QBoxLayout(int arg1, int spacing) {
		super((Class) null);
		newQBoxLayout(arg1,spacing);
	}
	private native void newQBoxLayout(int arg1, int spacing);
	public QBoxLayout(int arg1) {
		super((Class) null);
		newQBoxLayout(arg1);
	}
	private native void newQBoxLayout(int arg1);
	public native void addItem(QLayoutItemInterface 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(QWidget arg1, int stretch, int alignment);
	public native void addWidget(QWidget arg1, int stretch);
	public native void addWidget(QWidget arg1);
	public native void addLayout(QLayout layout, int stretch);
	public native void addLayout(QLayout 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, QWidget widget, int stretch, int alignment);
	public native void insertWidget(int index, QWidget widget, int stretch);
	public native void insertWidget(int index, QWidget widget);
	public native void insertLayout(int index, QLayout layout, int stretch);
	public native void insertLayout(int index, QLayout layout);
	public native boolean setStretchFactor(QWidget arg1, int stretch);
	public native boolean setStretchFactor(QLayout l, int stretch);
	public native QSize sizeHint();
	public native QSize minimumSize();
	public native QSize 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();
	// QLayoutIterator iterator(); >>>> NOT CONVERTED
	public native void setGeometry(QRect arg1);
	public native int findWidget(QWidget w);
	public static native String tr(String arg1, String arg2);
	public static native String tr(String arg1);
	public native void insertItem(int index, QLayoutItemInterface 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();
}