From 90825e2392b2d70e43c7a25b8a3752299a933894 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- qtjava/javalib/org/kde/qt/QVBoxLayout.java | 68 ++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 qtjava/javalib/org/kde/qt/QVBoxLayout.java (limited to 'qtjava/javalib/org/kde/qt/QVBoxLayout.java') 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(); +} -- cgit v1.2.1