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/QVBoxLayout.java

69 lines
2.4 KiB
Java

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class QVBoxLayout extends QBoxLayout {
protected QVBoxLayout(Class dummy){super((Class) null);}
public native QMetaObject metaObject();
public native String className();
public QVBoxLayout(QWidget parent, int border, int spacing, String name) {
super((Class) null);
newQVBoxLayout(parent,border,spacing,name);
}
private native void newQVBoxLayout(QWidget parent, int border, int spacing, String name);
public QVBoxLayout(QWidget parent, int border, int spacing) {
super((Class) null);
newQVBoxLayout(parent,border,spacing);
}
private native void newQVBoxLayout(QWidget parent, int border, int spacing);
public QVBoxLayout(QWidget parent, int border) {
super((Class) null);
newQVBoxLayout(parent,border);
}
private native void newQVBoxLayout(QWidget parent, int border);
public QVBoxLayout(QWidget parent) {
super((Class) null);
newQVBoxLayout(parent);
}
private native void newQVBoxLayout(QWidget parent);
public QVBoxLayout(QLayout parentLayout, int spacing, String name) {
super((Class) null);
newQVBoxLayout(parentLayout,spacing,name);
}
private native void newQVBoxLayout(QLayout parentLayout, int spacing, String name);
public QVBoxLayout(QLayout parentLayout, int spacing) {
super((Class) null);
newQVBoxLayout(parentLayout,spacing);
}
private native void newQVBoxLayout(QLayout parentLayout, int spacing);
public QVBoxLayout(QLayout parentLayout) {
super((Class) null);
newQVBoxLayout(parentLayout);
}
private native void newQVBoxLayout(QLayout parentLayout);
public QVBoxLayout(int spacing, String name) {
super((Class) null);
newQVBoxLayout(spacing,name);
}
private native void newQVBoxLayout(int spacing, String name);
public QVBoxLayout(int spacing) {
super((Class) null);
newQVBoxLayout(spacing);
}
private native void newQVBoxLayout(int spacing);
public QVBoxLayout() {
super((Class) null);
newQVBoxLayout();
}
private native void newQVBoxLayout();
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();
}