diff options
Diffstat (limited to 'qtjava/javalib/org/kde/qt/QVBoxLayout.java')
-rw-r--r-- | qtjava/javalib/org/kde/qt/QVBoxLayout.java | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/QVBoxLayout.java b/qtjava/javalib/org/kde/qt/QVBoxLayout.java new file mode 100644 index 00000000..75b327b2 --- /dev/null +++ b/qtjava/javalib/org/kde/qt/QVBoxLayout.java @@ -0,0 +1,68 @@ +//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(); +} |