menus.ts 58.3 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
122
		this.configurationService.onDidUpdateConfiguration(e => this.onConfigurationUpdated(this.configurationService.getConfiguration<IConfiguration>(), 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
		}

B
renames  
Benjamin Pasero 已提交
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.pickFileFolderAndOpen(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.pickFolderAndOpen(this.isOptionClick(event), undefined, { from: telemetryFrom }) }));
E
Erich Gamma 已提交
344

345 346
		let openFile: Electron.MenuItem;
		if (hasNoWindows) {
B
renames  
Benjamin Pasero 已提交
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.pickFileAndOpen(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
		const isMultiRootEnabled = (product.quality !== 'stable'); // TODO@Ben multi root
B
Benjamin Pasero 已提交
357
		const addFolder = this.createMenuItem(nls.localize({ key: 'miAddRootFolder', comment: ['&& denotes a mnemonic'] }, "&&Add Root Folder"), 'workbench.action.addRootFolder', this.windowsService.getWindowCount() > 0);
B
Benjamin Pasero 已提交
358

B
Benjamin Pasero 已提交
359 360 361
		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 已提交
362

B
Benjamin Pasero 已提交
363
		const autoSaveEnabled = [AutoSaveConfiguration.AFTER_DELAY, AutoSaveConfiguration.ON_FOCUS_CHANGE, AutoSaveConfiguration.ON_WINDOW_CHANGE].some(s => this.currentAutoSaveSetting === s);
364
		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 已提交
365

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

368
		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 已提交
369
		const revertFile = this.createMenuItem(nls.localize({ key: 'miRevert', comment: ['&& denotes a mnemonic'] }, "Re&&vert File"), 'workbench.action.files.revert', this.windowsService.getWindowCount() > 0);
370
		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 已提交
371

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

375
		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 已提交
376 377 378 379 380

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

B
Benjamin Pasero 已提交
405
	private getPreferencesMenu(): Electron.MenuItem {
S
Sandeep Somavarapu 已提交
406
		const settings = this.createMenuItem(nls.localize({ key: 'miOpenSettings', comment: ['&& denotes a mnemonic'] }, "&&Settings"), 'workbench.action.openGlobalSettings');
B
Benjamin Pasero 已提交
407
		const kebindingSettings = this.createMenuItem(nls.localize({ key: 'miOpenKeymap', comment: ['&& denotes a mnemonic'] }, "&&Keyboard Shortcuts"), 'workbench.action.openGlobalKeybindings');
408
		const keymapExtensions = this.createMenuItem(nls.localize({ key: 'miOpenKeymapExtensions', comment: ['&& denotes a mnemonic'] }, "&&Keymap Extensions"), 'workbench.extensions.action.showRecommendedKeymapExtensions');
B
Benjamin Pasero 已提交
409 410 411 412 413
		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();
414
		preferencesMenu.append(settings);
E
Erich Gamma 已提交
415 416
		preferencesMenu.append(__separator__());
		preferencesMenu.append(kebindingSettings);
417
		preferencesMenu.append(keymapExtensions);
E
Erich Gamma 已提交
418 419 420
		preferencesMenu.append(__separator__());
		preferencesMenu.append(snippetsSettings);
		preferencesMenu.append(__separator__());
421 422
		preferencesMenu.append(colorThemeSelection);
		preferencesMenu.append(iconThemeSelection);
E
Erich Gamma 已提交
423

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

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

430
		const { folders, files } = this.historyService.getRecentPathsList();
E
Erich Gamma 已提交
431 432

		// Folders
433
		if (folders.length > 0) {
434
			openRecentMenu.append(__separator__());
435

B
Benjamin Pasero 已提交
436
			for (let i = 0; i < CodeMenu.MAX_MENU_RECENT_ENTRIES && i < folders.length; i++) {
437
				openRecentMenu.append(this.createOpenRecentMenuItem(folders[i], 'openRecentFolder'));
438
			}
439
		}
E
Erich Gamma 已提交
440 441

		// Files
442
		if (files.length > 0) {
443
			openRecentMenu.append(__separator__());
E
Erich Gamma 已提交
444

B
Benjamin Pasero 已提交
445
			for (let i = 0; i < CodeMenu.MAX_MENU_RECENT_ENTRIES && i < files.length; i++) {
446
				openRecentMenu.append(this.createOpenRecentMenuItem(files[i], 'openRecentFile'));
447
			}
E
Erich Gamma 已提交
448 449
		}

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

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

J
Joao Moreno 已提交
470
	private isOptionClick(event: Electron.Event & Electron.Modifiers): boolean {
471
		return event && ((!isMacintosh && (event.ctrlKey || event.shiftKey)) || (isMacintosh && (event.metaKey || event.altKey)));
472 473
	}

474
	private createRoleMenuItem(label: string, commandId: string, role: Electron.MenuItemRole): Electron.MenuItem {
B
Benjamin Pasero 已提交
475
		const options: Electron.MenuItemOptions = {
476
			label: this.mnemonicLabel(label),
B
Benjamin Pasero 已提交
477
			role,
478 479 480
			enabled: true
		};

481
		return new MenuItem(this.withKeybinding(commandId, options));
482 483
	}

B
Benjamin Pasero 已提交
484 485 486 487 488 489
	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 已提交
490

491
		if (isMacintosh) {
B
Benjamin Pasero 已提交
492 493
			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 已提交
494 495
			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');
496
			paste = this.createRoleMenuItem(nls.localize({ key: 'miPaste', comment: ['&& denotes a mnemonic'] }, "&&Paste"), 'editor.action.clipboardPasteAction', 'paste');
E
Erich Gamma 已提交
497
		} else {
B
Benjamin Pasero 已提交
498 499
			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 已提交
500 501
			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 已提交
502
			paste = this.createMenuItem(nls.localize({ key: 'miPaste', comment: ['&& denotes a mnemonic'] }, "&&Paste"), 'editor.action.clipboardPasteAction');
E
Erich Gamma 已提交
503 504
		}

B
Benjamin Pasero 已提交
505 506
		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 已提交
507
		const findInFiles = this.createMenuItem(nls.localize({ key: 'miFindInFiles', comment: ['&& denotes a mnemonic'] }, "Find &&in Files"), 'workbench.action.findInFiles');
B
Benjamin Pasero 已提交
508
		const replaceInFiles = this.createMenuItem(nls.localize({ key: 'miReplaceInFiles', comment: ['&& denotes a mnemonic'] }, "Replace &&in Files"), 'workbench.action.replaceInFiles');
E
Erich Gamma 已提交
509

510 511
		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');
512 513
		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');
514

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

C
Christof Marti 已提交
536
	private setSelectionMenu(winLinuxEditMenu: Electron.Menu): void {
537 538 539 540 541 542 543 544 545 546 547 548 549
		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 已提交
550 551
		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');
552
		const insertCursorAtEndOfEachLineSelected = this.createMenuItem(nls.localize({ key: 'miInsertCursorAtEndOfEachLineSelected', comment: ['&& denotes a mnemonic'] }, "Add C&&ursors to Line Ends"), 'editor.action.insertCursorAtEndOfEachLineSelected');
C
Christof Marti 已提交
553 554 555
		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 已提交
556 557 558 559 560 561

		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');

562
		let selectAll: Electron.MenuItem;
563
		if (isMacintosh) {
564 565 566 567
			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 已提交
568 569 570 571
		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');

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

B
Benjamin Pasero 已提交
591
	private setViewMenu(viewMenu: Electron.Menu): void {
B
Benjamin Pasero 已提交
592 593
		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 已提交
594
		const scm = this.createMenuItem(nls.localize({ key: 'miViewSCM', comment: ['&& denotes a mnemonic'] }, "S&&CM"), 'workbench.view.scm');
B
Benjamin Pasero 已提交
595 596 597 598 599 600 601
		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');

602 603 604 605 606 607 608 609
		let additionalViewlets: Electron.MenuItem;
		if (this.extensionViewlets.length) {
			const additionalViewletsMenu = new Menu();

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

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

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

615
		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 已提交
616
		const toggleZenMode = this.createMenuItem(nls.localize('miToggleZenMode', "Toggle Zen Mode"), 'workbench.action.toggleZenMode', this.windowsService.getWindowCount() > 0);
B
Benjamin Pasero 已提交
617 618
		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');
619
		const toggleEditorLayout = this.createMenuItem(nls.localize({ key: 'miToggleEditorLayout', comment: ['&& denotes a mnemonic'] }, "Toggle Editor Group &&Layout"), 'workbench.action.toggleEditorGroupLayout');
B
Benjamin Pasero 已提交
620
		const toggleSidebar = this.createMenuItem(nls.localize({ key: 'miToggleSidebar', comment: ['&& denotes a mnemonic'] }, "&&Toggle Side Bar"), 'workbench.action.toggleSidebarVisibility');
B
Benjamin Pasero 已提交
621 622 623 624 625 626 627 628 629 630

		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 已提交
631
		const togglePanel = this.createMenuItem(nls.localize({ key: 'miTogglePanel', comment: ['&& denotes a mnemonic'] }, "Toggle &&Panel"), 'workbench.action.togglePanel');
B
Benjamin Pasero 已提交
632 633 634 635 636 637 638 639

		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 已提交
640

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

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

B
Benjamin Pasero 已提交
653 654 655
		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 已提交
656

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

B
Benjamin Pasero 已提交
694
	private setGotoMenu(gotoMenu: Electron.Menu): void {
B
Benjamin Pasero 已提交
695 696
		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 已提交
697

B
Benjamin Pasero 已提交
698
		const switchEditorMenu = new Menu();
B
Benjamin Pasero 已提交
699

B
Benjamin Pasero 已提交
700 701 702 703
		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 已提交
704 705 706 707 708

		[
			nextEditor,
			previousEditor,
			__separator__(),
709
			nextEditorInGroup,
B
Benjamin Pasero 已提交
710 711 712
			previousEditorInGroup
		].forEach(item => switchEditorMenu.append(item));

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

B
Benjamin Pasero 已提交
715
		const switchGroupMenu = new Menu();
B
Benjamin Pasero 已提交
716

717 718 719
		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 已提交
720 721
		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 已提交
722 723 724 725 726 727 728 729 730 731

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

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

B
Benjamin Pasero 已提交
734
		const gotoFile = this.createMenuItem(nls.localize({ key: 'miGotoFile', comment: ['&& denotes a mnemonic'] }, "Go to &&File..."), 'workbench.action.quickOpen');
735 736
		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 已提交
737
		const gotoDefinition = this.createMenuItem(nls.localize({ key: 'miGotoDefinition', comment: ['&& denotes a mnemonic'] }, "Go to &&Definition"), 'editor.action.goToDeclaration');
738 739
		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 已提交
740
		const gotoLine = this.createMenuItem(nls.localize({ key: 'miGotoLine', comment: ['&& denotes a mnemonic'] }, "Go to &&Line..."), 'workbench.action.gotoLine');
E
Erich Gamma 已提交
741 742 743 744 745

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

I
isidor 已提交
759 760 761 762 763 764
	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 已提交
765 766
		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 已提交
767 768 769 770 771 772 773 774 775 776 777

		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'));
778
		const newBreakpoints = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miNewBreakpoint', comment: ['&& denotes a mnemonic'] }, "&&New Breakpoint")), submenu: breakpointsMenu });
I
isidor 已提交
779
		const enableAllBreakpoints = this.createMenuItem(nls.localize({ key: 'miEnableAllBreakpoints', comment: ['&& denotes a mnemonic'] }, "Enable All Breakpoints"), 'workbench.debug.viewlet.action.enableAllBreakpoints');
I
isidor 已提交
780
		const disableAllBreakpoints = this.createMenuItem(nls.localize({ key: 'miDisableAllBreakpoints', comment: ['&& denotes a mnemonic'] }, "Disable A&&ll Breakpoints"), 'workbench.debug.viewlet.action.disableAllBreakpoints');
I
isidor 已提交
781
		const removeAllBreakpoints = this.createMenuItem(nls.localize({ key: 'miRemoveAllBreakpoints', comment: ['&& denotes a mnemonic'] }, "Remove &&All Breakpoints"), 'workbench.debug.viewlet.action.removeAllBreakpoints');
I
isidor 已提交
782

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

	}

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

		[
			minimize,
B
Benjamin Pasero 已提交
817 818
			zoom,
			switchWindow,
E
Erich Gamma 已提交
819 820
			__separator__(),
			bringAllToFront
B
Benjamin Pasero 已提交
821
		].forEach(item => macWindowMenu.append(item));
E
Erich Gamma 已提交
822 823
	}

J
fix npe  
Joao Moreno 已提交
824
	private toggleDevTools(): void {
B
Benjamin Pasero 已提交
825
		const w = this.windowsService.getFocusedWindow();
J
fix npe  
Joao Moreno 已提交
826
		if (w && w.win) {
827 828 829 830 831 832
			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 已提交
833 834 835
		}
	}

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

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

B
Benjamin Pasero 已提交
851
		let reportIssuesItem: Electron.MenuItem = null;
B
Benjamin Pasero 已提交
852
		if (product.reportIssueUrl) {
B
Benjamin Pasero 已提交
853 854 855 856 857
			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 {
858
				reportIssuesItem = new MenuItem({ label: this.mnemonicLabel(label), click: () => this.openUrl(product.reportIssueUrl, 'openReportIssues') });
B
Benjamin Pasero 已提交
859 860
			}
		}
J
Joao Moreno 已提交
861

862
		const keyboardShortcutsUrl = isLinux ? product.keyboardShortcutsUrlLinux : isMacintosh ? product.keyboardShortcutsUrlMac : product.keyboardShortcutsUrlWin;
E
Erich Gamma 已提交
863
		arrays.coalesce([
864
			new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miWelcome', comment: ['&& denotes a mnemonic'] }, "&&Welcome")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'workbench.action.showWelcomePage') }),
865
			new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miInteractivePlayground', comment: ['&& denotes a mnemonic'] }, "&&Interactive Playground")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'workbench.action.showInteractivePlayground') }),
866 867
			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,
868
			__separator__(),
869 870
			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 已提交
871
			(product.introductoryVideosUrl || keyboardShortcutsUrl) ? __separator__() : null,
872 873
			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 已提交
874
			reportIssuesItem,
B
Benjamin Pasero 已提交
875 876
			(product.twitterUrl || product.requestFeatureUrl || product.reportIssueUrl) ? __separator__() : null,
			product.licenseUrl ? new MenuItem({
877
				label: this.mnemonicLabel(nls.localize({ key: 'miLicense', comment: ['&& denotes a mnemonic'] }, "View &&License")), click: () => {
878
					if (language) {
B
Benjamin Pasero 已提交
879
						const queryArgChar = product.licenseUrl.indexOf('?') > 0 ? '&' : '?';
880
						this.openUrl(`${product.licenseUrl}${queryArgChar}lang=${language}`, 'openLicenseUrl');
B
Benjamin Pasero 已提交
881
					} else {
B
Benjamin Pasero 已提交
882
						this.openUrl(product.licenseUrl, 'openLicenseUrl');
B
Benjamin Pasero 已提交
883
					}
884
				}
B
Benjamin Pasero 已提交
885
			}) : null,
B
Benjamin Pasero 已提交
886
			product.privacyStatementUrl ? new MenuItem({
887
				label: this.mnemonicLabel(nls.localize({ key: 'miPrivacyStatement', comment: ['&& denotes a mnemonic'] }, "&&Privacy Statement")), click: () => {
888
					if (language) {
B
Benjamin Pasero 已提交
889
						const queryArgChar = product.licenseUrl.indexOf('?') > 0 ? '&' : '?';
890
						this.openUrl(`${product.privacyStatementUrl}${queryArgChar}lang=${language}`, 'openPrivacyStatement');
891
					} else {
B
Benjamin Pasero 已提交
892
						this.openUrl(product.privacyStatementUrl, 'openPrivacyStatement');
893 894 895
					}
				}
			}) : null,
B
Benjamin Pasero 已提交
896
			(product.licenseUrl || product.privacyStatementUrl) ? __separator__() : null,
E
Erich Gamma 已提交
897
			toggleDevToolsItem,
898
			isWindows && product.quality !== 'stable' ? showAccessibilityOptions : null
B
Benjamin Pasero 已提交
899
		]).forEach(item => helpMenu.append(item));
E
Erich Gamma 已提交
900

901
		if (!isMacintosh) {
E
Erich Gamma 已提交
902 903 904 905 906 907 908
			const updateMenuItems = this.getUpdateMenuItems();
			if (updateMenuItems.length) {
				helpMenu.append(__separator__());
				updateMenuItems.forEach(i => helpMenu.append(i));
			}

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

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

		[
923
			configureTask,
T
t-amqi 已提交
924 925 926 927 928 929 930 931 932
			showTaskLog,
			runTask,
			restartTask,
			terminateTask,
			buildTask,
			testTask
		].forEach(item => taskMenu.append(item));
	}

933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948
	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 已提交
949
	private getUpdateMenuItems(): Electron.MenuItem[] {
B
Benjamin Pasero 已提交
950
		switch (this.updateService.state) {
J
Joao Moreno 已提交
951
			case UpdateState.Uninitialized:
E
Erich Gamma 已提交
952 953
				return [];

J
Joao Moreno 已提交
954
			case UpdateState.UpdateDownloaded:
B
Benjamin Pasero 已提交
955 956
				return [new MenuItem({
					label: nls.localize('miRestartToUpdate', "Restart To Update..."), click: () => {
J
fix npe  
Joao Moreno 已提交
957
						this.reportMenuActionTelemetry('RestartToUpdate');
J
Joao Moreno 已提交
958
						this.updateService.quitAndInstall();
B
Benjamin Pasero 已提交
959 960
					}
				})];
E
Erich Gamma 已提交
961

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

J
Joao Moreno 已提交
965
			case UpdateState.UpdateAvailable:
966
				if (isLinux) {
J
Joao Moreno 已提交
967
					return [new MenuItem({
J
Joao Moreno 已提交
968
						label: nls.localize('miDownloadUpdate', "Download Available Update"), click: () => {
J
Joao Moreno 已提交
969
							this.updateService.quitAndInstall();
J
Joao Moreno 已提交
970 971 972 973
						}
					})];
				}

974
				const updateAvailableLabel = isWindows
E
Erich Gamma 已提交
975 976 977 978 979 980
					? nls.localize('miDownloadingUpdate', "Downloading Update...")
					: nls.localize('miInstallingUpdate', "Installing Update...");

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

			default:
B
Benjamin Pasero 已提交
981
				const result = [new MenuItem({
982
					label: nls.localize('miCheckForUpdates', "Check for Updates..."), click: () => setTimeout(() => {
J
fix npe  
Joao Moreno 已提交
983
						this.reportMenuActionTelemetry('CheckForUpdate');
J
Joao Moreno 已提交
984
						this.updateService.checkForUpdates(true);
B
Benjamin Pasero 已提交
985 986
					}, 0)
				})];
E
Erich Gamma 已提交
987 988 989 990 991

				return result;
		}
	}

992
	private createMenuItem(label: string, commandId: string | string[], enabled?: boolean, checked?: boolean): Electron.MenuItem;
B
Benjamin Pasero 已提交
993 994
	private createMenuItem(label: string, click: () => void, enabled?: boolean, checked?: boolean): Electron.MenuItem;
	private createMenuItem(arg1: string, arg2: any, arg3?: boolean, arg4?: boolean): Electron.MenuItem {
995
		const label = this.mnemonicLabel(arg1);
996
		const click: () => void = (typeof arg2 === 'function') ? arg2 : (menuItem, win, event) => {
997
			let commandId = arg2;
998
			if (Array.isArray(arg2)) {
999
				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
1000 1001
			}

1002
			this.windowsService.sendToFocused('vscode:runAction', commandId);
1003
		};
B
Benjamin Pasero 已提交
1004
		const enabled = typeof arg3 === 'boolean' ? arg3 : this.windowsService.getWindowCount() > 0;
B
Benjamin Pasero 已提交
1005
		const checked = typeof arg4 === 'boolean' ? arg4 : false;
E
Erich Gamma 已提交
1006

1007
		let commandId: string;
E
Erich Gamma 已提交
1008
		if (typeof arg2 === 'string') {
1009
			commandId = arg2;
E
Erich Gamma 已提交
1010 1011
		}

B
Benjamin Pasero 已提交
1012
		const options: Electron.MenuItemOptions = {
B
Benjamin Pasero 已提交
1013 1014 1015
			label,
			click,
			enabled
E
Erich Gamma 已提交
1016 1017
		};

B
Benjamin Pasero 已提交
1018 1019 1020 1021 1022
		if (checked) {
			options['type'] = 'checkbox';
			options['checked'] = checked;
		}

1023
		return new MenuItem(this.withKeybinding(commandId, options));
E
Erich Gamma 已提交
1024 1025
	}

1026 1027
	private createDevToolsAwareMenuItem(label: string, commandId: string, devToolsFocusedFn: (contents: Electron.WebContents) => void): Electron.MenuItem {
		return new MenuItem(this.withKeybinding(commandId, {
1028
			label: this.mnemonicLabel(label),
B
Benjamin Pasero 已提交
1029
			enabled: this.windowsService.getWindowCount() > 0,
1030
			click: () => {
B
Benjamin Pasero 已提交
1031
				const windowInFocus = this.windowsService.getFocusedWindow();
1032 1033 1034 1035
				if (!windowInFocus) {
					return;
				}

B
Benjamin Pasero 已提交
1036 1037
				if (windowInFocus.win.webContents.isDevToolsFocused()) {
					devToolsFocusedFn(windowInFocus.win.webContents.devToolsWebContents);
1038
				} else {
1039
					this.windowsService.sendToFocused('vscode:runAction', commandId);
1040 1041
				}
			}
1042
		}));
1043 1044
	}

1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
	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 已提交
1059
				const bindingIndex = options.label.indexOf('[');
1060
				if (bindingIndex >= 0) {
B
Benjamin Pasero 已提交
1061
					options.label = `${options.label.substr(0, bindingIndex)} [${binding.label}]`;
1062
				} else {
B
Benjamin Pasero 已提交
1063
					options.label = `${options.label} [${binding.label}]`;
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
				}
			}
		}

		// 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 {
1077
		if (setAccelerator) {
1078
			options = this.withKeybinding(commandId, options);
1079
		}
1080

1081 1082
		const originalClick = options.click;
		options.click = (item, window, event) => {
1083
			this.reportMenuActionTelemetry(commandId);
1084 1085 1086 1087 1088
			if (originalClick) {
				originalClick(item, window, event);
			}
		};

1089
		return options;
E
Erich Gamma 已提交
1090 1091
	}

J
fix npe  
Joao Moreno 已提交
1092
	private openAboutDialog(): void {
B
Benjamin Pasero 已提交
1093
		const lastActiveWindow = this.windowsService.getFocusedWindow() || this.windowsService.getLastActiveWindow();
J
fix npe  
Joao Moreno 已提交
1094 1095

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

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

J
fix npe  
Joao Moreno 已提交
1115 1116 1117
	private openUrl(url: string, id: string): void {
		shell.openExternal(url);
		this.reportMenuActionTelemetry(id);
E
Erich Gamma 已提交
1118 1119
	}

J
fix npe  
Joao Moreno 已提交
1120
	private reportMenuActionTelemetry(id: string): void {
1121
		this.telemetryService.publicLog('workbenchActionExecuted', { id, from: telemetryFrom });
J
fix npe  
Joao Moreno 已提交
1122
	}
E
Erich Gamma 已提交
1123

1124 1125 1126 1127
	private mnemonicLabel(label: string): string {
		if (isMacintosh || !this.currentEnableMenuBarMnemonics) {
			return label.replace(/\(&&\w\)|&&/g, ''); // no mnemonic support on mac
		}
E
Erich Gamma 已提交
1128

1129
		return label.replace(/&&/g, '&');
E
Erich Gamma 已提交
1130 1131
	}

1132 1133 1134 1135
	private unmnemonicLabel(label: string): string {
		if (isMacintosh || !this.currentEnableMenuBarMnemonics) {
			return label; // no mnemonic support on mac
		}
1136

1137
		return label.replace(/&/g, '&&');
1138
	}
1139
}
1140

1141 1142
function __separator__(): Electron.MenuItem {
	return new MenuItem({ type: 'separator' });
1143
}