You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/qtjava/javalib/org/kde/qt/QGridLayout.java

143 lines
6.2 KiB
Java

//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();
}