You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/qtjava/javalib/org/kde/qt/QPaintEvent.java

48 lines
1.7 KiB
Java

//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();
}