blob: 0d7d4adac32c21788650c13007de7ca54d0b815e (
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
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class QStoredDrag extends QDragObject {
protected QStoredDrag(Class dummy){super((Class) null);}
public native QMetaObject metaObject();
public native String className();
public QStoredDrag(String mimeType, QWidget dragSource, String name) {
super((Class) null);
newQStoredDrag(mimeType,dragSource,name);
}
private native void newQStoredDrag(String mimeType, QWidget dragSource, String name);
public QStoredDrag(String mimeType, QWidget dragSource) {
super((Class) null);
newQStoredDrag(mimeType,dragSource);
}
private native void newQStoredDrag(String mimeType, QWidget dragSource);
public QStoredDrag(String mimeType) {
super((Class) null);
newQStoredDrag(mimeType);
}
private native void newQStoredDrag(String mimeType);
public native void setEncodedData(byte[] arg1);
public native String format(int i);
public native byte[] encodedData(String arg1);
public static native String tr(String arg1, String arg2);
public static native String tr(String arg1);
/** 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();
}
|