summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KDockTabGroup.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KDockTabGroup.java')
-rw-r--r--kdejava/koala/org/kde/koala/KDockTabGroup.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/KDockTabGroup.java b/kdejava/koala/org/kde/koala/KDockTabGroup.java
new file mode 100644
index 00000000..3d660b59
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/KDockTabGroup.java
@@ -0,0 +1,51 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QMetaObject;
+import org.kde.qt.QtSupport;
+import org.kde.qt.QWidget;
+import org.kde.qt.QTabWidget;
+
+/**
+
+ 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 QTabWidget 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 QTabWidget {
+ protected KDockTabGroup(Class dummy){super((Class) null);}
+ public native QMetaObject metaObject();
+ public native String className();
+ /**
+ Constructs this. It just calls the method of the base class.
+ @short Constructs this.
+ */
+ public KDockTabGroup(QWidget parent, String name) {
+ super((Class) null);
+ newKDockTabGroup(parent,name);
+ }
+ private native void newKDockTabGroup(QWidget parent, String name);
+ public KDockTabGroup(QWidget parent) {
+ super((Class) null);
+ newKDockTabGroup(parent);
+ }
+ private native void newKDockTabGroup(QWidget parent);
+ public KDockTabGroup() {
+ super((Class) null);
+ newKDockTabGroup();
+ }
+ private native void newKDockTabGroup();
+ public native QWidget 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();
+}