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.
28 lines
857 B
Java
28 lines
857 B
Java
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.kde.koala;
|
|
|
|
import org.kde.qt.Qt;
|
|
import org.kde.qt.QtSupport;
|
|
import org.kde.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();
|
|
}
|