KommanderPlugin::registerFunction(INSERTMENUITEM,"insertMenuItem(TQString widget, TQString text, TQString executeWidget, int index, TQString icon)",i18n("Insert an item into the popup menu. The executeWidget's execute method will be run when this item is selected. Returns the id of the inserted item. Use -1 for index to insert to the end. The icon is optional."),4,5);
KommanderPlugin::registerFunction(INSERTSEPARATOR,"insertSeparator(TQString widget, int index)",i18n("Insert a separator item into the popup menu. Use -1 for index to insert to the end."),2);
KommanderPlugin::registerFunction(CHANGEMENUITEM,"changeMenuItem(TQString widget, int id, TQString text, TQString executeWidget, TQString icon)",i18n("Change an item specified by id in the popup menu. The executeWidget's execute method will be run when this item is selected."),4,5);
KommanderPlugin::registerFunction(SETITEMENABLED,"setItemEnabled(TQString widget, int id, bool enable)",i18n("Enable the item specified by id in the popup menu."),3);
KommanderPlugin::registerFunction(ITEMENABLED,"itemEnabled(TQString widget, int id)",i18n("Check if the item specified by id is enabled."),2);
KommanderPlugin::registerFunction(SETITEMVISIBLE,"setItemVisible(TQString widget, int id, bool enable)",i18n("Make the item specified by id visible."),3);
KommanderPlugin::registerFunction(SETITEMCHECKED,"setItemChecked(TQString widget, int id, bool enable)",i18n("Apply checked status for the item specified by id."),3);
KommanderPlugin::registerFunction(ITEMVISIBLE,"itemVisible(TQString widget, int id)",i18n("Check if the item specified by id is visible."),2);
KommanderPlugin::registerFunction(ITEMCHECKED,"itemChecked(TQString widget, int id)",i18n("Verify if the item specified by id is checked."),2);
KommanderPlugin::registerFunction(INSERTSUBMENU,"insertSubmenu(TQString widget, TQString text, TQString menuWidget, int index, TQString icon)",i18n("Insert submenu widget into the popup menu. Use -1 for index to insert to the end. The icon is optional."),4,5);