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.
59 lines
2.4 KiB
59 lines
2.4 KiB
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.trinitydesktop.qt;
|
|
|
|
import org.trinitydesktop.qt.Qt;
|
|
|
|
/**
|
|
See {@link TQActionGroupSignals} for signals emitted by TQActionGroup
|
|
*/
|
|
public class TQActionGroup extends TQAction {
|
|
protected TQActionGroup(Class dummy){super((Class) null);}
|
|
public native TQMetaObject metaObject();
|
|
public native String className();
|
|
public TQActionGroup(TQObject parent, String name) {
|
|
super((Class) null);
|
|
newTQActionGroup(parent,name);
|
|
}
|
|
private native void newTQActionGroup(TQObject parent, String name);
|
|
public TQActionGroup(TQObject parent) {
|
|
super((Class) null);
|
|
newTQActionGroup(parent);
|
|
}
|
|
private native void newTQActionGroup(TQObject parent);
|
|
public TQActionGroup(TQObject parent, String name, boolean exclusive) {
|
|
super((Class) null);
|
|
newTQActionGroup(parent,name,exclusive);
|
|
}
|
|
private native void newTQActionGroup(TQObject parent, String name, boolean exclusive);
|
|
public native void setExclusive(boolean arg1);
|
|
public native boolean isExclusive();
|
|
public native void add(TQAction a);
|
|
public native void addSeparator();
|
|
public native boolean addTo(TQWidget arg1);
|
|
public native boolean removeFrom(TQWidget 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(TQIconSet 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(TQAction a);
|
|
public static native String tr(String arg1, String arg2);
|
|
public static native String tr(String arg1);
|
|
protected native void childEvent(TQChildEvent arg1);
|
|
protected native void addedTo(TQWidget actionWidget, TQWidget container, TQAction a);
|
|
protected native void addedTo(int index, TQPopupMenu menu, TQAction a);
|
|
protected native void addedTo(TQWidget actionWidget, TQWidget container);
|
|
protected native void addedTo(int index, TQPopupMenu 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();
|
|
}
|