menus.ts 57.6 KB
Newer Older
E
Erich Gamma 已提交
1 2 3 4 5 6 7
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

'use strict';

J
Joao Moreno 已提交
8
import * as nls from 'vs/nls';
9
import { isMacintosh, isLinux, isWindows, language } from 'vs/base/common/platform';
J
Joao Moreno 已提交
10
import * as arrays from 'vs/base/common/arrays';
11
import { IEnvironmentService } from 'vs/platform/environment/common/environment';
12
import { ipcMain as ipc, app, shell, dialog, Menu, MenuItem, BrowserWindow } from 'electron';
B
Benjamin Pasero 已提交
13
import { OpenContext } from 'vs/platform/windows/common/windows';
B
Benjamin Pasero 已提交
14 15
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
import { IFilesConfiguration, AutoSaveConfiguration } from 'vs/platform/files/common/files';
J
Joao Moreno 已提交
16
import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
J
Joao Moreno 已提交
17
import { IUpdateService, State as UpdateState } from 'vs/platform/update/common/update';
18
import product from 'vs/platform/node/product';
19
import { RunOnceScheduler } from 'vs/base/common/async';
20
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
B
Benjamin Pasero 已提交
21
import { tildify } from 'vs/base/common/labels';
22
import { KeybindingsResolver } from "vs/code/electron-main/keyboard";
B
Benjamin Pasero 已提交
23
import { IWindowsMainService } from "vs/platform/windows/electron-main/windows";
24
import { IHistoryMainService } from "vs/platform/history/electron-main/historyMainService";
E
Erich Gamma 已提交
25

26 27 28 29 30
interface IExtensionViewlet {
	id: string;
	label: string;
}

B
Benjamin Pasero 已提交
31
interface IConfiguration extends IFilesConfiguration {
32 33 34
	window: {
		enableMenuBarMnemonics: boolean;
	};
B
Benjamin Pasero 已提交
35 36 37 38 39 40
	workbench: {
		sideBar: {
			location: 'left' | 'right';
		},
		statusBar: {
			visible: boolean;
S
Sanders Lauture 已提交
41 42 43
		},
		activityBar: {
			visible: boolean;
B
Benjamin Pasero 已提交
44 45
		}
	};
46 47 48
	editor: {
		multiCursorModifier: 'ctrlCmd' | 'alt'
	};
B
Benjamin Pasero 已提交
49 50
}

51 52
const telemetryFrom = 'menu';

B
Benjamin Pasero 已提交
53
export class CodeMenu {
54

55
	private static MAX_MENU_RECENT_ENTRIES = 10;
56

B
Benjamin Pasero 已提交
57
	private currentAutoSaveSetting: string;
58
	private currentMultiCursorModifierSetting: string;
B
Benjamin Pasero 已提交
59 60
	private currentSidebarLocation: 'left' | 'right';
	private currentStatusbarVisible: boolean;
S
Sanders Lauture 已提交
61
	private currentActivityBarVisible: boolean;
62
	private currentEnableMenuBarMnemonics: boolean;
B
Benjamin Pasero 已提交
63

B
Benjamin Pasero 已提交
64
	private isQuitting: boolean;
E
Erich Gamma 已提交
65 66
	private appMenuInstalled: boolean;

67 68
	private menuUpdater: RunOnceScheduler;

69
	private keybindingsResolver: KeybindingsResolver;
E
Erich Gamma 已提交
70

71 72
	private extensionViewlets: IExtensionViewlet[];

J
Joao Moreno 已提交
73
	constructor(
B
Benjamin Pasero 已提交
74
		@IUpdateService private updateService: IUpdateService,
75
		@IInstantiationService instantiationService: IInstantiationService,
B
Benjamin Pasero 已提交
76
		@IConfigurationService private configurationService: IConfigurationService,
J
Joao Moreno 已提交
77
		@IWindowsMainService private windowsService: IWindowsMainService,
J
Joao Moreno 已提交
78
		@IEnvironmentService private environmentService: IEnvironmentService,
79 80
		@ITelemetryService private telemetryService: ITelemetryService,
		@IHistoryMainService private historyService: IHistoryMainService
J
Joao Moreno 已提交
81
	) {
82
		this.extensionViewlets = [];
E
Erich Gamma 已提交
83

84
		this.menuUpdater = new RunOnceScheduler(() => this.doUpdateMenu(), 0);
85
		this.keybindingsResolver = instantiationService.createInstance(KeybindingsResolver);
86

B
Benjamin Pasero 已提交
87
		this.onConfigurationUpdated(this.configurationService.getConfiguration<IConfiguration>());
E
Erich Gamma 已提交
88 89

		this.install();
90 91

		this.registerListeners();
E
Erich Gamma 已提交
92 93 94 95 96 97
	}

	private registerListeners(): void {

		// Keep flag when app quits
		app.on('will-quit', () => {
B
Benjamin Pasero 已提交
98
			this.isQuitting = true;
E
Erich Gamma 已提交
99 100
		});

101
		// Listen to some events from window service
B
Benjamin Pasero 已提交
102
		this.windowsService.onPathsOpen(paths => this.updateMenu());
103
		this.historyService.onRecentPathsChange(paths => this.updateMenu());
104
		this.windowsService.onWindowClose(_ => this.onClose(this.windowsService.getWindowCount()));
E
Erich Gamma 已提交
105

106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
		// Listen to extension viewlets
		ipc.on('vscode:extensionViewlets', (event, rawExtensionViewlets) => {
			let extensionViewlets: IExtensionViewlet[] = [];
			try {
				extensionViewlets = JSON.parse(rawExtensionViewlets);
			} catch (error) {
				// Should not happen
			}

			if (extensionViewlets.length) {
				this.extensionViewlets = extensionViewlets;
				this.updateMenu();
			}
		});

B
Benjamin Pasero 已提交
121
		// Update when auto save config changes
B
Benjamin Pasero 已提交
122
		this.configurationService.onDidUpdateConfiguration(e => this.onConfigurationUpdated(e.config, true /* update menu if changed */));
B
Benjamin Pasero 已提交
123

B
Benjamin Pasero 已提交
124
		// Listen to update service
125
		this.updateService.onStateChange(() => this.updateMenu());
126 127 128

		// Listen to keybindings change
		this.keybindingsResolver.onKeybindingsChanged(() => this.updateMenu());
E
Erich Gamma 已提交
129 130
	}

B
Benjamin Pasero 已提交
131
	private onConfigurationUpdated(config: IConfiguration, handleMenu?: boolean): void {
B
Benjamin Pasero 已提交
132
		let updateMenu = false;
B
Benjamin Pasero 已提交
133 134 135
		const newAutoSaveSetting = config && config.files && config.files.autoSave;
		if (newAutoSaveSetting !== this.currentAutoSaveSetting) {
			this.currentAutoSaveSetting = newAutoSaveSetting;
B
Benjamin Pasero 已提交
136 137 138
			updateMenu = true;
		}

139 140 141 142 143 144
		const newMultiCursorModifierSetting = config && config.editor && config.editor.multiCursorModifier;
		if (newMultiCursorModifierSetting !== this.currentMultiCursorModifierSetting) {
			this.currentMultiCursorModifierSetting = newMultiCursorModifierSetting;
			updateMenu = true;
		}

145 146 147 148 149
		const newSidebarLocation = config && config.workbench && config.workbench.sideBar && config.workbench.sideBar.location || 'left';
		if (newSidebarLocation !== this.currentSidebarLocation) {
			this.currentSidebarLocation = newSidebarLocation;
			updateMenu = true;
		}
B
Benjamin Pasero 已提交
150

151 152 153 154 155 156 157 158
		let newStatusbarVisible = config && config.workbench && config.workbench.statusBar && config.workbench.statusBar.visible;
		if (typeof newStatusbarVisible !== 'boolean') {
			newStatusbarVisible = true;
		}
		if (newStatusbarVisible !== this.currentStatusbarVisible) {
			this.currentStatusbarVisible = newStatusbarVisible;
			updateMenu = true;
		}
S
Sanders Lauture 已提交
159

160 161 162 163 164 165 166
		let newActivityBarVisible = config && config.workbench && config.workbench.activityBar && config.workbench.activityBar.visible;
		if (typeof newActivityBarVisible !== 'boolean') {
			newActivityBarVisible = true;
		}
		if (newActivityBarVisible !== this.currentActivityBarVisible) {
			this.currentActivityBarVisible = newActivityBarVisible;
			updateMenu = true;
B
Benjamin Pasero 已提交
167 168
		}

169 170 171 172 173 174 175 176 177
		let newEnableMenuBarMnemonics = config && config.window && config.window.enableMenuBarMnemonics;
		if (typeof newEnableMenuBarMnemonics !== 'boolean') {
			newEnableMenuBarMnemonics = true;
		}
		if (newEnableMenuBarMnemonics !== this.currentEnableMenuBarMnemonics) {
			this.currentEnableMenuBarMnemonics = newEnableMenuBarMnemonics;
			updateMenu = true;
		}

B
Benjamin Pasero 已提交
178
		if (handleMenu && updateMenu) {
B
Benjamin Pasero 已提交
179 180 181 182
			this.updateMenu();
		}
	}

E
Erich Gamma 已提交
183
	private updateMenu(): void {
184 185 186 187
		this.menuUpdater.schedule(); // buffer multiple attempts to update the menu
	}

	private doUpdateMenu(): void {
E
Erich Gamma 已提交
188 189 190

		// Due to limitations in Electron, it is not possible to update menu items dynamically. The suggested
		// workaround from Electron is to set the application menu again.
M
Martin Aeschlimann 已提交
191
		// See also https://github.com/electron/electron/issues/846
E
Erich Gamma 已提交
192 193 194 195 196 197 198 199 200 201 202
		//
		// Run delayed to prevent updating menu while it is open
		if (!this.isQuitting) {
			setTimeout(() => {
				if (!this.isQuitting) {
					this.install();
				}
			}, 10 /* delay this because there is an issue with updating a menu when it is open */);
		}
	}

B
Benjamin Pasero 已提交
203
	private onClose(remainingWindowCount: number): void {
204
		if (remainingWindowCount === 0 && isMacintosh) {
E
Erich Gamma 已提交
205 206 207 208 209 210 211
			this.updateMenu();
		}
	}

