You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/KDockTabGroup.java

52 lines
1.7 KiB

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