summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QHBoxLayout.java
blob: 590eabb65dad490ce828a746e91d6fd795fd8e4e (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 QHBoxLayout extends QBoxLayout  {
	protected QHBoxLayout(Class dummy){super((Class) null);}
	public native QMetaObject metaObject();
	public native String className();
	public QHBoxLayout(QWidget parent, int border, int spacing, String name) {
		super((Class) null);
		newQHBoxLayout(parent,border,spacing,name);
	}
	private native void newQHBoxLayout(QWidget parent, int border, int spacing, String name);
	public QHBoxLayout(QWidget parent, int border, int spacing) {
		super((Class) null);
		newQHBoxLayout(parent,border,spacing);
	}
	private native void newQHBoxLayout(QWidget parent, int border, int spacing);
	public QHBoxLayout(QWidget parent, int border) {
		super((Class) null);
		newQHBoxLayout(parent,border);
	}
	private native void newQHBoxLayout(QWidget parent, int border);
	public QHBoxLayout(QWidget parent) {
		super((Class) null);
		newQHBoxLayout(parent);
	}
	private native void newQHBoxLayout(QWidget parent);
	public QHBoxLayout(QLayout parentLayout, int spacing, String name) {
		super((Class) null);
		newQHBoxLayout(parentLayout,spacing,name);
	}
	private native void newQHBoxLayout(QLayout parentLayout, int spacing, String name);
	public QHBoxLayout(QLayout parentLayout, int spacing) {
		super((Class) null);
		newQHBoxLayout(parentLayout,spacing);
	}
	private native void newQHBoxLayout(QLayout parentLayout, int spacing);
	public QHBoxLayout(QLayout parentLayout) {
		super((Class) null);
		newQHBoxLayout(parentLayout);
	}
	private native void newQHBoxLayout(QLayout parentLayout);
	public QHBoxLayout(int spacing, String name) {
		super((Class) null);
		newQHBoxLayout(spacing,name);
	}
	private native void newQHBoxLayout(int spacing, String name);
	public QHBoxLayout(int spacing) {
		super((Class) null);
		newQHBoxLayout(spacing);
	}
	private native void newQHBoxLayout(int spacing);
	public QHBoxLayout() {
		super((Class) null);
		newQHBoxLayout();
	}
	private native void newQHBoxLayout();
	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();
}