	private install(): void {

		// Menus
B
Benjamin Pasero 已提交
212
		const menubar = new Menu();
E
Erich Gamma 已提交
213 214

		// Mac: Application
B
Benjamin Pasero 已提交
215
		let macApplicationMenuItem: Electron.MenuItem;
216
		if (isMacintosh) {
B
Benjamin Pasero 已提交
217
			const applicationMenu = new Menu();
B
Benjamin Pasero 已提交
218
			macApplicationMenuItem = new MenuItem({ label: product.nameShort, submenu: applicationMenu });
E
Erich Gamma 已提交
219 220 221 222
			this.setMacApplicationMenu(applicationMenu);
		}

		// File
B
Benjamin Pasero 已提交
223
		const fileMenu = new Menu();
224
		const fileMenuItem = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'mFile', comment: ['&& denotes a mnemonic'] }, "&&File")), submenu: fileMenu });
E
Erich Gamma 已提交
225 226 227
		this.setFileMenu(fileMenu);

		// Edit
B
Benjamin Pasero 已提交
228
		const editMenu = new Menu();
229
		const editMenuItem = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'mEdit', comment: ['&& denotes a mnemonic'] }, "&&Edit")), submenu: editMenu });
E
Erich Gamma 已提交
230 231
		this.setEditMenu(editMenu);

C
Christof Marti 已提交
232 233
		// Selection
		const selectionMenu = new Menu();
234
		const selectionMenuItem = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'mSelection', comment: ['&& denotes a mnemonic'] }, "&&Selection")), submenu: selectionMenu });
C
Christof Marti 已提交
235 236
		this.setSelectionMenu(selectionMenu);

E
Erich Gamma 已提交
237
		// View
B
Benjamin Pasero 已提交
238
		const viewMenu = new Menu();
239
		const viewMenuItem = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'mView', comment: ['&& denotes a mnemonic'] }, "&&View")), submenu: viewMenu });
E
Erich Gamma 已提交
240 241 242
		this.setViewMenu(viewMenu);

		// Goto
B
Benjamin Pasero 已提交
243
		const gotoMenu = new Menu();
244
		const gotoMenuItem = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'mGoto', comment: ['&& denotes a mnemonic'] }, "&&Go")), submenu: gotoMenu });
E
Erich Gamma 已提交
245 246
		this.setGotoMenu(gotoMenu);

I
isidor 已提交
247 248
		// Debug
		const debugMenu = new Menu();
249
		const debugMenuItem = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'mDebug', comment: ['&& denotes a mnemonic'] }, "&&Debug")), submenu: debugMenu });
I
isidor 已提交
250 251 252
		this.setDebugMenu(debugMenu);


E
Erich Gamma 已提交
253
		// Mac: Window
B
Benjamin Pasero 已提交
254
		let macWindowMenuItem: Electron.MenuItem;
255
		if (isMacintosh) {
B
Benjamin Pasero 已提交
256
			const windowMenu = new Menu();
257
			macWindowMenuItem = new MenuItem({ label: this.mnemonicLabel(nls.localize('mWindow', "Window")), submenu: windowMenu, role: 'window' });
E
Erich Gamma 已提交
258 259 260 261
			this.setMacWindowMenu(windowMenu);
		}

		// Help
B
Benjamin Pasero 已提交
262
		const helpMenu = new Menu();
263
		const helpMenuItem = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'mHelp', comment: ['&& denotes a mnemonic'] }, "&&Help")), submenu: helpMenu, role: 'help' });
E
Erich Gamma 已提交
264 265
		this.setHelpMenu(helpMenu);

T
t-amqi 已提交
266 267 268 269 270
		// Tasks
		const taskMenu = new Menu();
		const taskMenuItem = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'mTask', comment: ['&& denotes a mnemonic'] }, "&&Tasks")), submenu: taskMenu });
		this.setTaskMenu(taskMenu);

E
Erich Gamma 已提交
271 272 273 274 275 276 277
		// Menu Structure
		if (macApplicationMenuItem) {
			menubar.append(macApplicationMenuItem);
		}

		menubar.append(fileMenuItem);
		menubar.append(editMenuItem);
C
Christof Marti 已提交
278
		menubar.append(selectionMenuItem);
E
Erich Gamma 已提交
279 280
		menubar.append(viewMenuItem);
		menubar.append(gotoMenuItem);
I
isidor 已提交
281
		menubar.append(debugMenuItem);
T
t-amqi 已提交
282
		menubar.append(taskMenuItem);
E
Erich Gamma 已提交
283 284 285 286 287 288 289 290 291 292

		if (macWindowMenuItem) {
			menubar.append(macWindowMenuItem);
		}

		menubar.append(helpMenuItem);

		Menu.setApplicationMenu(menubar);

		// Dock Menu
293
		if (isMacintosh && !this.appMenuInstalled) {
E
Erich Gamma 已提交
294 295
			this.appMenuInstalled = true;

B
Benjamin Pasero 已提交
296
			const dockMenu = new Menu();
297
			dockMenu.append(new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miNewWindow', comment: ['&& denotes a mnemonic'] }, "New &&Window")), click: () => this.windowsService.openNewWindow(OpenContext.DOCK) }));
E
Erich Gamma 已提交
298

299
			app.dock.setMenu(dockMenu);
E
Erich Gamma 已提交
300 301 302
		}
	}

B
Benjamin Pasero 已提交
303
	private setMacApplicationMenu(macApplicationMenu: Electron.Menu): void {
B
Benjamin Pasero 已提交
304
		const about = new MenuItem({ label: nls.localize('mAbout', "About {0}", product.nameLong), role: 'about' });
B
Benjamin Pasero 已提交
305 306
		const checkForUpdates = this.getUpdateMenuItems();
		const preferences = this.getPreferencesMenu();
307 308
		const servicesMenu = new Menu();
		const services = new MenuItem({ label: nls.localize('mServices', "Services"), role: 'services', submenu: servicesMenu });
B
Benjamin Pasero 已提交
309
		const hide = new MenuItem({ label: nls.localize('mHide', "Hide {0}", product.nameLong), role: 'hide', accelerator: 'Command+H' });
B
Benjamin Pasero 已提交
310 311
		const hideOthers = new MenuItem({ label: nls.localize('mHideOthers', "Hide Others"), role: 'hideothers', accelerator: 'Command+Alt+H' });
		const showAll = new MenuItem({ label: nls.localize('mShowAll', "Show All"), role: 'unhide' });
312
		const quit = new MenuItem(this.likeAction('workbench.action.quit', { label: nls.localize('miQuit', "Quit {0}", product.nameLong), click: () => this.windowsService.quit() }));
B
Benjamin Pasero 已提交
313 314

		const actions = [about];
E
Erich Gamma 已提交
315 316 317 318 319
		actions.push(...checkForUpdates);
		actions.push(...[
			__separator__(),
			preferences,
			__separator__(),
320 321
			services,
			__separator__(),
E
Erich Gamma 已提交
322 323 324 325 326 327 328 329 330 331
			hide,
			hideOthers,
			showAll,
			__separator__(),
			quit
		]);

		actions.forEach(i => macApplicationMenu.append(i));
	}

