You can not 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.1 KiB
79 lines
3.1 KiB
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.trinitydesktop.qt;
|
|
|
|
import org.trinitydesktop.qt.Qt;
|
|
|
|
/**
|
|
See {@link TQWizardSignals} for signals emitted by TQWizard
|
|
*/
|
|
public class TQWizard extends TQDialog {
|
|
protected TQWizard(Class dummy){super((Class) null);}
|
|
public native TQMetaObject metaObject();
|
|
public native String className();
|
|
public TQWizard(TQWidget parent, String name, boolean modal, int f) {
|
|
super((Class) null);
|
|
newTQWizard(parent,name,modal,f);
|
|
}
|
|
private native void newTQWizard(TQWidget parent, String name, boolean modal, int f);
|
|
public TQWizard(TQWidget parent, String name, boolean modal) {
|
|
super((Class) null);
|
|
newTQWizard(parent,name,modal);
|
|
}
|
|
private native void newTQWizard(TQWidget parent, String name, boolean modal);
|
|
public TQWizard(TQWidget parent, String name) {
|
|
super((Class) null);
|
|
newTQWizard(parent,name);
|
|
}
|
|
private native void newTQWizard(TQWidget parent, String name);
|
|
public TQWizard(TQWidget parent) {
|
|
super((Class) null);
|
|
newTQWizard(parent);
|
|
}
|
|
private native void newTQWizard(TQWidget parent);
|
|
public TQWizard() {
|
|
super((Class) null);
|
|
newTQWizard();
|
|
}
|
|
private native void newTQWizard();
|
|
public native void show();
|
|
public native void setFont(TQFont font);
|
|
public native void addPage(TQWidget arg1, String arg2);
|
|
public native void insertPage(TQWidget arg1, String arg2, int arg3);
|
|
public native void removePage(TQWidget arg1);
|
|
public native String title(TQWidget arg1);
|
|
public native void setTitle(TQWidget arg1, String arg2);
|
|
public native TQFont titleFont();
|
|
public native void setTitleFont(TQFont arg1);
|
|
public native void showPage(TQWidget arg1);
|
|
public native TQWidget currentPage();
|
|
public native TQWidget page(int arg1);
|
|
public native int pageCount();
|
|
public native int indexOf(TQWidget arg1);
|
|
public native boolean appropriate(TQWidget arg1);
|
|
public native void setAppropriate(TQWidget arg1, boolean arg2);
|
|
public native TQPushButton backButton();
|
|
public native TQPushButton nextButton();
|
|
public native TQPushButton finishButton();
|
|
public native TQPushButton cancelButton();
|
|
public native TQPushButton helpButton();
|
|
public native boolean eventFilter(TQObject arg1, TQEvent arg2);
|
|
public native void setBackEnabled(TQWidget arg1, boolean arg2);
|
|
public native void setNextEnabled(TQWidget arg1, boolean arg2);
|
|
public native void setFinishEnabled(TQWidget arg1, boolean arg2);
|
|
public native void setHelpEnabled(TQWidget arg1, boolean arg2);
|
|
public native void setFinish(TQWidget arg1, boolean arg2);
|
|
public static native String tr(String arg1, String arg2);
|
|
public static native String tr(String arg1);
|
|
protected native void layOutButtonRow(TQHBoxLayout arg1);
|
|
protected native void layOutTitleRow(TQHBoxLayout 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();
|
|
}
|