summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/TQVBoxLayout.java
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/org/kde/qt/TQVBoxLayout.java')
-rw-r--r--qtjava/javalib/org/kde/qt/TQVBoxLayout.java68
1 files changed, 68 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/TQVBoxLayout.java b/qtjava/javalib/org/kde/qt/TQVBoxLayout.java
new file mode 100644
index 00000000..5beb1e39
--- /dev/null
+++ b/qtjava/javalib/org/kde/qt/TQVBoxLayout.java
@@ -0,0 +1,68 @@
+//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();
+}