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.
90 lines
3.6 KiB
Java
90 lines
3.6 KiB
Java
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.kde.qt;
|
|
|
|
import org.kde.qt.Qt;
|
|
|
|
/**
|
|
See {@link QTabDialogSignals} for signals emitted by QTabDialog
|
|
*/
|
|
public class QTabDialog extends QDialog {
|
|
protected QTabDialog(Class dummy){super((Class) null);}
|
|
public native QMetaObject metaObject();
|
|
public native String className();
|
|
public QTabDialog(QWidget parent, String name, boolean modal, int f) {
|
|
super((Class) null);
|
|
newQTabDialog(parent,name,modal,f);
|
|
}
|
|
private native void newQTabDialog(QWidget parent, String name, boolean modal, int f);
|
|
public QTabDialog(QWidget parent, String name, boolean modal) {
|
|
super((Class) null);
|
|
newQTabDialog(parent,name,modal);
|
|
}
|
|
private native void newQTabDialog(QWidget parent, String name, boolean modal);
|
|
public QTabDialog(QWidget parent, String name) {
|
|
super((Class) null);
|
|
newQTabDialog(parent,name);
|
|
}
|
|
private native void newQTabDialog(QWidget parent, String name);
|
|
public QTabDialog(QWidget parent) {
|
|
super((Class) null);
|
|
newQTabDialog(parent);
|
|
}
|
|
private native void newQTabDialog(QWidget parent);
|
|
public QTabDialog() {
|
|
super((Class) null);
|
|
newQTabDialog();
|
|
}
|
|
private native void newQTabDialog();
|
|
public native void show();
|
|
public native void setFont(QFont font);
|
|
public native void addTab(QWidget arg1, String arg2);
|
|
public native void addTab(QWidget child, QIconSet iconset, String label);
|
|
public native void addTab(QWidget arg1, QTab arg2);
|
|
public native void insertTab(QWidget arg1, String arg2, int index);
|
|
public native void insertTab(QWidget arg1, String arg2);
|
|
public native void insertTab(QWidget child, QIconSet iconset, String label, int index);
|
|
public native void insertTab(QWidget child, QIconSet iconset, String label);
|
|
public native void insertTab(QWidget arg1, QTab arg2, int index);
|
|
public native void insertTab(QWidget arg1, QTab arg2);
|
|
public native void changeTab(QWidget arg1, String arg2);
|
|
public native void changeTab(QWidget child, QIconSet iconset, String label);
|
|
public native boolean isTabEnabled(QWidget arg1);
|
|
public native void setTabEnabled(QWidget arg1, boolean arg2);
|
|
public native boolean isTabEnabled(String arg1);
|
|
public native void setTabEnabled(String arg1, boolean arg2);
|
|
public native void showPage(QWidget arg1);
|
|
public native void removePage(QWidget arg1);
|
|
public native String tabLabel(QWidget arg1);
|
|
public native QWidget currentPage();
|
|
public native void setDefaultButton(String text);
|
|
public native void setDefaultButton();
|
|
public native boolean hasDefaultButton();
|
|
public native void setHelpButton(String text);
|
|
public native void setHelpButton();
|
|
public native boolean hasHelpButton();
|
|
public native void setCancelButton(String text);
|
|
public native void setCancelButton();
|
|
public native boolean hasCancelButton();
|
|
public native void setApplyButton(String text);
|
|
public native void setApplyButton();
|
|
public native boolean hasApplyButton();
|
|
public native void setOKButton(String text);
|
|
public native void setOKButton();
|
|
public native void setOkButton(String text);
|
|
public native void setOkButton();
|
|
public native boolean hasOkButton();
|
|
public static native String tr(String arg1, String arg2);
|
|
public static native String tr(String arg1);
|
|
protected native void paintEvent(QPaintEvent arg1);
|
|
protected native void resizeEvent(QResizeEvent arg1);
|
|
public native void styleChange(QStyle arg1);
|
|
protected native void setTabBar(QTabBar arg1);
|
|
protected native QTabBar tabBar();
|
|
/** 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();
|
|
}
|