You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
3.0 KiB
Java
79 lines
3.0 KiB
Java
//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();
|
|
}
|