B
Benjamin Pasero 已提交
332
	private setFileMenu(fileMenu: Electron.Menu): void {
B
Benjamin Pasero 已提交
333
		const hasNoWindows = (this.windowsService.getWindowCount() === 0);
E
Erich Gamma 已提交
334

B
Benjamin Pasero 已提交
335
		let newFile: Electron.MenuItem;
E
Erich Gamma 已提交
336
		if (hasNoWindows) {
337
			newFile = new MenuItem(this.likeAction('workbench.action.files.newUntitledFile', { label: this.mnemonicLabel(nls.localize({ key: 'miNewFile', comment: ['&& denotes a mnemonic'] }, "&&New File")), click: () => this.windowsService.openNewWindow(OpenContext.MENU) }));
E
Erich Gamma 已提交
338
		} else {
B
Benjamin Pasero 已提交
339
			newFile = this.createMenuItem(nls.localize({ key: 'miNewFile', comment: ['&& denotes a mnemonic'] }, "&&New File"), 'workbench.action.files.newUntitledFile');
E
Erich Gamma 已提交
340 341
		}

342 343
		const open = new MenuItem(this.likeAction('workbench.action.files.openFileFolder', { label: this.mnemonicLabel(nls.localize({ key: 'miOpen', comment: ['&& denotes a mnemonic'] }, "&&Open...")), click: (menuItem, win, event) => this.windowsService.openFileFolderPicker(this.isOptionClick(event), { from: telemetryFrom }) }));
		const openFolder = new MenuItem(this.likeAction('workbench.action.files.openFolder', { label: this.mnemonicLabel(nls.localize({ key: 'miOpenFolder', comment: ['&& denotes a mnemonic'] }, "Open &&Folder...")), click: (menuItem, win, event) => this.windowsService.openFolderPicker(this.isOptionClick(event), undefined, { from: telemetryFrom }) }));
E
Erich Gamma 已提交
344

345 346
		let openFile: Electron.MenuItem;
		if (hasNoWindows) {
347
			openFile = new MenuItem(this.likeAction('workbench.action.files.openFile', { label: this.mnemonicLabel(nls.localize({ key: 'miOpenFile', comment: ['&& denotes a mnemonic'] }, "&&Open File...")), click: (menuItem, win, event) => this.windowsService.openFilePicker(this.isOptionClick(event), undefined, undefined, { from: telemetryFrom }) }));
348
		} else {
349
			openFile = this.createMenuItem(nls.localize({ key: 'miOpenFile', comment: ['&& denotes a mnemonic'] }, "&&Open File..."), ['workbench.action.files.openFile', 'workbench.action.files.openFileInNewWindow']);
350 351
		}

B
Benjamin Pasero 已提交
352
		const openRecentMenu = new Menu();
E
Erich Gamma 已提交
353
		this.setOpenRecentMenu(openRecentMenu);
354
		const openRecent = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miOpenRecent', comment: ['&& denotes a mnemonic'] }, "Open &&Recent")), submenu: openRecentMenu, enabled: openRecentMenu.items.length > 0 });
E
Erich Gamma 已提交
355

B
Benjamin Pasero 已提交
356 357 358
		const saveFile = this.createMenuItem(nls.localize({ key: 'miSave', comment: ['&& denotes a mnemonic'] }, "&&Save"), 'workbench.action.files.save', this.windowsService.getWindowCount() > 0);
		const saveFileAs = this.createMenuItem(nls.localize({ key: 'miSaveAs', comment: ['&& denotes a mnemonic'] }, "Save &&As..."), 'workbench.action.files.saveAs', this.windowsService.getWindowCount() > 0);
		const saveAllFiles = this.createMenuItem(nls.localize({ key: 'miSaveAll', comment: ['&& denotes a mnemonic'] }, "Save A&&ll"), 'workbench.action.files.saveAll', this.windowsService.getWindowCount() > 0);
E
Erich Gamma 已提交
359

B
Benjamin Pasero 已提交
360
		const autoSaveEnabled = [AutoSaveConfiguration.AFTER_DELAY, AutoSaveConfiguration.ON_FOCUS_CHANGE, AutoSaveConfiguration.ON_WINDOW_CHANGE].some(s => this.currentAutoSaveSetting === s);
361
		const autoSave = new MenuItem(this.likeAction('vscode.toggleAutoSave', { label: this.mnemonicLabel(nls.localize('miAutoSave', "Auto Save")), type: 'checkbox', checked: autoSaveEnabled, enabled: this.windowsService.getWindowCount() > 0, click: () => this.windowsService.sendToFocused('vscode.toggleAutoSave') }, false));
B
Benjamin Pasero 已提交
362

B
Benjamin Pasero 已提交
363
		const preferences = this.getPreferencesMenu();
E
Erich Gamma 已提交
364

365
		const newWindow = new MenuItem(this.likeAction('workbench.action.newWindow', { label: this.mnemonicLabel(nls.localize({ key: 'miNewWindow', comment: ['&& denotes a mnemonic'] }, "New &&Window")), click: () => this.windowsService.openNewWindow(OpenContext.MENU) }));
B
Benjamin Pasero 已提交
366
		const revertFile = this.createMenuItem(nls.localize({ key: 'miRevert', comment: ['&& denotes a mnemonic'] }, "Re&&vert File"), 'workbench.action.files.revert', this.windowsService.getWindowCount() > 0);
367
		const closeWindow = new MenuItem(this.likeAction('workbench.action.closeWindow', { label: this.mnemonicLabel(nls.localize({ key: 'miCloseWindow', comment: ['&& denotes a mnemonic'] }, "Clos&&e Window")), click: () => this.windowsService.getLastActiveWindow().win.close(), enabled: this.windowsService.getWindowCount() > 0 }));
E
Erich Gamma 已提交
368

B
Benjamin Pasero 已提交
369
		const closeFolder = this.createMenuItem(nls.localize({ key: 'miCloseFolder', comment: ['&& denotes a mnemonic'] }, "Close &&Folder"), 'workbench.action.closeFolder');
370
		const closeEditor = this.createMenuItem(nls.localize({ key: 'miCloseEditor', comment: ['&& denotes a mnemonic'] }, "&&Close Editor"), 'workbench.action.closeActiveEditor');
E
Erich Gamma 已提交
371

372
		const exit = new MenuItem(this.likeAction('workbench.action.quit', { label: this.mnemonicLabel(nls.localize({ key: 'miExit', comment: ['&& denotes a mnemonic'] }, "E&&xit")), click: () => this.windowsService.quit() }));
E
Erich Gamma 已提交
373 374 375 376 377

		arrays.coalesce([
			newFile,
			newWindow,
			__separator__(),
378 379 380
			isMacintosh ? open : null,
			!isMacintosh ? openFile : null,
			!isMacintosh ? openFolder : null,
E
Erich Gamma 已提交
381 382 383 384 385 386
			openRecent,
			__separator__(),
			saveFile,
			saveFileAs,
			saveAllFiles,
			__separator__(),
B
Benjamin Pasero 已提交
387 388
			autoSave,
			__separator__(),
389 390
			!isMacintosh ? preferences : null,
			!isMacintosh ? __separator__() : null,
E
Erich Gamma 已提交
391 392 393
			revertFile,
			closeEditor,
			closeFolder,
B
Benjamin Pasero 已提交
394
			closeWindow,
395 396
			!isMacintosh ? __separator__() : null,
			!isMacintosh ? exit : null
B
Benjamin Pasero 已提交
397
		]).forEach(item => fileMenu.append(item));
E
Erich Gamma 已提交
398 399
	}

B
Benjamin Pasero 已提交
400
	private getPreferencesMenu(): Electron.MenuItem {
S
Sandeep Somavarapu 已提交
401
		const settings = this.createMenuItem(nls.localize({ key: 'miOpenSettings', comment: ['&& denotes a mnemonic'] }, "&&Settings"), 'workbench.action.openGlobalSettings');
B
Benjamin Pasero 已提交
402
		const kebindingSettings = this.createMenuItem(nls.localize({ key: 'miOpenKeymap', comment: ['&& denotes a mnemonic'] }, "&&Keyboard Shortcuts"), 'workbench.action.openGlobalKeybindings');
403
		const keymapExtensions = this.createMenuItem(nls.localize({ key: 'miOpenKeymapExtensions', comment: ['&& denotes a mnemonic'] }, "&&Keymap Extensions"), 'workbench.extensions.action.showRecommendedKeymapExtensions');
B
Benjamin Pasero 已提交
404 405 406 407 408
		const snippetsSettings = this.createMenuItem(nls.localize({ key: 'miOpenSnippets', comment: ['&& denotes a mnemonic'] }, "User &&Snippets"), 'workbench.action.openSnippets');
		const colorThemeSelection = this.createMenuItem(nls.localize({ key: 'miSelectColorTheme', comment: ['&& denotes a mnemonic'] }, "&&Color Theme"), 'workbench.action.selectTheme');
		const iconThemeSelection = this.createMenuItem(nls.localize({ key: 'miSelectIconTheme', comment: ['&& denotes a mnemonic'] }, "File &&Icon Theme"), 'workbench.action.selectIconTheme');

		const preferencesMenu = new Menu();
409
		preferencesMenu.append(settings);
E
Erich Gamma 已提交
410 411
		preferencesMenu.append(__separator__());
		preferencesMenu.append(kebindingSettings);
412
		preferencesMenu.append(keymapExtensions);
E
Erich Gamma 已提交
413 414 415
		preferencesMenu.append(__separator__());
		preferencesMenu.append(snippetsSettings);
		preferencesMenu.append(__separator__());
416 417
		preferencesMenu.append(colorThemeSelection);
		preferencesMenu.append(iconThemeSelection);
E
Erich Gamma 已提交
418

419
		return new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miPreferences', comment: ['&& denotes a mnemonic'] }, "&&Preferences")), submenu: preferencesMenu });
E
Erich Gamma 已提交
420 421
	}

B
Benjamin Pasero 已提交
422
	private setOpenRecentMenu(openRecentMenu: Electron.Menu): void {
423
		openRecentMenu.append(this.createMenuItem(nls.localize({ key: 'miReopenClosedEditor', comment: ['&& denotes a mnemonic'] }, "&&Reopen Closed Editor"), 'workbench.action.reopenClosedEditor'));
D
Daniel Imms 已提交
424

425
		const { folders, files } = this.historyService.getRecentPathsList();
E
Erich Gamma 已提交
426 427

		// Folders
428
		if (folders.length > 0) {
429
			openRecentMenu.append(__separator__());
430

B
Benjamin Pasero 已提交
431
			for (let i = 0; i < CodeMenu.MAX_MENU_RECENT_ENTRIES && i < folders.length; i++) {
432
				openRecentMenu.append(this.createOpenRecentMenuItem(folders[i], 'openRecentFolder'));
433
			}
434
		}
E
Erich Gamma 已提交
435 436

		// Files
437
		if (files.length > 0) {
438
			openRecentMenu.append(__separator__());
E
Erich Gamma 已提交
439

B
Benjamin Pasero 已提交
440
			for (let i = 0; i < CodeMenu.MAX_MENU_RECENT_ENTRIES && i < files.length; i++) {
441
				openRecentMenu.append(this.createOpenRecentMenuItem(files[i], 'openRecentFile'));
442
			}
E
Erich Gamma 已提交
443 444
		}

445
		if (folders.length || files.length) {
446 447
			openRecentMenu.append(__separator__());
			openRecentMenu.append(this.createMenuItem(nls.localize({ key: 'miMore', comment: ['&& denotes a mnemonic'] }, "&&More..."), 'workbench.action.openRecent'));
E
Erich Gamma 已提交
448
			openRecentMenu.append(__separator__());
449
			openRecentMenu.append(this.createMenuItem(nls.localize({ key: 'miClearRecentOpen', comment: ['&& denotes a mnemonic'] }, "&&Clear Recent Files"), 'workbench.action.clearRecentFiles'));
E
Erich Gamma 已提交
450 451 452
		}
	}

453 454
	private createOpenRecentMenuItem(path: string, commandId: string): Electron.MenuItem {
		return new MenuItem(this.likeAction(commandId, {
B
Benjamin Pasero 已提交
455
			label: this.unmnemonicLabel(tildify(path, this.environmentService.userHome)), click: (menuItem, win, event) => {
456
				const openInNewWindow = this.isOptionClick(event);
457
				const success = this.windowsService.open({ context: OpenContext.MENU, cli: this.environmentService.args, pathsToOpen: [path], forceNewWindow: openInNewWindow }).length > 0;
B
Benjamin Pasero 已提交
458
				if (!success) {
459
					this.historyService.removeFromRecentPathsList(path);
B
Benjamin Pasero 已提交
460
				}
E
Erich Gamma 已提交
461
			}
462
		}, false));
E
Erich Gamma 已提交
463 464
	}

J
Joao Moreno 已提交
465
	private isOptionClick(event: Electron.Event & Electron.Modifiers): boolean {
466
		return event && ((!isMacintosh && (event.ctrlKey || event.shiftKey)) || (isMacintosh && (event.metaKey || event.altKey)));
467 468
	}

469
	private createRoleMenuItem(label: string, commandId: string, role: Electron.MenuItemRole): Electron.MenuItem {
B
Benjamin Pasero 已提交
470
		const options: Electron.MenuItemOptions = {
471
			label: this.mnemonicLabel(label),
B
Benjamin Pasero 已提交
472
			role,
473 474 475
			enabled: true
		};

476
		return new MenuItem(this.withKeybinding(commandId, options));
477 478
	}

