本文整理匯總了TypeScript中@jupyterlab/mainmenu.EditMenu.addGroup方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript EditMenu.addGroup方法的具體用法?TypeScript EditMenu.addGroup怎麽用?TypeScript EditMenu.addGroup使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@jupyterlab/mainmenu.EditMenu
的用法示例。
在下文中一共展示了EditMenu.addGroup方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: createEditMenu
export function createEditMenu(app: JupyterLab, menu: EditMenu): void {
const commands = menu.menu.commands;
// Add the undo/redo commands the the Edit menu.
commands.addCommand(CommandIDs.undo, {
label: 'Undo',
isEnabled: Private.delegateEnabled(app, menu.undoers, 'undo'),
execute: Private.delegateExecute(app, menu.undoers, 'undo')
});
commands.addCommand(CommandIDs.redo, {
label: 'Redo',
isEnabled: Private.delegateEnabled(app, menu.undoers, 'redo'),
execute: Private.delegateExecute(app, menu.undoers, 'redo')
});
menu.addGroup(
[{ command: CommandIDs.undo }, { command: CommandIDs.redo }],
0
);
// Add the clear commands to the Edit menu.
commands.addCommand(CommandIDs.clearCurrent, {
label: () => {
const noun = Private.delegateLabel(app, menu.clearers, 'noun');
const enabled = Private.delegateEnabled(
app,
menu.clearers,
'clearCurrent'
)();
return `Clear${enabled ? ` ${noun}` : ''}`;
},
isEnabled: Private.delegateEnabled(app, menu.clearers, 'clearCurrent'),
execute: Private.delegateExecute(app, menu.clearers, 'clearCurrent')
});
commands.addCommand(CommandIDs.clearAll, {
label: () => {
const noun = Private.delegateLabel(app, menu.clearers, 'pluralNoun');
const enabled = Private.delegateEnabled(app, menu.clearers, 'clearAll')();
return `Clear All${enabled ? ` ${noun}` : ''}`;
},
isEnabled: Private.delegateEnabled(app, menu.clearers, 'clearAll'),
execute: Private.delegateExecute(app, menu.clearers, 'clearAll')
});
menu.addGroup(
[{ command: CommandIDs.clearCurrent }, { command: CommandIDs.clearAll }],
10
);
// Add the find/replace commands the the Edit menu.
commands.addCommand(CommandIDs.find, {
label: 'Find…',
isEnabled: Private.delegateEnabled(app, menu.findReplacers, 'find'),
execute: Private.delegateExecute(app, menu.findReplacers, 'find')
});
commands.addCommand(CommandIDs.findAndReplace, {
label: 'Find and Replace…',
isEnabled: Private.delegateEnabled(
app,
menu.findReplacers,
'findAndReplace'
),
execute: Private.delegateExecute(app, menu.findReplacers, 'findAndReplace')
});
menu.addGroup(
[{ command: CommandIDs.find }, { command: CommandIDs.findAndReplace }],
200
);
commands.addCommand(CommandIDs.goToLine, {
label: 'Go to Line…',
isEnabled: Private.delegateEnabled(app, menu.goToLiners, 'goToLine'),
execute: Private.delegateExecute(app, menu.goToLiners, 'goToLine')
});
menu.addGroup([{ command: CommandIDs.goToLine }], 200);
}