summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QVBoxLayout.java
blob: 75b327b2f713ab458ea659f1c2df39bf42714211 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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();
}