B
Benjamin Pasero 已提交
479 480 481 482 483 484
	private setEditMenu(winLinuxEditMenu: Electron.Menu): void {
		let undo: Electron.MenuItem;
		let redo: Electron.MenuItem;
		let cut: Electron.MenuItem;
		let copy: Electron.MenuItem;
		let paste: Electron.MenuItem;
E
Erich Gamma 已提交
485

486
		if (isMacintosh) {
B
Benjamin Pasero 已提交
487 488
			undo = this.createDevToolsAwareMenuItem(nls.localize({ key: 'miUndo', comment: ['&& denotes a mnemonic'] }, "&&Undo"), 'undo', devTools => devTools.undo());
			redo = this.createDevToolsAwareMenuItem(nls.localize({ key: 'miRedo', comment: ['&& denotes a mnemonic'] }, "&&Redo"), 'redo', devTools => devTools.redo());
B
Benjamin Pasero 已提交
489 490
			cut = this.createRoleMenuItem(nls.localize({ key: 'miCut', comment: ['&& denotes a mnemonic'] }, "Cu&&t"), 'editor.action.clipboardCutAction', 'cut');
			copy = this.createRoleMenuItem(nls.localize({ key: 'miCopy', comment: ['&& denotes a mnemonic'] }, "&&Copy"), 'editor.action.clipboardCopyAction', 'copy');
491
			paste = this.createRoleMenuItem(nls.localize({ key: 'miPaste', comment: ['&& denotes a mnemonic'] }, "&&Paste"), 'editor.action.clipboardPasteAction', 'paste');
E
Erich Gamma 已提交
492
		} else {
B
Benjamin Pasero 已提交
493 494
			undo = this.createMenuItem(nls.localize({ key: 'miUndo', comment: ['&& denotes a mnemonic'] }, "&&Undo"), 'undo');
			redo = this.createMenuItem(nls.localize({ key: 'miRedo', comment: ['&& denotes a mnemonic'] }, "&&Redo"), 'redo');
B
Benjamin Pasero 已提交
495 496
			cut = this.createMenuItem(nls.localize({ key: 'miCut', comment: ['&& denotes a mnemonic'] }, "Cu&&t"), 'editor.action.clipboardCutAction');
			copy = this.createMenuItem(nls.localize({ key: 'miCopy', comment: ['&& denotes a mnemonic'] }, "&&Copy"), 'editor.action.clipboardCopyAction');
B
Benjamin Pasero 已提交
497
			paste = this.createMenuItem(nls.localize({ key: 'miPaste', comment: ['&& denotes a mnemonic'] }, "&&Paste"), 'editor.action.clipboardPasteAction');
E
Erich Gamma 已提交
498 499
		}

B
Benjamin Pasero 已提交
500 501
		const find = this.createMenuItem(nls.localize({ key: 'miFind', comment: ['&& denotes a mnemonic'] }, "&&Find"), 'actions.find');
		const replace = this.createMenuItem(nls.localize({ key: 'miReplace', comment: ['&& denotes a mnemonic'] }, "&&Replace"), 'editor.action.startFindReplaceAction');
S
Sandeep Somavarapu 已提交
502
		const findInFiles = this.createMenuItem(nls.localize({ key: 'miFindInFiles', comment: ['&& denotes a mnemonic'] }, "Find &&in Files"), 'workbench.action.findInFiles');
B
Benjamin Pasero 已提交
503
		const replaceInFiles = this.createMenuItem(nls.localize({ key: 'miReplaceInFiles', comment: ['&& denotes a mnemonic'] }, "Replace &&in Files"), 'workbench.action.replaceInFiles');
E
Erich Gamma 已提交
504

505 506
		const emmetExpandAbbreviation = this.createMenuItem(nls.localize({ key: 'miEmmetExpandAbbreviation', comment: ['&& denotes a mnemonic'] }, "Emmet: E&&xpand Abbreviation"), 'editor.emmet.action.expandAbbreviation');
		const showEmmetCommands = this.createMenuItem(nls.localize({ key: 'miShowEmmetCommands', comment: ['&& denotes a mnemonic'] }, "E&&mmet..."), 'workbench.action.showEmmetCommands');
507 508
		const toggleLineComment = this.createMenuItem(nls.localize({ key: 'miToggleLineComment', comment: ['&& denotes a mnemonic'] }, "&&Toggle Line Comment"), 'editor.action.commentLine');
		const toggleBlockComment = this.createMenuItem(nls.localize({ key: 'miToggleBlockComment', comment: ['&& denotes a mnemonic'] }, "Toggle &&Block Comment"), 'editor.action.blockComment');
509

E
Erich Gamma 已提交
510 511 512 513 514 515 516 517 518 519 520
		[
			undo,
			redo,
			__separator__(),
			cut,
			copy,
			paste,
			__separator__(),
			find,
			replace,
			__separator__(),
S
Sandeep Somavarapu 已提交
521
			findInFiles,
522 523
			replaceInFiles,
			__separator__(),
524 525
			toggleLineComment,
			toggleBlockComment,
526 527
			emmetExpandAbbreviation,
			showEmmetCommands
B
Benjamin Pasero 已提交
528
		].forEach(item => winLinuxEditMenu.append(item));
E
Erich Gamma 已提交
529 530
	}

C
Christof Marti 已提交
531
	private setSelectionMenu(winLinuxEditMenu: Electron.Menu): void {
532 533 534 535 536 537 538 539 540 541 542 543 544
		let multiCursorModifierLabel: string;
		if (this.currentMultiCursorModifierSetting === 'ctrlCmd') {
			// The default has been overwritten
			multiCursorModifierLabel = nls.localize('miMultiCursorAlt', "Use Alt+Click for Multi-Cursor");
		} else {
			multiCursorModifierLabel = (
				isMacintosh
					? nls.localize('miMultiCursorCmd', "Use Cmd+Click for Multi-Cursor")
					: nls.localize('miMultiCursorCtrl', "Use Ctrl+Click for Multi-Cursor")
			);
		}

		const multicursorModifier = this.createMenuItem(multiCursorModifierLabel, 'workbench.action.toggleMultiCursorModifier');
C
Christof Marti 已提交
545 546
		const insertCursorAbove = this.createMenuItem(nls.localize({ key: 'miInsertCursorAbove', comment: ['&& denotes a mnemonic'] }, "&&Add Cursor Above"), 'editor.action.insertCursorAbove');
		const insertCursorBelow = this.createMenuItem(nls.localize({ key: 'miInsertCursorBelow', comment: ['&& denotes a mnemonic'] }, "A&&dd Cursor Below"), 'editor.action.insertCursorBelow');
547
		const insertCursorAtEndOfEachLineSelected = this.createMenuItem(nls.localize({ key: 'miInsertCursorAtEndOfEachLineSelected', comment: ['&& denotes a mnemonic'] }, "Add C&&ursors to Line Ends"), 'editor.action.insertCursorAtEndOfEachLineSelected');
C
Christof Marti 已提交
548 549 550
		const addSelectionToNextFindMatch = this.createMenuItem(nls.localize({ key: 'miAddSelectionToNextFindMatch', comment: ['&& denotes a mnemonic'] }, "Add &&Next Occurrence"), 'editor.action.addSelectionToNextFindMatch');
		const addSelectionToPreviousFindMatch = this.createMenuItem(nls.localize({ key: 'miAddSelectionToPreviousFindMatch', comment: ['&& denotes a mnemonic'] }, "Add P&&revious Occurrence"), 'editor.action.addSelectionToPreviousFindMatch');
		const selectHighlights = this.createMenuItem(nls.localize({ key: 'miSelectHighlights', comment: ['&& denotes a mnemonic'] }, "Select All &&Occurrences"), 'editor.action.selectHighlights');
C
Christof Marti 已提交
551 552 553 554 555 556

		const copyLinesUp = this.createMenuItem(nls.localize({ key: 'miCopyLinesUp', comment: ['&& denotes a mnemonic'] }, "&&Copy Line Up"), 'editor.action.copyLinesUpAction');
		const copyLinesDown = this.createMenuItem(nls.localize({ key: 'miCopyLinesDown', comment: ['&& denotes a mnemonic'] }, "Co&&py Line Down"), 'editor.action.copyLinesDownAction');
		const moveLinesUp = this.createMenuItem(nls.localize({ key: 'miMoveLinesUp', comment: ['&& denotes a mnemonic'] }, "Mo&&ve Line Up"), 'editor.action.moveLinesUpAction');
		const moveLinesDown = this.createMenuItem(nls.localize({ key: 'miMoveLinesDown', comment: ['&& denotes a mnemonic'] }, "Move &&Line Down"), 'editor.action.moveLinesDownAction');

557
		let selectAll: Electron.MenuItem;
558
		if (isMacintosh) {
559 560 561 562
			selectAll = this.createDevToolsAwareMenuItem(nls.localize({ key: 'miSelectAll', comment: ['&& denotes a mnemonic'] }, "&&Select All"), 'editor.action.selectAll', (devTools) => devTools.selectAll());
		} else {
			selectAll = this.createMenuItem(nls.localize({ key: 'miSelectAll', comment: ['&& denotes a mnemonic'] }, "&&Select All"), 'editor.action.selectAll');
		}
C
Christof Marti 已提交
563 564 565 566
		const smartSelectGrow = this.createMenuItem(nls.localize({ key: 'miSmartSelectGrow', comment: ['&& denotes a mnemonic'] }, "&&Expand Selection"), 'editor.action.smartSelect.grow');
		const smartSelectshrink = this.createMenuItem(nls.localize({ key: 'miSmartSelectShrink', comment: ['&& denotes a mnemonic'] }, "&&Shrink Selection"), 'editor.action.smartSelect.shrink');

		[
567 568 569
			selectAll,
			smartSelectGrow,
			smartSelectshrink,
C
Christof Marti 已提交
570 571 572 573 574 575
			__separator__(),
			copyLinesUp,
			copyLinesDown,
			moveLinesUp,
			moveLinesDown,
			__separator__(),
576
			multicursorModifier,
577 578 579 580 581 582
			insertCursorAbove,
			insertCursorBelow,
			insertCursorAtEndOfEachLineSelected,
			addSelectionToNextFindMatch,
			addSelectionToPreviousFindMatch,
			selectHighlights,
C
Christof Marti 已提交
583 584 585
		].forEach(item => winLinuxEditMenu.append(item));
	}

