blob: 25add0c4de2fcb5760efca060f8467ed7a1f2ff4 (
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
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class TQCanvasPixmap extends TQPixmap {
protected TQCanvasPixmap(Class dummy){super((Class) null);}
public TQCanvasPixmap(String datafilename) {
super((Class) null);
newTQCanvasPixmap(datafilename);
}
private native void newTQCanvasPixmap(String datafilename);
public TQCanvasPixmap(TQImage image) {
super((Class) null);
newTQCanvasPixmap(image);
}
private native void newTQCanvasPixmap(TQImage image);
public TQCanvasPixmap(TQPixmap arg1, TQPoint hotspot) {
super((Class) null);
newTQCanvasPixmap(arg1,hotspot);
}
private native void newTQCanvasPixmap(TQPixmap arg1, TQPoint hotspot);
public native int offsetX();
public native int offsetY();
public native void setOffset(int x, int y);
/** 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();
}
|