You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.7 KiB
48 lines
1.7 KiB
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.trinitydesktop.qt;
|
|
|
|
import org.trinitydesktop.qt.Qt;
|
|
|
|
public class TQPaintEvent extends TQEvent {
|
|
protected TQPaintEvent(Class dummy){super((Class) null);}
|
|
public TQPaintEvent(TQRegion paintRegion, boolean erased) {
|
|
super((Class) null);
|
|
newTQPaintEvent(paintRegion,erased);
|
|
}
|
|
private native void newTQPaintEvent(TQRegion paintRegion, boolean erased);
|
|
public TQPaintEvent(TQRegion paintRegion) {
|
|
super((Class) null);
|
|
newTQPaintEvent(paintRegion);
|
|
}
|
|
private native void newTQPaintEvent(TQRegion paintRegion);
|
|
public TQPaintEvent(TQRect paintRect, boolean erased) {
|
|
super((Class) null);
|
|
newTQPaintEvent(paintRect,erased);
|
|
}
|
|
private native void newTQPaintEvent(TQRect paintRect, boolean erased);
|
|
public TQPaintEvent(TQRect paintRect) {
|
|
super((Class) null);
|
|
newTQPaintEvent(paintRect);
|
|
}
|
|
private native void newTQPaintEvent(TQRect paintRect);
|
|
public TQPaintEvent(TQRegion paintRegion, TQRect paintRect, boolean erased) {
|
|
super((Class) null);
|
|
newTQPaintEvent(paintRegion,paintRect,erased);
|
|
}
|
|
private native void newTQPaintEvent(TQRegion paintRegion, TQRect paintRect, boolean erased);
|
|
public TQPaintEvent(TQRegion paintRegion, TQRect paintRect) {
|
|
super((Class) null);
|
|
newTQPaintEvent(paintRegion,paintRect);
|
|
}
|
|
private native void newTQPaintEvent(TQRegion paintRegion, TQRect paintRect);
|
|
public native TQRect rect();
|
|
public native TQRegion 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();
|
|
}
|