summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/KDockTabGroup.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/KDockTabGroup.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/KDockTabGroup.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/KDockTabGroup.java b/tdejava/koala/org/trinitydesktop/koala/KDockTabGroup.java
new file mode 100644
index 00000000..c0e41ea5
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/KDockTabGroup.java
@@ -0,0 +1,51 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.koala;
+
+import org.trinitydesktop.qt.Qt;
+import org.trinitydesktop.qt.TQMetaObject;
+import org.trinitydesktop.qt.QtSupport;
+import org.trinitydesktop.qt.TQWidget;
+import org.trinitydesktop.qt.TQTabWidget;
+
+/**
+
+ It just hides the special implementation of a dockwidget tab groups (and is member of the dockwidget class set).
+ An abstraction what it is currently.
+ In general it is like TQTabWidget but is more useful for the dockwidget class set.
+ More or less a minor helper class for the dockwidget class set.
+ @author Max Judin (documentation: Falk Brettschneider).
+
+ @short It just hides the special implementation of a dockwidget tab groups (and is member of the dockwidget class set).
+
+*/
+public class KDockTabGroup extends TQTabWidget {
+ protected KDockTabGroup(Class dummy){super((Class) null);}
+ public native TQMetaObject metaObject();
+ public native String className();
+ /**
+ Constructs this. It just calls the method of the base class.
+ @short Constructs this.
+ */
+ public KDockTabGroup(TQWidget parent, String name) {
+ super((Class) null);
+ newKDockTabGroup(parent,name);
+ }
+ private native void newKDockTabGroup(TQWidget parent, String name);
+ public KDockTabGroup(TQWidget parent) {
+ super((Class) null);
+ newKDockTabGroup(parent);
+ }
+ private native void newKDockTabGroup(TQWidget parent);
+ public KDockTabGroup() {
+ super((Class) null);
+ newKDockTabGroup();
+ }
+ private native void newKDockTabGroup();
+ public native TQWidget transientTo();
+ /** 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();
+}