//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.qt; import org.kde.qt.Qt; import java.util.ArrayList; public class QImageIO implements QtSupport { private long _qt; private boolean _allocatedInJavaWorld = true; protected QImageIO(Class dummy){} public QImageIO() { newQImageIO(); } private native void newQImageIO(); public QImageIO(QIODeviceInterface ioDevice, String format) { newQImageIO(ioDevice,format); } private native void newQImageIO(QIODeviceInterface ioDevice, String format); public QImageIO(String fileName, String format) { newQImageIO(fileName,format); } private native void newQImageIO(String fileName, String format); public native QImage image(); public native int status(); public native String format(); public native QIODeviceInterface 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(QImage arg1); public native void setStatus(int arg1); public native void setFormat(String arg1); public native void setIODevice(QIODeviceInterface 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(QIODeviceInterface 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(); }