blob: 3f975aa4f2a871f0892704f5d4ec7854f5399046 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class QResizeEvent extends QEvent {
protected QResizeEvent(Class dummy){super((Class) null);}
public QResizeEvent(QSize size, QSize oldSize) {
super((Class) null);
newQResizeEvent(size,oldSize);
}
private native void newQResizeEvent(QSize size, QSize oldSize);
public native QSize size();
public native QSize oldSize();
/** 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();
}
|