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 TQSpacerItem extends TQLayoutItem {
|
|
protected TQSpacerItem(Class dummy){super((Class) null);}
|
|
public TQSpacerItem(int w, int h, int hData, int vData) {
|
|
super((Class) null);
|
|
newTQSpacerItem(w,h,hData,vData);
|
|
}
|
|
private native void newTQSpacerItem(int w, int h, int hData, int vData);
|
|
public TQSpacerItem(int w, int h, int hData) {
|
|
super((Class) null);
|
|
newTQSpacerItem(w,h,hData);
|
|
}
|
|
private native void newTQSpacerItem(int w, int h, int hData);
|
|
public TQSpacerItem(int w, int h) {
|
|
super((Class) null);
|
|
newTQSpacerItem(w,h);
|
|
}
|
|
private native void newTQSpacerItem(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 TQSize sizeHint();
|
|
public native TQSize minimumSize();
|
|
public native TQSize maximumSize();
|
|
public native int expanding();
|
|
public native boolean isEmpty();
|
|
public native void setGeometry(TQRect arg1);
|
|
public native TQRect geometry();
|
|
public native TQSpacerItem 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();
|
|
}
|