mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 09:35:38 -05:00
37 lines
1.5 KiB
TypeScript
37 lines
1.5 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { IAction, IActionRunner } from 'vs/base/common/actions';
|
|
import { IActionViewItem } from 'vs/base/browser/ui/actionbar/actionbar';
|
|
import { ResolvedKeybinding } from 'vs/base/common/keyCodes';
|
|
import { SubmenuAction } from 'vs/base/browser/ui/menu/menu';
|
|
import { AnchorAlignment } from 'vs/base/browser/ui/contextview/contextview';
|
|
|
|
export interface IContextMenuEvent {
|
|
shiftKey?: boolean;
|
|
ctrlKey?: boolean;
|
|
altKey?: boolean;
|
|
metaKey?: boolean;
|
|
}
|
|
|
|
export class ContextSubMenu extends SubmenuAction {
|
|
constructor(label: string, public entries: Array<ContextSubMenu | IAction>) {
|
|
super(label, entries, 'contextsubmenu');
|
|
}
|
|
}
|
|
|
|
export interface IContextMenuDelegate {
|
|
getAnchor(): HTMLElement | { x: number; y: number; width?: number; height?: number; };
|
|
getActions(): ReadonlyArray<IAction | ContextSubMenu>;
|
|
getActionViewItem?(action: IAction): IActionViewItem | undefined;
|
|
getActionsContext?(event?: IContextMenuEvent): any;
|
|
getKeyBinding?(action: IAction): ResolvedKeybinding | undefined;
|
|
getMenuClassName?(): string;
|
|
onHide?(didCancel: boolean): void;
|
|
actionRunner?: IActionRunner;
|
|
autoSelectFirstItem?: boolean;
|
|
anchorAlignment?: AnchorAlignment;
|
|
}
|