summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QWizard.java
blob: 2e290366e3306605fa7270ba92e5de6bdfd63423 (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
69
70
71
72
73
74
75
76
77
78
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;

import org.kde.qt.Qt;

/**
 See {@link QWizardSignals} for signals emitted by QWizard
*/
public class QWizard extends QDialog  {
	protected QWizard(Class dummy){super((Class) null);}
	public native QMetaObject metaObject();
	public native String className();
	public QWizard(QWidget parent, String name, boolean modal, int f) {
		super((Class) null);
		newQWizard(parent,name,modal,f);
	}
	private native void newQWizard(QWidget parent, String name, boolean modal, int f);
	public QWizard(QWidget parent, String name, boolean modal) {
		super((Class) null);
		newQWizard(parent,name,modal);
	}
	private native void newQWizard(QWidget parent, String name, boolean modal);
	public QWizard(QWidget parent, String name) {
		super((Class) null);
		newQWizard(parent,name);
	}
	private native void newQWizard(QWidget parent, String name);
	public QWizard(QWidget parent) {
		super((Class) null);
		newQWizard(parent);
	}
	private native void newQWizard(QWidget parent);
	public QWizard() {
		super((Class) null);
		newQWizard();
	}
	private native void newQWizard();
	public native void show();
	public native void setFont(QFont font);
	public native void addPage(QWidget arg1, String arg2);
	public native void insertPage(QWidget arg1, String arg2, int arg3);
	public native void removePage(QWidget arg1);
	public native String title(QWidget arg1);
	public native void setTitle(QWidget arg1, String arg2);
	public native QFont titleFont();
	public native void setTitleFont(QFont arg1);
	public native void showPage(QWidget arg1);
	public native QWidget currentPage();
	public native QWidget page(int arg1);
	public native int pageCount();
	public native int indexOf(QWidget arg1);
	public native boolean appropriate(QWidget arg1);
	public native void setAppropriate(QWidget arg1, boolean arg2);
	public native QPushButton backButton();
	public native QPushButton nextButton();
	public native QPushButton finishButton();
	public native QPushButton cancelButton();
	public native QPushButton helpButton();
	public native boolean eventFilter(QObject arg1, QEvent arg2);
	public native void setBackEnabled(QWidget arg1, boolean arg2);
	public native void setNextEnabled(QWidget arg1, boolean arg2);
	public native void setFinishEnabled(QWidget arg1, boolean arg2);
	public native void setHelpEnabled(QWidget arg1, boolean arg2);
	public native void setFinish(QWidget arg1, boolean arg2);
	public static native String tr(String arg1, String arg2);
	public static native String tr(String arg1);
	protected native void layOutButtonRow(QHBoxLayout arg1);
	protected native void layOutTitleRow(QHBoxLayout arg1, String arg2);
	protected native void back();
	protected native void next();
	protected native void help();
	/** 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();
}