blob: b093ab457d41b184f44a7492021a0d43599872f6 (
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
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class TQCanvasSprite extends TQCanvasItem {
protected TQCanvasSprite(Class dummy){super((Class) null);}
public static final int Cycle = 0;
public static final int Oscillate = 1;
public TQCanvasSprite(TQCanvasPixmapArray array, TQCanvas canvas) {
super((Class) null);
newTQCanvasSprite(array,canvas);
}
private native void newTQCanvasSprite(TQCanvasPixmapArray array, TQCanvas canvas);
public native void setSequence(TQCanvasPixmapArray seq);
public native void move(double x, double y);
public native void move(double x, double y, int frame);
public native void setFrame(int arg1);
public native void setFrameAnimation(int arg1, int step, int state);
public native void setFrameAnimation(int arg1, int step);
public native void setFrameAnimation(int arg1);
public native void setFrameAnimation();
public native int frame();
public native int frameCount();
public native int rtti();
public native boolean collidesWith(TQCanvasItem arg1);
public native TQRect boundingRect();
public native int width();
public native int height();
public native int leftEdge();
public native int topEdge();
public native int rightEdge();
public native int bottomEdge();
public native int leftEdge(int nx);
public native int topEdge(int ny);
public native int rightEdge(int nx);
public native int bottomEdge(int ny);
public native TQCanvasPixmap image();
public native TQCanvasPixmap imageAdvanced();
public native TQCanvasPixmap image(int f);
public native void advance(int stage);
public native void draw(TQPainter painter);
/** 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();
}
|