summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/KMdiViewCloseEvent.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/KMdiViewCloseEvent.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/KMdiViewCloseEvent.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/KMdiViewCloseEvent.java b/tdejava/koala/org/trinitydesktop/koala/KMdiViewCloseEvent.java
new file mode 100644
index 00000000..625a6c58
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/KMdiViewCloseEvent.java
@@ -0,0 +1,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();
+}