summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KDockTabGroup.java
blob: 3d660b5901e96850cdc6db12d474b442547c533a (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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();
}