blob: 4ca0063c6c14ea935b9c8073c6fbef962b324257 (
plain)
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
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class QMenuItem implements QtSupport {
private long _qt;
private boolean _allocatedInJavaWorld = true;
protected QMenuItem(Class dummy){}
public QMenuItem() {
newQMenuItem();
}
private native void newQMenuItem();
public native int id();
public native QIconSet iconSet();
public native String text();
public native String whatsThis();
public native QPixmap pixmap();
public native QPopupMenu popup();
public native QWidget widget();
public native QCustomMenuItem custom();
public native QKeySequence key();
public native QSignal signal();
public native boolean isSeparator();
public native boolean isEnabled();
public native boolean isChecked();
public native boolean isDirty();
public native boolean isVisible();
public native boolean isEnabledAndVisible();
public native void setText(String text);
public native void setDirty(boolean dirty);
public native void setVisible(boolean visible);
public native void setWhatsThis(String text);
/** 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();
}
|