summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QBoxLayout.java
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/org/kde/qt/QBoxLayout.java')
-rw-r--r--qtjava/javalib/org/kde/qt/QBoxLayout.java109
1 files changed, 109 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/QBoxLayout.java b/qtjava/javalib/org/kde/qt/QBoxLayout.java
new file mode 100644
index 00000000..8e8fb0dc
--- /dev/null
+++ b/qtjava/javalib/org/kde/qt/QBoxLayout.java
@@ -0,0 +1,109 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.qt;
+
+import org.kde.qt.Qt;
+
+public class QBoxLayout extends QLayout {
+ protected QBoxLayout(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 QMetaObject metaObject();
+ public native String className();
+ public QBoxLayout(QWidget parent, int arg2, int border, int spacing, String name) {
+ super((Class) null);
+ newQBoxLayout(parent,arg2,border,spacing,name);
+ }
+ private native void newQBoxLayout(QWidget parent, int arg2, int border, int spacing, String name);
+ public QBoxLayout(QWidget parent, int arg2, int border, int spacing) {
+ super((Class) null);
+ newQBoxLayout(parent,arg2,border,spacing);
+ }
+ private native void newQBoxLayout(QWidget parent, int arg2, int border, int spacing);
+ public QBoxLayout(QWidget parent, int arg2, int border) {
+ super((Class) null);
+ newQBoxLayout(parent,arg2,border);
+ }
+ private native void newQBoxLayout(QWidget parent, int arg2, int border);
+ public QBoxLayout(QWidget parent, int arg2) {
+ super((Class) null);
+ newQBoxLayout(parent,arg2);
+ }
+ private native void newQBoxLayout(QWidget parent, int arg2);
+ public QBoxLayout(QLayout parentLayout, int arg2, int spacing, String name) {
+ super((Class) null);
+ newQBoxLayout(parentLayout,arg2,spacing,name);
+ }
+ private native void newQBoxLayout(QLayout parentLayout, int arg2, int spacing, String name);
+ public QBoxLayout(QLayout parentLayout, int arg2, int spacing) {
+ super((Class) null);
+ newQBoxLayout(parentLayout,arg2,spacing);
+ }
+ private native void newQBoxLayout(QLayout parentLayout, int arg2, int spacing);
+ public QBoxLayout(QLayout parentLayout, int arg2) {
+ super((Class) null);
+ newQBoxLayout(parentLayout,arg2);
+ }
+ private native void newQBoxLayout(QLayout parentLayout, int arg2);
+ public QBoxLayout(int arg1, int spacing, String name) {
+ super((Class) null);
+ newQBoxLayout(arg1,spacing,name);
+ }
+ private native void newQBoxLayout(int arg1, int spacing, String name);
+ public QBoxLayout(int arg1, int spacing) {
+ super((Class) null);
+ newQBoxLayout(arg1,spacing);
+ }
+ private native void newQBoxLayout(int arg1, int spacing);
+ public QBoxLayout(int arg1) {
+ super((Class) null);
+ newQBoxLayout(arg1);
+ }
+ private native void newQBoxLayout(int arg1);
+ public native void addItem(QLayoutItemInterface 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(QWidget arg1, int stretch, int alignment);
+ public native void addWidget(QWidget arg1, int stretch);
+ public native void addWidget(QWidget arg1);
+ public native void addLayout(QLayout layout, int stretch);
+ public native void addLayout(QLayout 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, QWidget widget, int stretch, int alignment);
+ public native void insertWidget(int index, QWidget widget, int stretch);
+ public native void insertWidget(int index, QWidget widget);
+ public native void insertLayout(int index, QLayout layout, int stretch);
+ public native void insertLayout(int index, QLayout layout);
+ public native boolean setStretchFactor(QWidget arg1, int stretch);
+ public native boolean setStretchFactor(QLayout l, int stretch);
+ public native QSize sizeHint();
+ public native QSize minimumSize();
+ public native QSize 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();
+ // QLayoutIterator iterator(); >>>> NOT CONVERTED
+ public native void setGeometry(QRect arg1);
+ public native int findWidget(QWidget w);
+ public static native String tr(String arg1, String arg2);
+ public static native String tr(String arg1);
+ public native void insertItem(int index, QLayoutItemInterface 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();
+}