//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.koala; import org.kde.qt.Qt; import org.kde.qt.QtSupport; import org.kde.qt.TQVariant; /** TDEShortcutList implementation to access TDEAccel and TDEGlobalAccel lists. @short TDEShortcutList implementation to access TDEAccel and TDEGlobalAccel lists. */ public class TDEAccelShortcutList extends TDEShortcutList { protected TDEAccelShortcutList(Class dummy){super((Class) null);} /** Creates a new TDEShortcutList that accesses the given TDEAccel. @param accel the accelerators to access @short Creates a new TDEShortcutList that accesses the given TDEAccel. */ public TDEAccelShortcutList(TDEAccel accel) { super((Class) null); newTDEAccelShortcutList(accel); } private native void newTDEAccelShortcutList(TDEAccel accel); /** Creates a new TDEShortcutList that accesses the given TDEGlobalAccel. @param accel the accelerators to access @short Creates a new TDEShortcutList that accesses the given TDEGlobalAccel. */ public TDEAccelShortcutList(TDEGlobalAccel accel) { super((Class) null); newTDEAccelShortcutList(accel); } private native void newTDEAccelShortcutList(TDEGlobalAccel accel); /** Creates a new TDEShortcutList that accesses the given TDEAccelActions collection. @param actions the actions to access @param bGlobal true to save the actions in the global configuration file @short */ public TDEAccelShortcutList(TDEAccelActions actions, boolean bGlobal) { super((Class) null); newTDEAccelShortcutList(actions,bGlobal); } private native void newTDEAccelShortcutList(TDEAccelActions actions, boolean bGlobal); public native int count(); public native String name(int index); public native String label(int index); public native String whatsThis(int index); public native TDEShortcut shortcut(int index); public native TDEShortcut shortcutDefault(int index); public native boolean isConfigurable(int index); public native boolean setShortcut(int index, TDEShortcut shortcut); public native boolean isGlobal(int index); /** \internal @short \internal */ public native TQVariant getOther(int arg1, int index); /** \internal @short \internal */ public native boolean setOther(int arg1, int index, TQVariant arg3); public native boolean save(); /** 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(); }