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.
69 lines
2.4 KiB
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 QHBoxLayout extends QBoxLayout {
|
|
protected QHBoxLayout(Class dummy){super((Class) null);}
|
|
public native QMetaObject metaObject();
|
|
public native String className();
|
|
public QHBoxLayout(QWidget parent, int border, int spacing, String name) {
|
|
super((Class) null);
|
|
newQHBoxLayout(parent,border,spacing,name);
|
|
}
|
|
private native void newQHBoxLayout(QWidget parent, int border, int spacing, String name);
|
|
public QHBoxLayout(QWidget parent, int border, int spacing) {
|
|
super((Class) null);
|
|
newQHBoxLayout(parent,border,spacing);
|
|
}
|
|
private native void newQHBoxLayout(QWidget parent, int border, int spacing);
|
|
public QHBoxLayout(QWidget parent, int border) {
|
|
super((Class) null);
|
|
newQHBoxLayout(parent,border);
|
|
}
|
|
private native void newQHBoxLayout(QWidget parent, int border);
|
|
public QHBoxLayout(QWidget parent) {
|
|
super((Class) null);
|
|
newQHBoxLayout(parent);
|
|
}
|
|
private native void newQHBoxLayout(QWidget parent);
|
|
public QHBoxLayout(QLayout parentLayout, int spacing, String name) {
|
|
super((Class) null);
|
|
newQHBoxLayout(parentLayout,spacing,name);
|
|
}
|
|
private native void newQHBoxLayout(QLayout parentLayout, int spacing, String name);
|
|
public QHBoxLayout(QLayout parentLayout, int spacing) {
|
|
super((Class) null);
|
|
newQHBoxLayout(parentLayout,spacing);
|
|
}
|
|
private native void newQHBoxLayout(QLayout parentLayout, int spacing);
|
|
public QHBoxLayout(QLayout parentLayout) {
|
|
super((Class) null);
|
|
newQHBoxLayout(parentLayout);
|
|
}
|
|
private native void newQHBoxLayout(QLayout parentLayout);
|
|
public QHBoxLayout(int spacing, String name) {
|
|
super((Class) null);
|
|
newQHBoxLayout(spacing,name);
|
|
}
|
|
private native void newQHBoxLayout(int spacing, String name);
|
|
public QHBoxLayout(int spacing) {
|
|
super((Class) null);
|
|
newQHBoxLayout(spacing);
|
|
}
|
|
private native void newQHBoxLayout(int spacing);
|
|
public QHBoxLayout() {
|
|
super((Class) null);
|
|
newQHBoxLayout();
|
|
}
|
|
private native void newQHBoxLayout();
|
|
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();
|
|
}
|