summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QCanvas.java
blob: c8a298f594608522b1dd4cee171ca14df1f37a4e (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
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.kde.qt;

import org.kde.qt.Qt;
import java.util.ArrayList;

/**
 See {@link QCanvasSignals} for signals emitted by QCanvas
*/
public class QCanvas extends QObject  {
	protected QCanvas(Class dummy){super((Class) null);}
	public native QMetaObject metaObject();
	public native String className();
	public QCanvas(QObject parent, String name) {
		super((Class) null);
		newQCanvas(parent,name);
	}
	private native void newQCanvas(QObject parent, String name);
	public QCanvas(QObject parent) {
		super((Class) null);
		newQCanvas(parent);
	}
	private native void newQCanvas(QObject parent);
	public QCanvas() {
		super((Class) null);
		newQCanvas();
	}
	private native void newQCanvas();
	public QCanvas(int w, int h) {
		super((Class) null);
		newQCanvas(w,h);
	}
	private native void newQCanvas(int w, int h);
	public QCanvas(QPixmap p, int h, int v, int tilewidth, int tileheight) {
		super((Class) null);
		newQCanvas(p,h,v,tilewidth,tileheight);
	}
	private native void newQCanvas(QPixmap p, int h, int v, int tilewidth, int tileheight);
	public native void setTiles(QPixmap tiles, int h, int v, int tilewidth, int tileheight);
	public native void setBackgroundPixmap(QPixmap p);
	public native QPixmap backgroundPixmap();
	public native void setBackgroundColor(QColor c);
	public native QColor 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 QSize size();
	public native QRect rect();
	public native boolean onCanvas(int x, int y);
	public native boolean onCanvas(QPoint p);
	public native boolean validChunk(int x, int y);
	public native boolean validChunk(QPoint 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(QRect area);
	public native void setUnchanged(QRect area);
	public native void addItemToChunk(QCanvasItem arg1, int i, int j);
	public native void removeItemFromChunk(QCanvasItem arg1, int i, int j);
	public native void addItemToChunkContaining(QCanvasItem arg1, int x, int y);
	public native void removeItemFromChunkContaining(QCanvasItem arg1, int x, int y);
	public native ArrayList allItems();
	public native ArrayList collisions(QPoint arg1);
	public native ArrayList collisions(QRect arg1);
	public native ArrayList collisions(QPointArray pa, QCanvasItem item, boolean exact);
	public native void drawArea(QRect arg1, QPainter p, boolean double_buffer);
	public native void drawArea(QRect arg1, QPainter p);
	public native void addView(QCanvasView arg1);
	public native void removeView(QCanvasView arg1);
	public native void drawCanvasArea(QRect arg1, QPainter p, boolean double_buffer);
	public native void drawCanvasArea(QRect arg1, QPainter p);
	public native void drawCanvasArea(QRect arg1);
	public native void drawViewArea(QCanvasView view, QPainter p, QRect r, boolean dbuf);
	public native void addItem(QCanvasItem arg1);
	public native void addAnimation(QCanvasItem arg1);
	public native void removeItem(QCanvasItem arg1);
	public native void removeAnimation(QCanvasItem 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(QPainter arg1, QRect area);
	protected native void drawForeground(QPainter arg1, QRect 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();
}