summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QImageIO.java
blob: 7aef7393358d8f15a02dd8780087a660a357c644 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//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();
}