summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QGridLayout.java
blob: da08a17dab94e633a5983f2ff0b88e9364542e73 (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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;

import org.kde.qt.Qt;

public class QGridLayout extends QLayout  {
	protected QGridLayout(Class dummy){super((Class) null);}
	public static final int TopLeft = 0;
	public static final int TopRight = 1;
	public static final int BottomLeft = 2;
	public static final int BottomRight = 3;

	public native QMetaObject metaObject();
	public native String className();
	public QGridLayout(QWidget parent, int nRows, int nCols, int border, int spacing, String name) {
		super((Class) null);
		newQGridLayout(parent,nRows,nCols,border,spacing,name);
	}
	private native void newQGridLayout(QWidget parent, int nRows, int nCols, int border, int spacing, String name);
	public QGridLayout(QWidget parent, int nRows, int nCols, int border, int spacing) {
		super((Class) null);
		newQGridLayout(parent,nRows,nCols,border,spacing);
	}
	private native void newQGridLayout(QWidget parent, int nRows, int nCols, int border, int spacing);
	public QGridLayout(QWidget parent, int nRows, int nCols, int border) {
		super((Class) null);
		newQGridLayout(parent,nRows,nCols,border);
	}
	private native void newQGridLayout(QWidget parent, int nRows, int nCols, int border);
	public QGridLayout(QWidget parent, int nRows, int nCols) {
		super((Class) null);
		newQGridLayout(parent,nRows,nCols);
	}
	private native void newQGridLayout(QWidget parent, int nRows, int nCols);
	public QGridLayout(QWidget parent, int nRows) {
		super((Class) null);
		newQGridLayout(parent,nRows);
	}
	private native void newQGridLayout(QWidget parent, int nRows);
	public QGridLayout(QWidget parent) {
		super((Class) null);
		newQGridLayout(parent);
	}
	private native void newQGridLayout(QWidget parent);
	public QGridLayout(int nRows, int nCols, int spacing, String name) {
		super((Class) null);
		newQGridLayout(nRows,nCols,spacing,name);
	}
	private native void newQGridLayout(int nRows, int nCols, int spacing, String name);
	public QGridLayout(int nRows, int nCols, int spacing) {
		super((Class) null);
		newQGridLayout(nRows,nCols,spacing);
	}
	private native void newQGridLayout(int nRows, int nCols, int spacing);
	public QGridLayout(int nRows, int nCols) {
		super((Class) null);
		newQGridLayout(nRows,nCols);
	}
	private native void newQGridLayout(int nRows, int nCols);
	public QGridLayout(int nRows) {
		super((Class) null);
		newQGridLayout(nRows);
	}
	private native void newQGridLayout(int nRows);
	public QGridLayout() {
		super((Class) null);
		newQGridLayout();
	}
	private native void newQGridLayout();
	public QGridLayout(QLayout parentLayout, int nRows, int nCols, int spacing, String name) {
		super((Class) null);
		newQGridLayout(parentLayout,nRows,nCols,spacing,name);
	}
	private native void newQGridLayout(QLayout parentLayout, int nRows, int nCols, int spacing, String name);
	public QGridLayout(QLayout parentLayout, int nRows, int nCols, int spacing) {
		super((Class) null);
		newQGridLayout(parentLayout,nRows,nCols,spacing);
	}
	private native void newQGridLayout(QLayout parentLayout, int nRows, int nCols, int spacing);
	public QGridLayout(QLayout parentLayout, int nRows, int nCols) {
		super((Class) null);
		newQGridLayout(parentLayout,nRows,nCols);
	}
	private native void newQGridLayout(QLayout parentLayout, int nRows, int nCols);
	public QGridLayout(QLayout parentLayout, int nRows) {
		super((Class) null);
		newQGridLayout(parentLayout,nRows);
	}
	private native void newQGridLayout(QLayout parentLayout, int nRows);
	public QGridLayout(QLayout parentLayout) {
		super((Class) null);
		newQGridLayout(parentLayout);
	}
	private native void newQGridLayout(QLayout parentLayout);
	public native QSize sizeHint();
	public native QSize minimumSize();
	public native QSize maximumSize();
	public native void setRowStretch(int row, int stretch);
	public native void setColStretch(int col, int stretch);
	public native int rowStretch(int row);
	public native int colStretch(int col);
	public native void setRowSpacing(int row, int minSize);
	public native void setColSpacing(int col, int minSize);
	public native int rowSpacing(int row);
	public native int colSpacing(int col);
	public native int numRows();
	public native int numCols();
	public native QRect cellGeometry(int row, int col);
	public native boolean hasHeightForWidth();
	public native int heightForWidth(int arg1);
	public native int minimumHeightForWidth(int arg1);
	public native int expanding();
	public native void invalidate();
	public native void addItem(QLayoutItemInterface arg1);
	public native void addItem(QLayoutItemInterface item, int row, int col);
	public native void addMultiCell(QLayoutItemInterface arg1, int fromRow, int toRow, int fromCol, int toCol, int align);
	public native void addMultiCell(QLayoutItemInterface arg1, int fromRow, int toRow, int fromCol, int toCol);
	public native void addWidget(QWidget arg1, int row, int col, int align);
	public native void addWidget(QWidget arg1, int row, int col);
	public native void addMultiCellWidget(QWidget arg1, int fromRow, int toRow, int fromCol, int toCol, int align);
	public native void addMultiCellWidget(QWidget arg1, int fromRow, int toRow, int fromCol, int toCol);
	public native void addLayout(QLayout layout, int row, int col);
	public native void addMultiCellLayout(QLayout layout, int fromRow, int toRow, int fromCol, int toCol, int align);
	public native void addMultiCellLayout(QLayout layout, int fromRow, int toRow, int fromCol, int toCol);
	public native void addRowSpacing(int row, int minsize);
	public native void addColSpacing(int col, int minsize);
	public native void expand(int rows, int cols);
	public native void setOrigin(int arg1);
	public native int origin();
	// QLayoutIterator iterator(); >>>> NOT CONVERTED
	public native void setGeometry(QRect arg1);
	public static native String tr(String arg1, String arg2);
	public static native String tr(String arg1);
	protected native boolean findWidget(QWidget w, int[] r, int[] c);
	protected native void add(QLayoutItemInterface arg1, int row, int col);
	/** 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();
}