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.
55 lines
1.9 KiB
55 lines
1.9 KiB
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.trinitydesktop.qt;
|
|
|
|
import org.trinitydesktop.qt.Qt;
|
|
import java.util.ArrayList;
|
|
|
|
public class TQImageIO implements QtSupport {
|
|
private long _qt;
|
|
private boolean _allocatedInJavaWorld = true;
|
|
protected TQImageIO(Class dummy){}
|
|
|
|
public TQImageIO() {
|
|
newTQImageIO();
|
|
}
|
|
private native void newTQImageIO();
|
|
public TQImageIO(TQIODeviceInterface ioDevice, String format) {
|
|
newTQImageIO(ioDevice,format);
|
|
}
|
|
private native void newTQImageIO(TQIODeviceInterface ioDevice, String format);
|
|
public TQImageIO(String fileName, String format) {
|
|
newTQImageIO(fileName,format);
|
|
}
|
|
private native void newTQImageIO(String fileName, String format);
|
|
public native TQImage image();
|
|
public native int status();
|
|
public native String format();
|
|
public native TQIODeviceInterface ioDevice();
|
|
public native String fileName();
|
|
public native int quality();
|
|
public native String description();
|
|
public native String parameters();
|
|
public native float gamma();
|
|
public native void setImage(TQImage arg1);
|
|
public native void setStatus(int arg1);
|
|
public native void setFormat(String arg1);
|
|
public native void setIODevice(TQIODeviceInterface arg1);
|
|
public native void setFileName(String arg1);
|
|
public native void setQuality(int arg1);
|
|
public native void setDescription(String arg1);
|
|
public native void setParameters(String arg1);
|
|
public native void setGamma(float arg1);
|
|
public native boolean read();
|
|
public native boolean write();
|
|
public static native String imageFormat(String fileName);
|
|
public static native String imageFormat(TQIODeviceInterface arg1);
|
|
public static native ArrayList inputFormats();
|
|
public static native ArrayList outputFormats();
|
|
/** 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();
|
|
}
|