blob: 7218e4d08a990d536301cb6bb367d2c2b707d84d (
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
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.QObject;
import org.kde.qt.QWidget;
/**
*/
public class KActionSeparator extends KAction {
protected KActionSeparator(Class dummy){super((Class) null);}
public native QMetaObject metaObject();
public native String className();
public KActionSeparator(QObject parent, String name) {
super((Class) null);
newKActionSeparator(parent,name);
}
private native void newKActionSeparator(QObject parent, String name);
public KActionSeparator(QObject parent) {
super((Class) null);
newKActionSeparator(parent);
}
private native void newKActionSeparator(QObject parent);
public KActionSeparator() {
super((Class) null);
newKActionSeparator();
}
private native void newKActionSeparator();
public native int plug(QWidget widget, int index);
public native int plug(QWidget widget);
/** 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();
}
|