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.
40 lines
1.2 KiB
Java
40 lines
1.2 KiB
Java
//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();
|
|
}
|