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