summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KMdiViewCloseEvent.java
blob: 2e02761823b246797f02346ae3116fb8e2bff7df (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.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
import org.kde.qt.QCustomEvent;

/**

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