blob: e157002a2ec819fae62eb63329a7a54b4e5c8306 (
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
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class QEditorFactory extends QObject {
protected QEditorFactory(Class dummy){super((Class) null);}
public QEditorFactory(QObject parent, String name) {
super((Class) null);
newQEditorFactory(parent,name);
}
private native void newQEditorFactory(QObject parent, String name);
public QEditorFactory(QObject parent) {
super((Class) null);
newQEditorFactory(parent);
}
private native void newQEditorFactory(QObject parent);
public QEditorFactory() {
super((Class) null);
newQEditorFactory();
}
private native void newQEditorFactory();
public native QWidget createEditor(QWidget parent, QVariant v);
public static native QEditorFactory defaultFactory();
public static native void installDefaultFactory(QEditorFactory factory);
/** 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();
}
|