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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.qt;
import org.trinitydesktop.qt.Qt;
import java.util.ArrayList;
/**
See {@link TQCanvasSignals} for signals emitted by TQCanvas
*/
public class TQCanvas extends TQObject {
protected TQCanvas(Class dummy){super((Class) null);}
public native TQMetaObject metaObject();
public native String className();
public TQCanvas(TQObject parent, String name) {
super((Class) null);
newTQCanvas(parent,name);
}
private native void newTQCanvas(TQObject parent, String name);
public TQCanvas(TQObject parent) {
super((Class) null);
newTQCanvas(parent);
}
private native void newTQCanvas(TQObject parent);
public TQCanvas() {
super((Class) null);
newTQCanvas();
}
private native void newTQCanvas();
public TQCanvas(int w, int h) {
super((Class) null);
newTQCanvas(w,h);
}
private native void newTQCanvas(int w, int h);
public TQCanvas(TQPixmap p, int h, int v, int tilewidth, int tileheight) {
super((Class) null);
newTQCanvas(p,h,v,tilewidth,tileheight);
}
private native void newTQCanvas(TQPixmap p, int h, int v, int tilewidth, int tileheight);
public native void setTiles(TQPixmap tiles, int h, int v, int tilewidth, int tileheight);
public native void setBackgroundPixmap(TQPixmap p);
public native TQPixmap backgroundPixmap();
public native void setBackgroundColor(TQColor c);
public native TQColor backgroundColor();
public native void setTile(int x, int y, int tilenum);
public native int tile(int x, int y);
public native int tilesHorizontally();
public native int tilesVertically();
public native int tileWidth();
public native int tileHeight();
public native void resize(int width, int height);
public native int width();
public native int height();
public native TQSize size();
public native TQRect rect();
public native boolean onCanvas(int x, int y);
public native boolean onCanvas(TQPoint p);
public native boolean validChunk(int x, int y);
public native boolean validChunk(TQPoint p);
public native int chunkSize();
public native void retune(int chunksize, int maxclusters);
public native void retune(int chunksize);
public native boolean sameChunk(int x1, int y1, int x2, int y2);
public native void setChangedChunk(int i, int j);
public native void setChangedChunkContaining(int x, int y);
public native void setAllChanged();
public native void setChanged(TQRect area);
public native void setUnchanged(TQRect area);
public native void addItemToChunk(TQCanvasItem arg1, int i, int j);
public native void removeItemFromChunk(TQCanvasItem arg1, int i, int j);
public native void addItemToChunkContaining(TQCanvasItem arg1, int x, int y);
public native void removeItemFromChunkContaining(TQCanvasItem arg1, int x, int y);
public native ArrayList allItems();
public native ArrayList collisions(TQPoint arg1);
public native ArrayList collisions(TQRect arg1);
public native ArrayList collisions(TQPointArray pa, TQCanvasItem item, boolean exact);
public native void drawArea(TQRect arg1, TQPainter p, boolean double_buffer);
public native void drawArea(TQRect arg1, TQPainter p);
public native void addView(TQCanvasView arg1);
public native void removeView(TQCanvasView arg1);
public native void drawCanvasArea(TQRect arg1, TQPainter p, boolean double_buffer);
public native void drawCanvasArea(TQRect arg1, TQPainter p);
public native void drawCanvasArea(TQRect arg1);
public native void drawViewArea(TQCanvasView view, TQPainter p, TQRect r, boolean dbuf);
public native void addItem(TQCanvasItem arg1);
public native void addAnimation(TQCanvasItem arg1);
public native void removeItem(TQCanvasItem arg1);
public native void removeAnimation(TQCanvasItem arg1);
public native void setAdvancePeriod(int ms);
public native void setUpdatePeriod(int ms);
public native void setDoubleBuffering(boolean y);
public native void advance();
public native void update();
public static native String tr(String arg1, String arg2);
public static native String tr(String arg1);
protected native void drawBackground(TQPainter arg1, TQRect area);
protected native void drawForeground(TQPainter arg1, TQRect area);
/** 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();
}
|