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/KDockWidgetAbstractHeader.java

61 lines
2.2 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.QFrame;
/**
An abstract base clase for all dockwidget headers (and member of the dockwidget class set).
See the class description of KDockWidgetHeader!
More or less a minor helper class for the dockwidget class set.
@author Max Judin (documentation: Falk Brettschneider).
@short An abstract base clase for all dockwidget headers (and member of the dockwidget class set).
*/
public class KDockWidgetAbstractHeader extends QFrame {
protected KDockWidgetAbstractHeader(Class dummy){super((Class) null);}
public native QMetaObject metaObject();
public native String className();
/**
Constructs this.
@param parent the parent widget (usually a dockwidget)
@param name the object instance name
@short Constructs this.
*/
public KDockWidgetAbstractHeader(KDockWidget parent, String name) {
super((Class) null);
newKDockWidgetAbstractHeader(parent,name);
}
private native void newKDockWidgetAbstractHeader(KDockWidget parent, String name);
public KDockWidgetAbstractHeader(KDockWidget parent) {
super((Class) null);
newKDockWidgetAbstractHeader(parent);
}
private native void newKDockWidgetAbstractHeader(KDockWidget parent);
/**
Provides things concerning to switching to toplevel mode. Must be overridden by an inheriting class.
@short Provides things concerning to switching to toplevel mode.
*/
public native void setTopLevel(boolean arg1);
/**
Provides saving the current configuration. Must be overridden by an inheriting class.
@short Provides saving the current configuration.
*/
public native void saveConfig(KConfig arg1);
/**
Provides loading the current configuration. Must be overridden by an inheriting class
@short Provides loading the current configuration.
*/
public native void loadConfig(KConfig arg1);
/** 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();
}