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.
39 lines
1.6 KiB
Java
39 lines
1.6 KiB
Java
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.kde.qt;
|
|
|
|
import org.kde.qt.Qt;
|
|
import java.util.ArrayList;
|
|
|
|
public class QMimeSourceFactory implements QtSupport {
|
|
private long _qt;
|
|
private boolean _allocatedInJavaWorld = true;
|
|
protected QMimeSourceFactory(Class dummy){}
|
|
|
|
public QMimeSourceFactory() {
|
|
newQMimeSourceFactory();
|
|
}
|
|
private native void newQMimeSourceFactory();
|
|
public native QMimeSourceInterface data(String abs_name);
|
|
public native String makeAbsolute(String abs_or_rel_name, String context);
|
|
public native QMimeSourceInterface data(String abs_or_rel_name, String context);
|
|
public native void setText(String abs_name, String text);
|
|
public native void setImage(String abs_name, QImage im);
|
|
public native void setPixmap(String abs_name, QPixmap pm);
|
|
public native void setData(String abs_name, QMimeSourceInterface data);
|
|
public native void setFilePath(String[] arg1);
|
|
public native ArrayList filePath();
|
|
public native void addFilePath(String arg1);
|
|
public native void setExtensionType(String ext, String mimetype);
|
|
public static native QMimeSourceFactory defaultFactory();
|
|
public static native void setDefaultFactory(QMimeSourceFactory arg1);
|
|
public static native QMimeSourceFactory takeDefaultFactory();
|
|
public static native void addFactory(QMimeSourceFactory f);
|
|
public static native void removeFactory(QMimeSourceFactory f);
|
|
/** 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();
|
|
}
|