B
Benjamin Pasero 已提交
586
	private setViewMenu(viewMenu: Electron.Menu): void {
B
Benjamin Pasero 已提交
587 588
		const explorer = this.createMenuItem(nls.localize({ key: 'miViewExplorer', comment: ['&& denotes a mnemonic'] }, "&&Explorer"), 'workbench.view.explorer');
		const search = this.createMenuItem(nls.localize({ key: 'miViewSearch', comment: ['&& denotes a mnemonic'] }, "&&Search"), 'workbench.view.search');
J
Joao Moreno 已提交
589
		const scm = this.createMenuItem(nls.localize({ key: 'miViewSCM', comment: ['&& denotes a mnemonic'] }, "S&&CM"), 'workbench.view.scm');
B
Benjamin Pasero 已提交
590 591 592 593 594 595 596
		const debug = this.createMenuItem(nls.localize({ key: 'miViewDebug', comment: ['&& denotes a mnemonic'] }, "&&Debug"), 'workbench.view.debug');
		const extensions = this.createMenuItem(nls.localize({ key: 'miViewExtensions', comment: ['&& denotes a mnemonic'] }, "E&&xtensions"), 'workbench.view.extensions');
		const output = this.createMenuItem(nls.localize({ key: 'miToggleOutput', comment: ['&& denotes a mnemonic'] }, "&&Output"), 'workbench.action.output.toggleOutput');
		const debugConsole = this.createMenuItem(nls.localize({ key: 'miToggleDebugConsole', comment: ['&& denotes a mnemonic'] }, "De&&bug Console"), 'workbench.debug.action.toggleRepl');
		const integratedTerminal = this.createMenuItem(nls.localize({ key: 'miToggleIntegratedTerminal', comment: ['&& denotes a mnemonic'] }, "&&Integrated Terminal"), 'workbench.action.terminal.toggleTerminal');
		const problems = this.createMenuItem(nls.localize({ key: 'miMarker', comment: ['&& denotes a mnemonic'] }, "&&Problems"), 'workbench.actions.view.problems');

597 598 599 600 601 602 603 604
		let additionalViewlets: Electron.MenuItem;
		if (this.extensionViewlets.length) {
			const additionalViewletsMenu = new Menu();

			this.extensionViewlets.forEach(viewlet => {
				additionalViewletsMenu.append(this.createMenuItem(viewlet.label, viewlet.id));
			});

605
			additionalViewlets = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miAdditionalViews', comment: ['&& denotes a mnemonic'] }, "Additional &&Views")), submenu: additionalViewletsMenu, enabled: true });
606 607
		}

B
Benjamin Pasero 已提交
608 609
		const commands = this.createMenuItem(nls.localize({ key: 'miCommandPalette', comment: ['&& denotes a mnemonic'] }, "&&Command Palette..."), 'workbench.action.showCommands');

610
		const fullscreen = new MenuItem(this.withKeybinding('workbench.action.toggleFullScreen', { label: this.mnemonicLabel(nls.localize({ key: 'miToggleFullScreen', comment: ['&& denotes a mnemonic'] }, "Toggle &&Full Screen")), click: () => this.windowsService.getLastActiveWindow().toggleFullScreen(), enabled: this.windowsService.getWindowCount() > 0 }));
I
isidor 已提交
611
		const toggleZenMode = this.createMenuItem(nls.localize('miToggleZenMode', "Toggle Zen Mode"), 'workbench.action.toggleZenMode', this.windowsService.getWindowCount() > 0);
B
Benjamin Pasero 已提交
612 613
		const toggleMenuBar = this.createMenuItem(nls.localize({ key: 'miToggleMenuBar', comment: ['&& denotes a mnemonic'] }, "Toggle Menu &&Bar"), 'workbench.action.toggleMenuBar');
		const splitEditor = this.createMenuItem(nls.localize({ key: 'miSplitEditor', comment: ['&& denotes a mnemonic'] }, "Split &&Editor"), 'workbench.action.splitEditor');
614
		const toggleEditorLayout = this.createMenuItem(nls.localize({ key: 'miToggleEditorLayout', comment: ['&& denotes a mnemonic'] }, "Toggle Editor Group &&Layout"), 'workbench.action.toggleEditorGroupLayout');
B
Benjamin Pasero 已提交
615
		const toggleSidebar = this.createMenuItem(nls.localize({ key: 'miToggleSidebar', comment: ['&& denotes a mnemonic'] }, "&&Toggle Side Bar"), 'workbench.action.toggleSidebarVisibility');
B
Benjamin Pasero 已提交
616 617 618 619 620 621 622 623 624 625

		let moveSideBarLabel: string;
		if (this.currentSidebarLocation !== 'right') {
			moveSideBarLabel = nls.localize({ key: 'miMoveSidebarRight', comment: ['&& denotes a mnemonic'] }, "&&Move Side Bar Right");
		} else {
			moveSideBarLabel = nls.localize({ key: 'miMoveSidebarLeft', comment: ['&& denotes a mnemonic'] }, "&&Move Side Bar Left");
		}

		const moveSidebar = this.createMenuItem(moveSideBarLabel, 'workbench.action.toggleSidebarPosition');

B
Benjamin Pasero 已提交
626
		const togglePanel = this.createMenuItem(nls.localize({ key: 'miTogglePanel', comment: ['&& denotes a mnemonic'] }, "Toggle &&Panel"), 'workbench.action.togglePanel');
B
Benjamin Pasero 已提交
627 628 629 630 631 632 633 634

		let statusBarLabel: string;
		if (this.currentStatusbarVisible) {
			statusBarLabel = nls.localize({ key: 'miHideStatusbar', comment: ['&& denotes a mnemonic'] }, "&&Hide Status Bar");
		} else {
			statusBarLabel = nls.localize({ key: 'miShowStatusbar', comment: ['&& denotes a mnemonic'] }, "&&Show Status Bar");
		}
		const toggleStatusbar = this.createMenuItem(statusBarLabel, 'workbench.action.toggleStatusbarVisibility');
E
Erich Gamma 已提交
635

S
Sanders Lauture 已提交
636 637
		let activityBarLabel: string;
		if (this.currentActivityBarVisible) {
B
Benjamin Pasero 已提交
638
			activityBarLabel = nls.localize({ key: 'miHideActivityBar', comment: ['&& denotes a mnemonic'] }, "Hide &&Activity Bar");
S
Sanders Lauture 已提交
639
		} else {
B
Benjamin Pasero 已提交
640
			activityBarLabel = nls.localize({ key: 'miShowActivityBar', comment: ['&& denotes a mnemonic'] }, "Show &&Activity Bar");
S
Sanders Lauture 已提交
641 642 643
		}
		const toggleActivtyBar = this.createMenuItem(activityBarLabel, 'workbench.action.toggleActivityBarVisibility');

B
Benjamin Pasero 已提交
644
		const toggleWordWrap = this.createMenuItem(nls.localize({ key: 'miToggleWordWrap', comment: ['&& denotes a mnemonic'] }, "Toggle &&Word Wrap"), 'editor.action.toggleWordWrap');
645
		const toggleRenderWhitespace = this.createMenuItem(nls.localize({ key: 'miToggleRenderWhitespace', comment: ['&& denotes a mnemonic'] }, "Toggle &&Render Whitespace"), 'editor.action.toggleRenderWhitespace');
A
Alex Dima 已提交
646
		const toggleRenderControlCharacters = this.createMenuItem(nls.localize({ key: 'miToggleRenderControlCharacters', comment: ['&& denotes a mnemonic'] }, "Toggle &&Control Characters"), 'editor.action.toggleRenderControlCharacter');
647

B
Benjamin Pasero 已提交
648 649 650
		const zoomIn = this.createMenuItem(nls.localize({ key: 'miZoomIn', comment: ['&& denotes a mnemonic'] }, "&&Zoom In"), 'workbench.action.zoomIn');
		const zoomOut = this.createMenuItem(nls.localize({ key: 'miZoomOut', comment: ['&& denotes a mnemonic'] }, "Zoom O&&ut"), 'workbench.action.zoomOut');
		const resetZoom = this.createMenuItem(nls.localize({ key: 'miZoomReset', comment: ['&& denotes a mnemonic'] }, "&&Reset Zoom"), 'workbench.action.zoomReset');
C
Chris Dias 已提交
651

B
Benjamin Pasero 已提交
652
		arrays.coalesce([
653 654
			commands,
			__separator__(),
655 656
			explorer,
			search,
J
Joao Moreno 已提交
657
			scm,
658
			debug,
J
Joao Moreno 已提交
659
			extensions,
660
			additionalViewlets,
661 662 663 664 665
			__separator__(),
			output,
			problems,
			debugConsole,
			integratedTerminal,
C
Chris Dias 已提交
666
			__separator__(),
E
Erich Gamma 已提交
667
			fullscreen,
I
isidor 已提交
668
			toggleZenMode,
669
			isWindows || isLinux ? toggleMenuBar : void 0,
E
Erich Gamma 已提交
670 671
			__separator__(),
			splitEditor,
672
			toggleEditorLayout,
E
Erich Gamma 已提交
673
			moveSidebar,
B
Benjamin Pasero 已提交
674 675 676
			toggleSidebar,
			togglePanel,
			toggleStatusbar,
S
Sanders Lauture 已提交
677
			toggleActivtyBar,
E
Erich Gamma 已提交
678
			__separator__(),
J
Joao Moreno 已提交
679
			toggleWordWrap,
680
			toggleRenderWhitespace,
681
			toggleRenderControlCharacters,
J
Joao Moreno 已提交
682
			__separator__(),
E
Erich Gamma 已提交
683
			zoomIn,
684 685
			zoomOut,
			resetZoom
B
Benjamin Pasero 已提交
686
		]).forEach(item => viewMenu.append(item));
E
Erich Gamma 已提交
687 688
	}

