summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QGridLayout.java
blob: de127be350b8c1db6e1470a2ee3eae1a9b57031f (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 TQGridLayout extends TQLayout  {
	protected TQGridLayout(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 TQMetaObject metaObject();
	public native String className();
	public TQGridLayout(TQWidget parent, int nRows, int nCols, int border, int spacing, String name) {
		super((Class) null);
		newTQGridLayout(parent,nRows,nCols,border,spacing,name);
	}
	private native void newTQGridLayout(TQWidget parent, int nRows, int nCols, int border, int spacing, String name);
	public TQGridLayout(TQWidget parent, int nRows, int nCols, int border, int spacing) {
		super((Class) null);
		newTQGridLayout(parent,nRows,nCols,border,spacing);
	}
	private native void newTQGridLayout(TQWidget parent, int nRows, int nCols, int border, int spacing);
	public TQGridLayout(TQWidget parent, int nRows, int nCols, int border) {
		super((Class) null);
		newTQGridLayout(parent,nRows,nCols,border);
	}
	private native void newTQGridLayout(TQWidget parent, int nRows, int nCols, int border);
	public TQGridLayout(TQWidget parent, int nRows, int nCols) {
		super((Class) null);
		newTQGridLayout(parent,nRows,nCols);
	}
	private native void newTQGridLayout(TQWidget parent, int nRows, int nCols);
	public TQGridLayout(TQWidget parent, int nRows) {
		super((Class) null);
		newTQGridLayout(parent,nRows);
	}
	private native void newTQGridLayout(TQWidget parent, int nRows);
	public TQGridLayout(TQWidget parent) {
		super((Class) null);
		newTQGridLayout(parent);
	}
	private native void newTQGridLayout(TQWidget parent);
	public TQGridLayout(int nRows, int nCols, int spacing, String name) {
		super((Class) null);
		newTQGridLayout(nRows,nCols,spacing,name);
	}
	private native void newTQGridLayout(int nRows, int nCols, int spacing, String name);
	public TQGridLayout(int nRows, int nCols, int spacing) {
		super((Class) null);
		newTQGridLayout(nRows,nCols,spacing);
	}
	private native void newTQGridLayout(int nRows, int nCols, int spacing);
	public TQGridLayout(int nRows, int nCols) {
		super((Class) null);
		newTQGridLayout(nRows,nCols);
	}
	private native void newTQGridLayout(int nRows, int nCols);
	public TQGridLayout(int nRows) {
		super((Class) null);
		newTQGridLayout(nRows);
	}
	private native void newTQGridLayout(int nRows);
	public TQGridLayout() {
		super((Class) null);
		newTQGridLayout();
	}
	private native void newTQGridLayout();
	public TQGridLayout(TQLayout parentLayout, int nRows, int nCols, int spacing, String name) {
		super((Class) null);
		newTQGridLayout(parentLayout,nRows,nCols,spacing,name);
	}
	private native void newTQGridLayout(TQLayout parentLayout, int nRows, int nCols, int spacing, String name);
	public TQGridLayout(TQLayout parentLayout, int nRows, int nCols, int spacing) {
		super((Class) null);
		newTQGridLayout(parentLayout,nRows,nCols,spacing);
	}
	private native void newTQGridLayout(TQLayout parentLayout, int nRows, int nCols, int spacing);
	public TQGridLayout(TQLayout parentLayout, int nRows, int nCols) {
		super((Class) null);
		newTQGridLayout(parentLayout,nRows,nCols);
	}
	private native void newTQGridLayout(TQLayout parentLayout, int nRows, int nCols);
	public TQGridLayout(TQLayout parentLayout, int nRows) {
		super((Class) null);
		newTQGridLayout(parentLayout,nRows);
	}
	private native void newTQGridLayout(TQLayout parentLayout, int nRows);
	public TQGridLayout(TQLayout parentLayout) {
		super((Class) null);
		newTQGridLayout(parentLayout);
	}
	private native void newTQGridLayout(TQLayout parentLayout);
	public native TQSize sizeHint();
	public native TQSize minimumSize();
	public native TQSize 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 TQRect 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(TQLayoutItemInterface arg1);
	public native void addItem(TQLayoutItemInterface item, int row, int col);
	public native void addMultiCell(TQLayoutItemInterface arg1, int fromRow, int toRow, int fromCol, int toCol, int align);
	public native void addMultiCell(TQLayoutItemInterface arg1, int fromRow, int toRow, int fromCol, int toCol);
	public native void addWidget(TQWidget arg1, int row, int col, int align);
	public native void addWidget(TQWidget arg1, int row, int col);
	public native void addMultiCellWidget(TQWidget arg1, int fromRow, int toRow, int fromCol, int toCol, int align);
	public native void addMultiCellWidget(TQWidget arg1, int fromRow, int toRow, int fromCol, int toCol);
	public native void addLayout(TQLayout layout, int row, int col);
	public native void addMultiCellLayout(TQLayout layout, int fromRow, int toRow, int fromCol, int toCol, int align);
	public native void addMultiCellLayout(TQLayout 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();
	// TQLayoutIterator iterator(); >>>> NOT CONVERTED
	public native void setGeometry(TQRect arg1);
	public static native String tr(String arg1, String arg2);
	public static native String tr(String arg1);
	protected native boolean findWidget(TQWidget w, int[] r, int[] c);
	protected native void add(TQLayoutItemInterface 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();
}