summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/trinitydesktop/qt/TQBoxLayout.java
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/org/trinitydesktop/qt/TQBoxLayout.java')
-rw-r--r--qtjava/javalib/org/trinitydesktop/qt/TQBoxLayout.java109
1 files changed, 109 insertions, 0 deletions
diff --git a/qtjava/javalib/org/trinitydesktop/qt/TQBoxLayout.java b/qtjava/javalib/org/trinitydesktop/qt/TQBoxLayout.java
new file mode 100644
index 00000000..e922f5a2
--- /dev/null
+++ b/qtjava/javalib/org/trinitydesktop/qt/TQBoxLayout.java
@@ -0,0 +1,109 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.qt;
+
+import org.trinitydesktop.qt.Qt;
+
+public class TQBoxLayout extends TQLayout {
+ protected TQBoxLayout(Class dummy){super((Class) null);}
+ public static final int LeftToRight = 0;
+ public static final int RightToLeft = 1;
+ public static final int TopToBottom = 2;
+ public static final int BottomToTop = 3;
+ public static final int Down = TopToBottom;
+ public static final int Up = BottomToTop;
+
+ public native TQMetaObject metaObject();
+ public native String className();
+ public TQBoxLayout(TQWidget parent, int arg2, int border, int spacing, String name) {
+ super((Class) null);
+ newTQBoxLayout(parent,arg2,border,spacing,name);
+ }
+ private native void newTQBoxLayout(TQWidget parent, int arg2, int border, int spacing, String name);
+ public TQBoxLayout(TQWidget parent, int arg2, int border, int spacing) {
+ super((Class) null);
+ newTQBoxLayout(parent,arg2,border,spacing);
+ }
+ private native void newTQBoxLayout(TQWidget parent, int arg2, int border, int spacing);
+ public TQBoxLayout(TQWidget parent, int arg2, int border) {
+ super((Class) null);
+ newTQBoxLayout(parent,arg2,border);
+ }
+ private native void newTQBoxLayout(TQWidget parent, int arg2, int border);
+ public TQBoxLayout(TQWidget parent, int arg2) {
+ super((Class) null);
+ newTQBoxLayout(parent,arg2);
+ }
+ private native void newTQBoxLayout(TQWidget parent, int arg2);
+ public TQBoxLayout(TQLayout parentLayout, int arg2, int spacing, String name) {
+ super((Class) null);
+ newTQBoxLayout(parentLayout,arg2,spacing,name);
+ }
+ private native void newTQBoxLayout(TQLayout parentLayout, int arg2, int spacing, String name);
+ public TQBoxLayout(TQLayout parentLayout, int arg2, int spacing) {
+ super((Class) null);
+ newTQBoxLayout(parentLayout,arg2,spacing);
+ }
+ private native void newTQBoxLayout(TQLayout parentLayout, int arg2, int spacing);
+ public TQBoxLayout(TQLayout parentLayout, int arg2) {
+ super((Class) null);
+ newTQBoxLayout(parentLayout,arg2);
+ }
+ private native void newTQBoxLayout(TQLayout parentLayout, int arg2);
+ public TQBoxLayout(int arg1, int spacing, String name) {
+ super((Class) null);
+ newTQBoxLayout(arg1,spacing,name);
+ }
+ private native void newTQBoxLayout(int arg1, int spacing, String name);
+ public TQBoxLayout(int arg1, int spacing) {
+ super((Class) null);
+ newTQBoxLayout(arg1,spacing);
+ }
+ private native void newTQBoxLayout(int arg1, int spacing);
+ public TQBoxLayout(int arg1) {
+ super((Class) null);
+ newTQBoxLayout(arg1);
+ }
+ private native void newTQBoxLayout(int arg1);
+ public native void addItem(TQLayoutItemInterface arg1);
+ public native int direction();
+ public native void setDirection(int arg1);
+ public native void addSpacing(int size);
+ public native void addStretch(int stretch);
+ public native void addStretch();
+ public native void addWidget(TQWidget arg1, int stretch, int alignment);
+ public native void addWidget(TQWidget arg1, int stretch);
+ public native void addWidget(TQWidget arg1);
+ public native void addLayout(TQLayout layout, int stretch);
+ public native void addLayout(TQLayout layout);
+ public native void addStrut(int arg1);
+ public native void insertSpacing(int index, int size);
+ public native void insertStretch(int index, int stretch);
+ public native void insertStretch(int index);
+ public native void insertWidget(int index, TQWidget widget, int stretch, int alignment);
+ public native void insertWidget(int index, TQWidget widget, int stretch);
+ public native void insertWidget(int index, TQWidget widget);
+ public native void insertLayout(int index, TQLayout layout, int stretch);
+ public native void insertLayout(int index, TQLayout layout);
+ public native boolean setStretchFactor(TQWidget arg1, int stretch);
+ public native boolean setStretchFactor(TQLayout l, int stretch);
+ public native TQSize sizeHint();
+ public native TQSize minimumSize();
+ public native TQSize maximumSize();
+ public native boolean hasHeightForWidth();
+ public native int heightForWidth(int arg1);
+ public native int minimumHeightForWidth(int arg1);
+ public native int expanding();
+ public native void invalidate();
+ // TQLayoutIterator iterator(); >>>> NOT CONVERTED
+ public native void setGeometry(TQRect arg1);
+ public native int findWidget(TQWidget w);
+ public static native String tr(String arg1, String arg2);
+ public static native String tr(String arg1);
+ public native void insertItem(int index, TQLayoutItemInterface arg2);
+ /** 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();
+}