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.
41 lines
1.4 KiB
Java
41 lines
1.4 KiB
Java
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.kde.qt;
|
|
|
|
import org.kde.qt.Qt;
|
|
|
|
public class QSpacerItem extends QLayoutItem {
|
|
protected QSpacerItem(Class dummy){super((Class) null);}
|
|
public QSpacerItem(int w, int h, int hData, int vData) {
|
|
super((Class) null);
|
|
newQSpacerItem(w,h,hData,vData);
|
|
}
|
|
private native void newQSpacerItem(int w, int h, int hData, int vData);
|
|
public QSpacerItem(int w, int h, int hData) {
|
|
super((Class) null);
|
|
newQSpacerItem(w,h,hData);
|
|
}
|
|
private native void newQSpacerItem(int w, int h, int hData);
|
|
public QSpacerItem(int w, int h) {
|
|
super((Class) null);
|
|
newQSpacerItem(w,h);
|
|
}
|
|
private native void newQSpacerItem(int w, int h);
|
|
public native void changeSize(int w, int h, int hData, int vData);
|
|
public native void changeSize(int w, int h, int hData);
|
|
public native void changeSize(int w, int h);
|
|
public native QSize sizeHint();
|
|
public native QSize minimumSize();
|
|
public native QSize maximumSize();
|
|
public native int expanding();
|
|
public native boolean isEmpty();
|
|
public native void setGeometry(QRect arg1);
|
|
public native QRect geometry();
|
|
public native QSpacerItem spacerItem();
|
|
/** 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();
|
|
}
|