summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QPaintEvent.java
blob: b89323585e2618fb35d7b6619c47cf0c95f725ac (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;

import org.kde.qt.Qt;

public class QPaintEvent extends QEvent  {
	protected QPaintEvent(Class dummy){super((Class) null);}
	public QPaintEvent(QRegion paintRegion, boolean erased) {
		super((Class) null);
		newQPaintEvent(paintRegion,erased);
	}
	private native void newQPaintEvent(QRegion paintRegion, boolean erased);
	public QPaintEvent(QRegion paintRegion) {
		super((Class) null);
		newQPaintEvent(paintRegion);
	}
	private native void newQPaintEvent(QRegion paintRegion);
	public QPaintEvent(QRect paintRect, boolean erased) {
		super((Class) null);
		newQPaintEvent(paintRect,erased);
	}
	private native void newQPaintEvent(QRect paintRect, boolean erased);
	public QPaintEvent(QRect paintRect) {
		super((Class) null);
		newQPaintEvent(paintRect);
	}
	private native void newQPaintEvent(QRect paintRect);
	public QPaintEvent(QRegion paintRegion, QRect paintRect, boolean erased) {
		super((Class) null);
		newQPaintEvent(paintRegion,paintRect,erased);
	}
	private native void newQPaintEvent(QRegion paintRegion, QRect paintRect, boolean erased);
	public QPaintEvent(QRegion paintRegion, QRect paintRect) {
		super((Class) null);
		newQPaintEvent(paintRegion,paintRect);
	}
	private native void newQPaintEvent(QRegion paintRegion, QRect paintRect);
	public native QRect rect();
	public native QRegion region();
	public native boolean erased();
	/** 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();
}