//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.koala; import org.kde.qt.Qt; import org.kde.qt.TQMetaObject; import org.kde.qt.QtSupport; import org.kde.qt.TQFrame; /** 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 TQFrame { protected KDockWidgetAbstractHeader(Class dummy){super((Class) null);} public native TQMetaObject 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(TDEConfig arg1); /** Provides loading the current configuration. Must be overridden by an inheriting class @short Provides loading the current configuration. */ public native void loadConfig(TDEConfig 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(); }