You can not 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/TQVBoxLayout.java

69 lines
2.4 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class TQVBoxLayout extends TQBoxLayout {
protected TQVBoxLayout(Class dummy){super((Class) null);}
public native TQMetaObject metaObject();
public native String className();
public TQVBoxLayout(TQWidget parent, int border, int spacing, String name) {
super((Class) null);
newTQVBoxLayout(parent,border,spacing,name);
}
private native void newTQVBoxLayout(TQWidget parent, int border, int spacing, String name);
public TQVBoxLayout(TQWidget parent, int border, int spacing) {
super((Class) null);
newTQVBoxLayout(parent,border,spacing);
}
private native void newTQVBoxLayout(TQWidget parent, int border, int spacing);
public TQVBoxLayout(TQWidget parent, int border) {
super((Class) null);
newTQVBoxLayout(parent,border);
}
private native void newTQVBoxLayout(TQWidget parent, int border);
public TQVBoxLayout(TQWidget parent) {
super((Class) null);
newTQVBoxLayout(parent);
}
private native void newTQVBoxLayout(TQWidget parent);
public TQVBoxLayout(TQLayout parentLayout, int spacing, String name) {
super((Class) null);
newTQVBoxLayout(parentLayout,spacing,name);
}
private native void newTQVBoxLayout(TQLayout parentLayout, int spacing, String name);
public TQVBoxLayout(TQLayout parentLayout, int spacing) {
super((Class) null);
newTQVBoxLayout(parentLayout,spacing);
}
private native void newTQVBoxLayout(TQLayout parentLayout, int spacing);
public TQVBoxLayout(TQLayout parentLayout) {
super((Class) null);
newTQVBoxLayout(parentLayout);
}
private native void newTQVBoxLayout(TQLayout parentLayout);
public TQVBoxLayout(int spacing, String name) {
super((Class) null);
newTQVBoxLayout(spacing,name);
}
private native void newTQVBoxLayout(int spacing, String name);
public TQVBoxLayout(int spacing) {
super((Class) null);
newTQVBoxLayout(spacing);
}
private native void newTQVBoxLayout(int spacing);
public TQVBoxLayout() {
super((Class) null);
newTQVBoxLayout();
}
private native void newTQVBoxLayout();
public static native String tr(String arg1, String arg2);
public static native String tr(String arg1);
/** 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();
}