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.
59 lines
2.3 KiB
Java
59 lines
2.3 KiB
Java
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.kde.qt;
|
|
|
|
import org.kde.qt.Qt;
|
|
|
|
/**
|
|
See {@link QActionGroupSignals} for signals emitted by QActionGroup
|
|
*/
|
|
public class QActionGroup extends QAction {
|
|
protected QActionGroup(Class dummy){super((Class) null);}
|
|
public native QMetaObject metaObject();
|
|
public native String className();
|
|
public QActionGroup(QObject parent, String name) {
|
|
super((Class) null);
|
|
newQActionGroup(parent,name);
|
|
}
|
|
private native void newQActionGroup(QObject parent, String name);
|
|
public QActionGroup(QObject parent) {
|
|
super((Class) null);
|
|
newQActionGroup(parent);
|
|
}
|
|
private native void newQActionGroup(QObject parent);
|
|
public QActionGroup(QObject parent, String name, boolean exclusive) {
|
|
super((Class) null);
|
|
newQActionGroup(parent,name,exclusive);
|
|
}
|
|
private native void newQActionGroup(QObject parent, String name, boolean exclusive);
|
|
public native void setExclusive(boolean arg1);
|
|
public native boolean isExclusive();
|
|
public native void add(QAction a);
|
|
public native void addSeparator();
|
|
public native boolean addTo(QWidget arg1);
|
|
public native boolean removeFrom(QWidget arg1);
|
|
public native void setEnabled(boolean arg1);
|
|
public native void setToggleAction(boolean toggle);
|
|
public native void setOn(boolean on);
|
|
public native void setUsesDropDown(boolean enable);
|
|
public native boolean usesDropDown();
|
|
public native void setIconSet(QIconSet arg1);
|
|
public native void setText(String arg1);
|
|
public native void setMenuText(String arg1);
|
|
public native void setToolTip(String arg1);
|
|
public native void setWhatsThis(String arg1);
|
|
public native void insert(QAction a);
|
|
public static native String tr(String arg1, String arg2);
|
|
public static native String tr(String arg1);
|
|
protected native void childEvent(QChildEvent arg1);
|
|
protected native void addedTo(QWidget actionWidget, QWidget container, QAction a);
|
|
protected native void addedTo(int index, QPopupMenu menu, QAction a);
|
|
protected native void addedTo(QWidget actionWidget, QWidget container);
|
|
protected native void addedTo(int index, QPopupMenu menu);
|
|
/** 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();
|
|
}
|