blob: 625a6c58d598c18cbb751738c9adf50dda741556 (
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
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;
import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.qt.QtSupport;
import org.trinitydesktop.qt.TQCustomEvent;
/**
This special event is needed because the view has to inform the main frame that it`s being closed.
@short Internal class.
*/
public class KMdiViewCloseEvent extends TQCustomEvent {
protected KMdiViewCloseEvent(Class dummy){super((Class) null);}
public KMdiViewCloseEvent(KMdiChildView pWnd) {
super((Class) null);
newKMdiViewCloseEvent(pWnd);
}
private native void newKMdiViewCloseEvent(KMdiChildView pWnd);
/** 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();
}
|