blob: 7f25ac3f54e11875525ea92ddd3efd5cb7284160 (
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.trinitydesktop.qt;
import org.trinitydesktop.qt.Qt;
public class TQEditorFactory extends TQObject {
protected TQEditorFactory(Class dummy){super((Class) null);}
public TQEditorFactory(TQObject parent, String name) {
super((Class) null);
newTQEditorFactory(parent,name);
}
private native void newTQEditorFactory(TQObject parent, String name);
public TQEditorFactory(TQObject parent) {
super((Class) null);
newTQEditorFactory(parent);
}
private native void newTQEditorFactory(TQObject parent);
public TQEditorFactory() {
super((Class) null);
newTQEditorFactory();
}
private native void newTQEditorFactory();
public native TQWidget createEditor(TQWidget parent, TQVariant v);
public static native TQEditorFactory defaultFactory();
public static native void installDefaultFactory(TQEditorFactory 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();
}
|