blob: 2b8d0f89752f80a278d78693f89c858d1b9e7c67 (
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.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();
}
|