1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
//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();
}
|