B
Benjamin Pasero 已提交
689
	private setGotoMenu(gotoMenu: Electron.Menu): void {
B
Benjamin Pasero 已提交
690 691
		const back = this.createMenuItem(nls.localize({ key: 'miBack', comment: ['&& denotes a mnemonic'] }, "&&Back"), 'workbench.action.navigateBack');
		const forward = this.createMenuItem(nls.localize({ key: 'miForward', comment: ['&& denotes a mnemonic'] }, "&&Forward"), 'workbench.action.navigateForward');
B
Benjamin Pasero 已提交
692

B
Benjamin Pasero 已提交
693
		const switchEditorMenu = new Menu();
B
Benjamin Pasero 已提交
694

B
Benjamin Pasero 已提交
695 696 697 698
		const nextEditor = this.createMenuItem(nls.localize({ key: 'miNextEditor', comment: ['&& denotes a mnemonic'] }, "&&Next Editor"), 'workbench.action.nextEditor');
		const previousEditor = this.createMenuItem(nls.localize({ key: 'miPreviousEditor', comment: ['&& denotes a mnemonic'] }, "&&Previous Editor"), 'workbench.action.previousEditor');
		const nextEditorInGroup = this.createMenuItem(nls.localize({ key: 'miNextEditorInGroup', comment: ['&& denotes a mnemonic'] }, "&&Next Used Editor in Group"), 'workbench.action.openNextRecentlyUsedEditorInGroup');
		const previousEditorInGroup = this.createMenuItem(nls.localize({ key: 'miPreviousEditorInGroup', comment: ['&& denotes a mnemonic'] }, "&&Previous Used Editor in Group"), 'workbench.action.openPreviousRecentlyUsedEditorInGroup');
B
Benjamin Pasero 已提交
699 700 701 702 703

		[
			nextEditor,
			previousEditor,
			__separator__(),
704
			nextEditorInGroup,
B
Benjamin Pasero 已提交
705 706 707
			previousEditorInGroup
		].forEach(item => switchEditorMenu.append(item));

708
		const switchEditor = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miSwitchEditor', comment: ['&& denotes a mnemonic'] }, "Switch &&Editor")), submenu: switchEditorMenu, enabled: true });
B
Benjamin Pasero 已提交
709

B
Benjamin Pasero 已提交
710
		const switchGroupMenu = new Menu();
B
Benjamin Pasero 已提交
711

712 713 714
		const focusFirstGroup = this.createMenuItem(nls.localize({ key: 'miFocusFirstGroup', comment: ['&& denotes a mnemonic'] }, "&&First Group"), 'workbench.action.focusFirstEditorGroup');
		const focusSecondGroup = this.createMenuItem(nls.localize({ key: 'miFocusSecondGroup', comment: ['&& denotes a mnemonic'] }, "&&Second Group"), 'workbench.action.focusSecondEditorGroup');
		const focusThirdGroup = this.createMenuItem(nls.localize({ key: 'miFocusThirdGroup', comment: ['&& denotes a mnemonic'] }, "&&Third Group"), 'workbench.action.focusThirdEditorGroup');
B
Benjamin Pasero 已提交
715 716
		const nextGroup = this.createMenuItem(nls.localize({ key: 'miNextGroup', comment: ['&& denotes a mnemonic'] }, "&&Next Group"), 'workbench.action.focusNextGroup');
		const previousGroup = this.createMenuItem(nls.localize({ key: 'miPreviousGroup', comment: ['&& denotes a mnemonic'] }, "&&Previous Group"), 'workbench.action.focusPreviousGroup');
B
Benjamin Pasero 已提交
717 718 719 720 721 722 723 724 725 726

		[
			focusFirstGroup,
			focusSecondGroup,
			focusThirdGroup,
			__separator__(),
			nextGroup,
			previousGroup
		].forEach(item => switchGroupMenu.append(item));

727
		const switchGroup = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miSwitchGroup', comment: ['&& denotes a mnemonic'] }, "Switch &&Group")), submenu: switchGroupMenu, enabled: true });
B
Benjamin Pasero 已提交
728

B
Benjamin Pasero 已提交
729
		const gotoFile = this.createMenuItem(nls.localize({ key: 'miGotoFile', comment: ['&& denotes a mnemonic'] }, "Go to &&File..."), 'workbench.action.quickOpen');
730 731
		const gotoSymbolInFile = this.createMenuItem(nls.localize({ key: 'miGotoSymbolInFile', comment: ['&& denotes a mnemonic'] }, "Go to &&Symbol in File..."), 'workbench.action.gotoSymbol');
		const gotoSymbolInWorkspace = this.createMenuItem(nls.localize({ key: 'miGotoSymbolInWorkspace', comment: ['&& denotes a mnemonic'] }, "Go to Symbol in &&Workspace..."), 'workbench.action.showAllSymbols');
B
Benjamin Pasero 已提交
732
		const gotoDefinition = this.createMenuItem(nls.localize({ key: 'miGotoDefinition', comment: ['&& denotes a mnemonic'] }, "Go to &&Definition"), 'editor.action.goToDeclaration');
733 734
		const gotoTypeDefinition = this.createMenuItem(nls.localize({ key: 'miGotoTypeDefinition', comment: ['&& denotes a mnemonic'] }, "Go to &&Type Definition"), 'editor.action.goToTypeDefinition');
		const goToImplementation = this.createMenuItem(nls.localize({ key: 'miGotoImplementation', comment: ['&& denotes a mnemonic'] }, "Go to &&Implementation"), 'editor.action.goToImplementation');
B
Benjamin Pasero 已提交
735
		const gotoLine = this.createMenuItem(nls.localize({ key: 'miGotoLine', comment: ['&& denotes a mnemonic'] }, "Go to &&Line..."), 'workbench.action.gotoLine');
E
Erich Gamma 已提交
736 737 738 739 740

		[
			back,
			forward,
			__separator__(),
B
Benjamin Pasero 已提交
741 742
			switchEditor,
			switchGroup,
E
Erich Gamma 已提交
743 744
			__separator__(),
			gotoFile,
745 746
			gotoSymbolInFile,
			gotoSymbolInWorkspace,
E
Erich Gamma 已提交
747
			gotoDefinition,
748 749
			gotoTypeDefinition,
			goToImplementation,
E
Erich Gamma 已提交
750
			gotoLine
B
Benjamin Pasero 已提交
751
		].forEach(item => gotoMenu.append(item));
E
Erich Gamma 已提交
752 753
	}

I
isidor 已提交
754 755 756 757 758 759
	private setDebugMenu(debugMenu: Electron.Menu): void {
		const start = this.createMenuItem(nls.localize({ key: 'miStartDebugging', comment: ['&& denotes a mnemonic'] }, "&&Start Debugging"), 'workbench.action.debug.start');
		const startWithoutDebugging = this.createMenuItem(nls.localize({ key: 'miStartWithoutDebugging', comment: ['&& denotes a mnemonic'] }, "Start &&Without Debugging"), 'workbench.action.debug.run');
		const stop = this.createMenuItem(nls.localize({ key: 'miStopDebugging', comment: ['&& denotes a mnemonic'] }, "&&Stop Debugging"), 'workbench.action.debug.stop');
		const restart = this.createMenuItem(nls.localize({ key: 'miRestart Debugging', comment: ['&& denotes a mnemonic'] }, "&&Restart Debugging"), 'workbench.action.debug.restart');

I
isidor 已提交
760 761
		const openConfigurations = this.createMenuItem(nls.localize({ key: 'miOpenConfigurations', comment: ['&& denotes a mnemonic'] }, "Open &&Configurations"), 'workbench.action.debug.configure');
		const addConfiguration = this.createMenuItem(nls.localize({ key: 'miAddConfiguration', comment: ['&& denotes a mnemonic'] }, "Add Configuration..."), 'debug.addConfiguration');
I
isidor 已提交
762 763 764 765 766 767 768 769 770 771 772

		const stepOver = this.createMenuItem(nls.localize({ key: 'miStepOver', comment: ['&& denotes a mnemonic'] }, "Step &&Over"), 'workbench.action.debug.stepOver');
		const stepInto = this.createMenuItem(nls.localize({ key: 'miStepInto', comment: ['&& denotes a mnemonic'] }, "Step &&Into"), 'workbench.action.debug.stepInto');
		const stepOut = this.createMenuItem(nls.localize({ key: 'miStepOut', comment: ['&& denotes a mnemonic'] }, "Step O&&ut"), 'workbench.action.debug.stepOut');
		const continueAction = this.createMenuItem(nls.localize({ key: 'miContinue', comment: ['&& denotes a mnemonic'] }, "&&Continue"), 'workbench.action.debug.continue');

		const toggleBreakpoint = this.createMenuItem(nls.localize({ key: 'miToggleBreakpoint', comment: ['&& denotes a mnemonic'] }, "Toggle &&Breakpoint"), 'editor.debug.action.toggleBreakpoint');
		const breakpointsMenu = new Menu();
		breakpointsMenu.append(this.createMenuItem(nls.localize({ key: 'miConditionalBreakpoint', comment: ['&& denotes a mnemonic'] }, "&&Conditional Breakpoint..."), 'editor.debug.action.conditionalBreakpoint'));
		breakpointsMenu.append(this.createMenuItem(nls.localize({ key: 'miColumnBreakpoint', comment: ['&& denotes a mnemonic'] }, "C&&olumn Breakpoint"), 'editor.debug.action.toggleColumnBreakpoint'));
		breakpointsMenu.append(this.createMenuItem(nls.localize({ key: 'miFunctionBreakpoint', comment: ['&& denotes a mnemonic'] }, "&&Function Breakpoint..."), 'workbench.debug.viewlet.action.addFunctionBreakpointAction'));
773
		const newBreakpoints = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miNewBreakpoint', comment: ['&& denotes a mnemonic'] }, "&&New Breakpoint")), submenu: breakpointsMenu });
I
isidor 已提交
774
		const enableAllBreakpoints = this.createMenuItem(nls.localize({ key: 'miEnableAllBreakpoints', comment: ['&& denotes a mnemonic'] }, "Enable All Breakpoints"), 'workbench.debug.viewlet.action.enableAllBreakpoints');
I
isidor 已提交
775
		const disableAllBreakpoints = this.createMenuItem(nls.localize({ key: 'miDisableAllBreakpoints', comment: ['&& denotes a mnemonic'] }, "Disable A&&ll Breakpoints"), 'workbench.debug.viewlet.action.disableAllBreakpoints');
I
isidor 已提交
776
		const removeAllBreakpoints = this.createMenuItem(nls.localize({ key: 'miRemoveAllBreakpoints', comment: ['&& denotes a mnemonic'] }, "Remove &&All Breakpoints"), 'workbench.debug.viewlet.action.removeAllBreakpoints');
I
isidor 已提交
777

I
isidor 已提交
778
		const installAdditionalDebuggers = this.createMenuItem(nls.localize({ key: 'miInstallAdditionalDebuggers', comment: ['&& denotes a mnemonic'] }, "&&Install Additional Debuggers..."), 'debug.installAdditionalDebuggers');
I
isidor 已提交
779 780 781 782 783 784
		[
			start,
			startWithoutDebugging,
			stop,
			restart,
			__separator__(),
I
isidor 已提交
785 786
			openConfigurations,
			addConfiguration,
I
isidor 已提交
787 788 789 790 791 792 793 794
			__separator__(),
			stepOver,
			stepInto,
			stepOut,
			continueAction,
			__separator__(),
			toggleBreakpoint,
			newBreakpoints,
I
isidor 已提交
795
			enableAllBreakpoints,
I
isidor 已提交
796 797 798
			disableAllBreakpoints,
			removeAllBreakpoints,
			__separator__(),
I
isidor 已提交
799
			installAdditionalDebuggers
I
isidor 已提交
800 801 802 803
		].forEach(item => debugMenu.append(item));

	}

