blob: 6e0ee634e9dae61a8e421407ace4155857ad621c (
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
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.qt;
import org.trinitydesktop.qt.Qt;
public class TQPicture extends TQPaintDevice {
protected TQPicture(Class dummy){super((Class) null);}
public TQPicture(int formatVersion) {
super((Class) null);
newTQPicture(formatVersion);
}
private native void newTQPicture(int formatVersion);
public TQPicture() {
super((Class) null);
newTQPicture();
}
private native void newTQPicture();
public TQPicture(TQPicture arg1) {
super((Class) null);
newTQPicture(arg1);
}
private native void newTQPicture(TQPicture arg1);
public native boolean isNull();
public native int size();
public native String data();
public native void setData(String data, int size);
public native boolean play(TQPainter arg1);
public native boolean load(TQIODeviceInterface dev, String format);
public native boolean load(TQIODeviceInterface dev);
public native boolean load(String fileName, String format);
public native boolean load(String fileName);
public native boolean save(TQIODeviceInterface dev, String format);
public native boolean save(TQIODeviceInterface dev);
public native boolean save(String fileName, String format);
public native boolean save(String fileName);
public native TQRect boundingRect();
public native void setBoundingRect(TQRect r);
// bool cmd(int arg1,TQPainter* arg2,TQPDevCmdParam* arg3); >>>> NOT CONVERTED
protected native int metric(int arg1);
public native void detach();
public native TQPicture copy();
/** 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();
}
|