You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.6 KiB
66 lines
2.6 KiB
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.trinitydesktop.qt;
|
|
|
|
import java.util.ArrayList;
|
|
import org.trinitydesktop.qt.Qt;
|
|
|
|
public class TQUriDrag extends TQStoredDrag {
|
|
protected TQUriDrag(Class dummy){super((Class) null);}
|
|
public native TQMetaObject metaObject();
|
|
public native String className();
|
|
public TQUriDrag(String[] uris, TQWidget dragSource, String name) {
|
|
super((Class) null);
|
|
newTQUriDrag(uris,dragSource,name);
|
|
}
|
|
private native void newTQUriDrag(String[] uris, TQWidget dragSource, String name);
|
|
public TQUriDrag(String[] uris, TQWidget dragSource) {
|
|
super((Class) null);
|
|
newTQUriDrag(uris,dragSource);
|
|
}
|
|
private native void newTQUriDrag(String[] uris, TQWidget dragSource);
|
|
public TQUriDrag(String[] uris) {
|
|
super((Class) null);
|
|
newTQUriDrag(uris);
|
|
}
|
|
private native void newTQUriDrag(String[] uris);
|
|
public TQUriDrag(TQWidget dragSource, String name) {
|
|
super((Class) null);
|
|
newTQUriDrag(dragSource,name);
|
|
}
|
|
private native void newTQUriDrag(TQWidget dragSource, String name);
|
|
public TQUriDrag(TQWidget dragSource) {
|
|
super((Class) null);
|
|
newTQUriDrag(dragSource);
|
|
}
|
|
private native void newTQUriDrag(TQWidget dragSource);
|
|
public TQUriDrag() {
|
|
super((Class) null);
|
|
newTQUriDrag();
|
|
}
|
|
private native void newTQUriDrag();
|
|
public native void setFilenames(String[] fnames);
|
|
public native void setFileNames(String[] fnames);
|
|
public native void setUnicodeUris(String[] uuris);
|
|
public native void setUris(String[] uris);
|
|
public static native String tr(String arg1, String arg2);
|
|
public static native String tr(String arg1);
|
|
public static native String uriToLocalFile(String arg1);
|
|
public static native String localFileToUri(String arg1);
|
|
public static native String uriToUnicodeUri(String arg1);
|
|
public static native String unicodeUriToUri(String arg1);
|
|
public static native boolean canDecode(TQMimeSourceInterface e);
|
|
public static native boolean decode(TQMimeSourceInterface e, String[] i);
|
|
public static native boolean decodeToUnicodeUris(TQMimeSourceInterface e, String[] i);
|
|
public static native boolean decodeLocalFiles(TQMimeSourceInterface e, String[] i);
|
|
/** 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();
|
|
public static native boolean decode(TQMimeSourceInterface e, ArrayList i);
|
|
public static native boolean decodeToUnicodeUris(TQMimeSourceInterface e, ArrayList i);
|
|
public static native boolean decodeLocalFiles(TQMimeSourceInterface e, ArrayList i);
|
|
|
|
}
|