B
Benjamin Pasero 已提交
804
	private setMacWindowMenu(macWindowMenu: Electron.Menu): void {
B
Benjamin Pasero 已提交
805
		const minimize = new MenuItem({ label: nls.localize('mMinimize', "Minimize"), role: 'minimize', accelerator: 'Command+M', enabled: this.windowsService.getWindowCount() > 0 });
B
Benjamin Pasero 已提交
806
		const zoom = new MenuItem({ label: nls.localize('mZoom', "Zoom"), role: 'zoom', enabled: this.windowsService.getWindowCount() > 0 });
B
Benjamin Pasero 已提交
807
		const bringAllToFront = new MenuItem({ label: nls.localize('mBringToFront', "Bring All to Front"), role: 'front', enabled: this.windowsService.getWindowCount() > 0 });
B
Benjamin Pasero 已提交
808
		const switchWindow = this.createMenuItem(nls.localize({ key: 'miSwitchWindow', comment: ['&& denotes a mnemonic'] }, "Switch &&Window..."), 'workbench.action.switchWindow', this.windowsService.getWindowCount() > 0);
E
Erich Gamma 已提交
809 810 811

		[
			minimize,
B
Benjamin Pasero 已提交
812 813
			zoom,
			switchWindow,
E
Erich Gamma 已提交
814 815
			__separator__(),
			bringAllToFront
B
Benjamin Pasero 已提交
816
		].forEach(item => macWindowMenu.append(item));
E
Erich Gamma 已提交
817 818
	}

J
fix npe  
Joao Moreno 已提交
819
	private toggleDevTools(): void {
B
Benjamin Pasero 已提交
820
		const w = this.windowsService.getFocusedWindow();
J
fix npe  
Joao Moreno 已提交
821
		if (w && w.win) {
822 823 824 825 826 827
			const contents = w.win.webContents;
			if (w.hasHiddenTitleBarStyle() && !w.win.isFullScreen() && !contents.isDevToolsOpened()) {
				contents.openDevTools({ mode: 'undocked' }); // due to https://github.com/electron/electron/issues/3647
			} else {
				contents.toggleDevTools();
			}
J
fix npe  
Joao Moreno 已提交
828 829 830
		}
	}

B
Benjamin Pasero 已提交
831
	private setHelpMenu(helpMenu: Electron.Menu): void {
832
		const toggleDevToolsItem = new MenuItem(this.likeAction('workbench.action.toggleDevTools', {
833
			label: this.mnemonicLabel(nls.localize({ key: 'miToggleDevTools', comment: ['&& denotes a mnemonic'] }, "&&Toggle Developer Tools")),
J
fix npe  
Joao Moreno 已提交
834
			click: () => this.toggleDevTools(),
B
Benjamin Pasero 已提交
835
			enabled: (this.windowsService.getWindowCount() > 0)
836
		}));
E
Erich Gamma 已提交
837

838
		const showAccessibilityOptions = new MenuItem(this.likeAction('accessibilityOptions', {
839
			label: this.mnemonicLabel(nls.localize({ key: 'miAccessibilityOptions', comment: ['&& denotes a mnemonic'] }, "Accessibility &&Options")),
840 841
			accelerator: null,
			click: () => {
842
				this.openAccessibilityOptions();
843
			}
844
		}, false));
845

B
Benjamin Pasero 已提交
846
		let reportIssuesItem: Electron.MenuItem = null;
B
Benjamin Pasero 已提交
847
		if (product.reportIssueUrl) {
B
Benjamin Pasero 已提交
848 849 850 851 852
			const label = nls.localize({ key: 'miReportIssues', comment: ['&& denotes a mnemonic'] }, "Report &&Issues");

			if (this.windowsService.getWindowCount() > 0) {
				reportIssuesItem = this.createMenuItem(label, 'workbench.action.reportIssues');
			} else {
853
				reportIssuesItem = new MenuItem({ label: this.mnemonicLabel(label), click: () => this.openUrl(product.reportIssueUrl, 'openReportIssues') });
B
Benjamin Pasero 已提交
854 855
			}
		}
J
Joao Moreno 已提交
856

857
		const keyboardShortcutsUrl = isLinux ? product.keyboardShortcutsUrlLinux : isMacintosh ? product.keyboardShortcutsUrlMac : product.keyboardShortcutsUrlWin;
E
Erich Gamma 已提交
858
		arrays.coalesce([
859
			new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miWelcome', comment: ['&& denotes a mnemonic'] }, "&&Welcome")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'workbench.action.showWelcomePage') }),
860
			new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miInteractivePlayground', comment: ['&& denotes a mnemonic'] }, "&&Interactive Playground")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'workbench.action.showInteractivePlayground') }),
861 862
			product.documentationUrl ? new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miDocumentation', comment: ['&& denotes a mnemonic'] }, "&&Documentation")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'workbench.action.openDocumentationUrl') }) : null,
			product.releaseNotesUrl ? new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miReleaseNotes', comment: ['&& denotes a mnemonic'] }, "&&Release Notes")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'update.showCurrentReleaseNotes') }) : null,
863
			__separator__(),
864 865
			keyboardShortcutsUrl ? new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miKeyboardShortcuts', comment: ['&& denotes a mnemonic'] }, "&&Keyboard Shortcuts Reference")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'workbench.action.keybindingsReference') }) : null,
			product.introductoryVideosUrl ? new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miIntroductoryVideos', comment: ['&& denotes a mnemonic'] }, "Introductory &&Videos")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'workbench.action.openIntroductoryVideosUrl') }) : null,
I
isidor 已提交
866
			(product.introductoryVideosUrl || keyboardShortcutsUrl) ? __separator__() : null,
867 868
			product.twitterUrl ? new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miTwitter', comment: ['&& denotes a mnemonic'] }, "&&Join us on Twitter")), click: () => this.openUrl(product.twitterUrl, 'openTwitterUrl') }) : null,
			product.requestFeatureUrl ? new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miUserVoice', comment: ['&& denotes a mnemonic'] }, "&&Search Feature Requests")), click: () => this.openUrl(product.requestFeatureUrl, 'openUserVoiceUrl') }) : null,
B
Benjamin Pasero 已提交
869
			reportIssuesItem,
B
Benjamin Pasero 已提交
870 871
			(product.twitterUrl || product.requestFeatureUrl || product.reportIssueUrl) ? __separator__() : null,
			product.licenseUrl ? new MenuItem({
872
				label: this.mnemonicLabel(nls.localize({ key: 'miLicense', comment: ['&& denotes a mnemonic'] }, "View &&License")), click: () => {
873
					if (language) {
B
Benjamin Pasero 已提交
874
						const queryArgChar = product.licenseUrl.indexOf('?') > 0 ? '&' : '?';
875
						this.openUrl(`${product.licenseUrl}${queryArgChar}lang=${language}`, 'openLicenseUrl');
B
Benjamin Pasero 已提交
876
					} else {
B
Benjamin Pasero 已提交
877
						this.openUrl(product.licenseUrl, 'openLicenseUrl');
B
Benjamin Pasero 已提交
878
					}
879
				}
B
Benjamin Pasero 已提交
880
			}) : null,
B
Benjamin Pasero 已提交
881
			product.privacyStatementUrl ? new MenuItem({
882
				label: this.mnemonicLabel(nls.localize({ key: 'miPrivacyStatement', comment: ['&& denotes a mnemonic'] }, "&&Privacy Statement")), click: () => {
883
					if (language) {
B
Benjamin Pasero 已提交
884
						const queryArgChar = product.licenseUrl.indexOf('?') > 0 ? '&' : '?';
885
						this.openUrl(`${product.privacyStatementUrl}${queryArgChar}lang=${language}`, 'openPrivacyStatement');
886
					} else {
B
Benjamin Pasero 已提交
887
						this.openUrl(product.privacyStatementUrl, 'openPrivacyStatement');
888 889 890
					}
				}
			}) : null,
B
Benjamin Pasero 已提交
891
			(product.licenseUrl || product.privacyStatementUrl) ? __separator__() : null,
E
Erich Gamma 已提交
892
			toggleDevToolsItem,
893
			isWindows && product.quality !== 'stable' ? showAccessibilityOptions : null
B
Benjamin Pasero 已提交
894
		]).forEach(item => helpMenu.append(item));
E
Erich Gamma 已提交
895

896
		if (!isMacintosh) {
E
Erich Gamma 已提交
897 898 899 900 901 902 903
			const updateMenuItems = this.getUpdateMenuItems();
			if (updateMenuItems.length) {
				helpMenu.append(__separator__());
				updateMenuItems.forEach(i => helpMenu.append(i));
			}

			helpMenu.append(__separator__());
904
			helpMenu.append(new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miAbout', comment: ['&& denotes a mnemonic'] }, "&&About")), click: () => this.openAboutDialog() }));
E
Erich Gamma 已提交
905 906 907
		}
	}

T
t-amqi 已提交
908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925
	private setTaskMenu(taskMenu: Electron.Menu): void {
		const runTask = this.createMenuItem(nls.localize({ key: 'miRunTask', comment: ['&& denotes a mnemonic'] }, "&&Run Task..."), 'workbench.action.tasks.runTask');
		const restartTask = this.createMenuItem(nls.localize({ key: 'miRestartTask', comment: ['&& denotes a mnemonic'] }, "R&&estart Task"), 'workbench.action.tasks.restartTask');
		const terminateTask = this.createMenuItem(nls.localize({ key: 'miTerminateTask', comment: ['&& denotes a mnemonic'] }, "&&Terminate Task"), 'workbench.action.tasks.terminate');
		const buildTask = this.createMenuItem(nls.localize({ key: 'miBuildTask', comment: ['&& denotes a mnemonic'] }, "&&Build Task"), 'workbench.action.tasks.build');
		const testTask = this.createMenuItem(nls.localize({ key: 'miTestTask', comment: ['&& denotes a mnemonic'] }, "Test T&&ask"), 'workbench.action.tasks.test');
		const showTaskLog = this.createMenuItem(nls.localize({ key: 'miShowTaskLog', comment: ['&& denotes a mnemonic'] }, "&&Show Task Log"), 'workbench.action.tasks.showLog');

		[
			showTaskLog,
			runTask,
			restartTask,
			terminateTask,
			buildTask,
			testTask
		].forEach(item => taskMenu.append(item));
	}

926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941
	private openAccessibilityOptions(): void {
		let win = new BrowserWindow({
			alwaysOnTop: true,
			skipTaskbar: true,
			resizable: false,
			width: 450,
			height: 300,
			show: true,
			title: nls.localize('accessibilityOptionsWindowTitle', "Accessibility Options")
		});

		win.setMenuBarVisibility(false);

		win.loadURL('chrome://accessibility');
	}

B
Benjamin Pasero 已提交
942
	private getUpdateMenuItems(): Electron.MenuItem[] {
B
Benjamin Pasero 已提交
943
		switch (this.updateService.state) {
J
Joao Moreno 已提交
944
			case UpdateState.Uninitialized:
E
Erich Gamma 已提交
945 946
				return [];

J
Joao Moreno 已提交
947
			case UpdateState.UpdateDownloaded:
B
Benjamin Pasero 已提交
948 949
				return [new MenuItem({
					label: nls.localize('miRestartToUpdate', "Restart To Update..."), click: () => {
J
fix npe  
Joao Moreno 已提交
950
						this.reportMenuActionTelemetry('RestartToUpdate');
J
Joao Moreno 已提交
951
						this.updateService.quitAndInstall();
B
Benjamin Pasero 已提交
952 953
					}
				})];
E
Erich Gamma 已提交
954

J
Joao Moreno 已提交
955
			case UpdateState.CheckingForUpdate:
E
Erich Gamma 已提交
956 957
				return [new MenuItem({ label: nls.localize('miCheckingForUpdates', "Checking For Updates..."), enabled: false })];

J
Joao Moreno 已提交
958
			case UpdateState.UpdateAvailable:
959
				if (isLinux) {
J
Joao Moreno 已提交
960
					return [new MenuItem({
J
Joao Moreno 已提交
961
						label: nls.localize('miDownloadUpdate', "Download Available Update"), click: () => {
J
Joao Moreno 已提交
962
							this.updateService.quitAndInstall();
J
Joao Moreno 已提交
963 964 965 966
						}
					})];
				}

967
				const updateAvailableLabel = isWindows
E
Erich Gamma 已提交
968 969 970 971 972 973
					? nls.localize('miDownloadingUpdate', "Downloading Update...")
					: nls.localize('miInstallingUpdate', "Installing Update...");

				return [new MenuItem({ label: updateAvailableLabel, enabled: false })];

			default:
B
Benjamin Pasero 已提交
974
				const result = [new MenuItem({
975
					label: nls.localize('miCheckForUpdates', "Check for Updates..."), click: () => setTimeout(() => {
J
fix npe  
Joao Moreno 已提交
976
						this.reportMenuActionTelemetry('CheckForUpdate');
J
Joao Moreno 已提交
977
						this.updateService.checkForUpdates(true);
B
Benjamin Pasero 已提交
978 979
					}, 0)
				})];
E
Erich Gamma 已提交
980 981 982 983 984

				return result;
		}
	}

985
	private createMenuItem(label: string, commandId: string | string[], enabled?: boolean, checked?: boolean): Electron.MenuItem;
B
Benjamin Pasero 已提交
986 987
	private createMenuItem(label: string, click: () => void, enabled?: boolean, checked?: boolean): Electron.MenuItem;
	private createMenuItem(arg1: string, arg2: any, arg3?: boolean, arg4?: boolean): Electron.MenuItem {
988
		const label = this.mnemonicLabel(arg1);
989
		const click: () => void = (typeof arg2 === 'function') ? arg2 : (menuItem, win, event) => {
990
			let commandId = arg2;
991
			if (Array.isArray(arg2)) {
992
				commandId = this.isOptionClick(event) ? arg2[1] : arg2[0]; // support alternative action if we got multiple action Ids and the option key was pressed while invoking
993 994
			}

995
			this.windowsService.sendToFocused('vscode:runAction', commandId);
996
		};
B
Benjamin Pasero 已提交
997
		const enabled = typeof arg3 === 'boolean' ? arg3 : this.windowsService.getWindowCount() > 0;
B
Benjamin Pasero 已提交
998
		const checked = typeof arg4 === 'boolean' ? arg4 : false;
E
Erich Gamma 已提交
999

1000
		let commandId: string;
E
Erich Gamma 已提交
1001
		if (typeof arg2 === 'string') {
1002
			commandId = arg2;
E
Erich Gamma 已提交
1003 1004
		}

B
Benjamin Pasero 已提交
1005
		const options: Electron.MenuItemOptions = {
B
Benjamin Pasero 已提交
1006 1007 1008
			label,
			click,
			enabled
E
Erich Gamma 已提交
1009 1010
		};

B
Benjamin Pasero 已提交
1011 1012 1013 1014 1015
		if (checked) {
			options['type'] = 'checkbox';
			options['checked'] = checked;
		}

1016
		return new MenuItem(this.withKeybinding(commandId, options));
E
Erich Gamma 已提交
1017 1018
	}

1019 1020
	private createDevToolsAwareMenuItem(label: string, commandId: string, devToolsFocusedFn: (contents: Electron.WebContents) => void): Electron.MenuItem {
		return new MenuItem(this.withKeybinding(commandId, {
1021
			label: this.mnemonicLabel(label),
B
Benjamin Pasero 已提交
1022
			enabled: this.windowsService.getWindowCount() > 0,
1023
			click: () => {
B
Benjamin Pasero 已提交
1024
				const windowInFocus = this.windowsService.getFocusedWindow();
1025 1026 1027 1028
				if (!windowInFocus) {
					return;
				}

B
Benjamin Pasero 已提交
1029 1030
				if (windowInFocus.win.webContents.isDevToolsFocused()) {
					devToolsFocusedFn(windowInFocus.win.webContents.devToolsWebContents);
1031
				} else {
1032
					this.windowsService.sendToFocused('vscode:runAction', commandId);
1033 1034
				}
			}
1035
		}));
1036 1037
	}

1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
	private withKeybinding(commandId: string, options: Electron.MenuItemOptions): Electron.MenuItemOptions {
		const binding = this.keybindingsResolver.getKeybinding(commandId);

		// Apply binding if there is one
		if (binding && binding.label) {

			// if the binding is native, we can just apply it
			if (binding.isNative) {
				options.accelerator = binding.label;
			}

			// the keybinding is not native so we cannot show it as part of the accelerator of
			// the menu item. we fallback to a different strategy so that we always display it
			else {
B
Benjamin Pasero 已提交
1052
				const bindingIndex = options.label.indexOf('[');
1053
				if (bindingIndex >= 0) {
B
Benjamin Pasero 已提交
1054
					options.label = `${options.label.substr(0, bindingIndex)} [${binding.label}]`;
1055
				} else {
B
Benjamin Pasero 已提交
1056
					options.label = `${options.label} [${binding.label}]`;
1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069
				}
			}
		}

		// Unset bindings if there is none
		else {
			options.accelerator = void 0;
		}

		return options;
	}

	private likeAction(commandId: string, options: Electron.MenuItemOptions, setAccelerator = !options.accelerator): Electron.MenuItemOptions {
1070
		if (setAccelerator) {
1071
			options = this.withKeybinding(commandId, options);
1072
		}
1073

1074 1075
		const originalClick = options.click;
		options.click = (item, window, event) => {
1076
			this.reportMenuActionTelemetry(commandId);
1077 1078 1079 1080 1081
			if (originalClick) {
				originalClick(item, window, event);
			}
		};

1082
		return options;
E
Erich Gamma 已提交
1083 1084
	}

J
fix npe  
Joao Moreno 已提交
1085
	private openAboutDialog(): void {
B
Benjamin Pasero 已提交
1086
		const lastActiveWindow = this.windowsService.getFocusedWindow() || this.windowsService.getLastActiveWindow();
J
fix npe  
Joao Moreno 已提交
1087 1088

		dialog.showMessageBox(lastActiveWindow && lastActiveWindow.win, {
B
Benjamin Pasero 已提交
1089
			title: product.nameLong,
J
fix npe  
Joao Moreno 已提交
1090
			type: 'info',
B
Benjamin Pasero 已提交
1091
			message: product.nameLong,
J
fix npe  
Joao Moreno 已提交
1092 1093 1094
			detail: nls.localize('aboutDetail',
				"\nVersion {0}\nCommit {1}\nDate {2}\nShell {3}\nRenderer {4}\nNode {5}",
				app.getVersion(),
B
Benjamin Pasero 已提交
1095 1096
				product.commit || 'Unknown',
				product.date || 'Unknown',
J
fix npe  
Joao Moreno 已提交
1097 1098 1099 1100 1101 1102
				process.versions['electron'],
				process.versions['chrome'],
				process.versions['node']
			),
			buttons: [nls.localize('okButton', "OK")],
			noLink: true
B
Benjamin Pasero 已提交
1103
		}, result => null);
J
fix npe  
Joao Moreno 已提交
1104 1105 1106

		this.reportMenuActionTelemetry('showAboutDialog');
	}
E
Erich Gamma 已提交
1107

J
fix npe  
Joao Moreno 已提交
1108 1109 1110
	private openUrl(url: string, id: string): void {
		shell.openExternal(url);
		this.reportMenuActionTelemetry(id);
E
Erich Gamma 已提交
1111 1112
	}

J
fix npe  
Joao Moreno 已提交
1113
	private reportMenuActionTelemetry(id: string): void {
1114
		this.telemetryService.publicLog('workbenchActionExecuted', { id, from: telemetryFrom });
J
fix npe  
Joao Moreno 已提交
1115
	}
E
Erich Gamma 已提交
1116

1117 1118 1119 1120
	private mnemonicLabel(label: string): string {
		if (isMacintosh || !this.currentEnableMenuBarMnemonics) {
			return label.replace(/\(&&\w\)|&&/g, ''); // no mnemonic support on mac
		}
E
Erich Gamma 已提交
1121

1122
		return label.replace(/&&/g, '&');
E
Erich Gamma 已提交
1123 1124
	}

1125 1126 1127 1128
	private unmnemonicLabel(label: string): string {
		if (isMacintosh || !this.currentEnableMenuBarMnemonics) {
			return label; // no mnemonic support on mac
		}
1129

1130
		return label.replace(/&/g, '&&');
1131
	}
1132
}
1133

1134 1135
function __separator__(): Electron.MenuItem {
	return new MenuItem({ type: 'separator' });
1136
}