menus.ts 58.0 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';
C
Christof Marti 已提交
13 14
import { OpenContext } from 'vs/code/common/windows';
import { IWindowsMainService } from 'vs/code/electron-main/windows';
15
import { VSCodeWindow } from 'vs/code/electron-main/window';
B
Benjamin Pasero 已提交
16
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
17
import { IStorageService } from 'vs/code/electron-main/storage';
B
Benjamin Pasero 已提交
18
import { IFilesConfiguration, AutoSaveConfiguration } from 'vs/platform/files/common/files';
J
Joao Moreno 已提交
19
import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
J
Joao Moreno 已提交
20
import { IUpdateService, State as UpdateState } from 'vs/platform/update/common/update';
21
import product from 'vs/platform/node/product';
22
import { RunOnceScheduler } from 'vs/base/common/async';
23 24 25 26
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
import Event, { Emitter, once } from 'vs/base/common/event';
import { ConfigWatcher } from 'vs/base/node/config';
import { IUserFriendlyKeybinding } from 'vs/platform/keybinding/common/keybinding';
E
Erich Gamma 已提交
27

28
interface IKeybinding {
B
Benjamin Pasero 已提交
29
	id: string;
30 31
	label: string;
	isNative: boolean;
E
Erich Gamma 已提交
32 33
}

34 35 36 37 38
interface IExtensionViewlet {
	id: string;
	label: string;
}

B
Benjamin Pasero 已提交
39
interface IConfiguration extends IFilesConfiguration {
40 41 42
	window: {
		enableMenuBarMnemonics: boolean;
	};
B
Benjamin Pasero 已提交
43 44 45 46 47 48
	workbench: {
		sideBar: {
			location: 'left' | 'right';
		},
		statusBar: {
			visible: boolean;
S
Sanders Lauture 已提交
49 50 51
		},
		activityBar: {
			visible: boolean;
B
Benjamin Pasero 已提交
52 53 54 55
		}
	};
}

56
class KeybindingsResolver {
E
Erich Gamma 已提交
57 58 59

	private static lastKnownKeybindingsMapStorageKey = 'lastKnownKeybindings';

60
	private commandIds: Set<string>;
61
	private keybindings: { [commandId: string]: IKeybinding };
62 63 64 65 66 67 68 69 70 71 72 73
	private keybindingsWatcher: ConfigWatcher<IUserFriendlyKeybinding[]>;

	private _onKeybindingsChanged = new Emitter<void>();
	onKeybindingsChanged: Event<void> = this._onKeybindingsChanged.event;

	constructor(
		@IStorageService private storageService: IStorageService,
		@IEnvironmentService environmentService: IEnvironmentService,
		@IWindowsMainService private windowsService: IWindowsMainService
	) {
		this.commandIds = new Set<string>();
		this.keybindings = this.storageService.getItem<{ [id: string]: string; }>(KeybindingsResolver.lastKnownKeybindingsMapStorageKey) || Object.create(null);
74
		this.keybindingsWatcher = new ConfigWatcher<IUserFriendlyKeybinding[]>(environmentService.appKeybindingsPath, { changeBufferDelay: 100 });
75 76 77 78 79 80 81 82 83 84 85 86

		this.registerListeners();
	}

	private registerListeners(): void {

		// Resolve keybindings when any first window is loaded
		const onceOnWindowReady = once(this.windowsService.onWindowReady);
		onceOnWindowReady(win => this.resolveKeybindings(win));

		// Listen to resolved keybindings from window
		ipc.on('vscode:keybindingsResolved', (event, rawKeybindings: string) => {
87
			let keybindings: IKeybinding[] = [];
88 89 90 91 92 93 94 95 96
			try {
				keybindings = JSON.parse(rawKeybindings);
			} catch (error) {
				// Should not happen
			}

			// Fill hash map of resolved keybindings and check for changes
			let keybindingsChanged = false;
			let keybindingsCount = 0;
97
			const resolvedKeybindings: { [commandId: string]: IKeybinding } = Object.create(null);
98
			keybindings.forEach(keybinding => {
99
				keybindingsCount++;
100

101
				resolvedKeybindings[keybinding.id] = keybinding;
B
Benjamin Pasero 已提交
102

103 104
				if (!this.keybindings[keybinding.id] || keybinding.label !== this.keybindings[keybinding.id].label) {
					keybindingsChanged = true;
105 106 107 108 109 110 111 112 113
				}
			});

			// A keybinding might have been unassigned, so we have to account for that too
			if (Object.keys(this.keybindings).length !== keybindingsCount) {
				keybindingsChanged = true;
			}

			if (keybindingsChanged) {
B
Benjamin Pasero 已提交
114
				this.keybindings = resolvedKeybindings;
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
				this.storageService.setItem(KeybindingsResolver.lastKnownKeybindingsMapStorageKey, this.keybindings); // keep to restore instantly after restart

				this._onKeybindingsChanged.fire();
			}
		});

		// Resolve keybindings again when keybindings.json changes
		this.keybindingsWatcher.onDidUpdateConfiguration(() => this.resolveKeybindings());

		// Resolve keybindings when window reloads because an installed extension could have an impact
		this.windowsService.onWindowReload(() => this.resolveKeybindings());
	}

	private resolveKeybindings(win: VSCodeWindow = this.windowsService.getLastActiveWindow()): void {
		if (this.commandIds.size && win) {
			const commandIds = [];
			this.commandIds.forEach(id => commandIds.push(id));
			win.sendWhenReady('vscode:resolveKeybindings', JSON.stringify(commandIds));
		}
	}

136 137 138 139 140
	public getKeybinding(commandId: string): IKeybinding {
		if (!commandId) {
			return void 0;
		}

141 142 143 144 145 146 147 148
		if (!this.commandIds.has(commandId)) {
			this.commandIds.add(commandId);
		}

		return this.keybindings[commandId];
	}
}

149 150
const telemetryFrom = 'menu';

151 152
export class VSCodeMenu {

153
	private static MAX_MENU_RECENT_ENTRIES = 10;
154

B
Benjamin Pasero 已提交
155
	private currentAutoSaveSetting: string;
B
Benjamin Pasero 已提交
156 157
	private currentSidebarLocation: 'left' | 'right';
	private currentStatusbarVisible: boolean;
S
Sanders Lauture 已提交
158
	private currentActivityBarVisible: boolean;
159
	private currentEnableMenuBarMnemonics: boolean;
B
Benjamin Pasero 已提交
160

B
Benjamin Pasero 已提交
161
	private isQuitting: boolean;
E
Erich Gamma 已提交
162 163
	private appMenuInstalled: boolean;

164 165
	private menuUpdater: RunOnceScheduler;

166
	private keybindingsResolver: KeybindingsResolver;
E
Erich Gamma 已提交
167

168 169
	private extensionViewlets: IExtensionViewlet[];

J
Joao Moreno 已提交
170
	constructor(
B
Benjamin Pasero 已提交
171
		@IUpdateService private updateService: IUpdateService,
172
		@IInstantiationService instantiationService: IInstantiationService,
B
Benjamin Pasero 已提交
173
		@IConfigurationService private configurationService: IConfigurationService,
J
Joao Moreno 已提交
174
		@IWindowsMainService private windowsService: IWindowsMainService,
J
Joao Moreno 已提交
175 176
		@IEnvironmentService private environmentService: IEnvironmentService,
		@ITelemetryService private telemetryService: ITelemetryService
J
Joao Moreno 已提交
177
	) {
178
		this.extensionViewlets = [];
E
Erich Gamma 已提交
179

180
		this.menuUpdater = new RunOnceScheduler(() => this.doUpdateMenu(), 0);
181
		this.keybindingsResolver = instantiationService.createInstance(KeybindingsResolver);
182

B
Benjamin Pasero 已提交
183
		this.onConfigurationUpdated(this.configurationService.getConfiguration<IConfiguration>());
E
Erich Gamma 已提交
184 185

		this.install();
186 187

		this.registerListeners();
E
Erich Gamma 已提交
188 189 190 191 192 193
	}

	private registerListeners(): void {

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

197
		// Listen to some events from window service
B
Benjamin Pasero 已提交
198
		this.windowsService.onPathsOpen(paths => this.updateMenu());
199 200
		this.windowsService.onRecentPathsChange(paths => this.updateMenu());
		this.windowsService.onWindowClose(_ => this.onClose(this.windowsService.getWindowCount()));
E
Erich Gamma 已提交
201

202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
		// 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 已提交
217
		// Update when auto save config changes
B
Benjamin Pasero 已提交
218
		this.configurationService.onDidUpdateConfiguration(e => this.onConfigurationUpdated(e.config, true /* update menu if changed */));
B
Benjamin Pasero 已提交
219

B
Benjamin Pasero 已提交
220
		// Listen to update service
221
		this.updateService.onStateChange(() => this.updateMenu());
222 223 224

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

B
Benjamin Pasero 已提交
227
	private onConfigurationUpdated(config: IConfiguration, handleMenu?: boolean): void {
B
Benjamin Pasero 已提交
228
		let updateMenu = false;
B
Benjamin Pasero 已提交
229 230 231
		const newAutoSaveSetting = config && config.files && config.files.autoSave;
		if (newAutoSaveSetting !== this.currentAutoSaveSetting) {
			this.currentAutoSaveSetting = newAutoSaveSetting;
B
Benjamin Pasero 已提交
232 233 234
			updateMenu = true;
		}

235 236 237 238 239
		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 已提交
240

241 242 243 244 245 246 247 248
		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 已提交
249

250 251 252 253 254 255 256
		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 已提交
257 258
		}

259 260 261 262 263 264 265 266 267
		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 已提交
268
		if (handleMenu && updateMenu) {
B
Benjamin Pasero 已提交
269 270 271 272
			this.updateMenu();
		}
	}

E
Erich Gamma 已提交
273
	private updateMenu(): void {
274 275 276 277
		this.menuUpdater.schedule(); // buffer multiple attempts to update the menu
	}

	private doUpdateMenu(): void {
E
Erich Gamma 已提交
278 279 280

		// 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 已提交
281
		// See also https://github.com/electron/electron/issues/846
E
Erich Gamma 已提交
282 283 284 285 286 287 288 289 290 291 292
		//
		// 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 已提交
293
	private onClose(remainingWindowCount: number): void {
294
		if (remainingWindowCount === 0 && isMacintosh) {
E
Erich Gamma 已提交
295 296 297 298 299 300 301
			this.updateMenu();
		}
	}

	private install(): void {

		// Menus
B
Benjamin Pasero 已提交
302
		const menubar = new Menu();
E
Erich Gamma 已提交
303 304

		// Mac: Application
B
Benjamin Pasero 已提交
305
		let macApplicationMenuItem: Electron.MenuItem;
306
		if (isMacintosh) {
B
Benjamin Pasero 已提交
307
			const applicationMenu = new Menu();
B
Benjamin Pasero 已提交
308
			macApplicationMenuItem = new MenuItem({ label: product.nameShort, submenu: applicationMenu });
E
Erich Gamma 已提交
309 310 311 312
			this.setMacApplicationMenu(applicationMenu);
		}

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

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

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

E
Erich Gamma 已提交
327
		// View
B
Benjamin Pasero 已提交
328
		const viewMenu = new Menu();
329
		const viewMenuItem = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'mView', comment: ['&& denotes a mnemonic'] }, "&&View")), submenu: viewMenu });
E
Erich Gamma 已提交
330 331 332
		this.setViewMenu(viewMenu);

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

I
isidor 已提交
337 338
		// Debug
		const debugMenu = new Menu();
339
		const debugMenuItem = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'mDebug', comment: ['&& denotes a mnemonic'] }, "&&Debug")), submenu: debugMenu });
I
isidor 已提交
340 341 342
		this.setDebugMenu(debugMenu);


E
Erich Gamma 已提交
343
		// Mac: Window
B
Benjamin Pasero 已提交
344
		let macWindowMenuItem: Electron.MenuItem;
345
		if (isMacintosh) {
B
Benjamin Pasero 已提交
346
			const windowMenu = new Menu();
347
			macWindowMenuItem = new MenuItem({ label: this.mnemonicLabel(nls.localize('mWindow', "Window")), submenu: windowMenu, role: 'window' });
E
Erich Gamma 已提交
348 349 350 351
			this.setMacWindowMenu(windowMenu);
		}

		// Help
B
Benjamin Pasero 已提交
352
		const helpMenu = new Menu();
353
		const helpMenuItem = new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'mHelp', comment: ['&& denotes a mnemonic'] }, "&&Help")), submenu: helpMenu, role: 'help' });
E
Erich Gamma 已提交
354 355 356 357 358 359 360 361 362
		this.setHelpMenu(helpMenu);

		// Menu Structure
		if (macApplicationMenuItem) {
			menubar.append(macApplicationMenuItem);
		}

		menubar.append(fileMenuItem);
		menubar.append(editMenuItem);
C
Christof Marti 已提交
363
		menubar.append(selectionMenuItem);
E
Erich Gamma 已提交
364 365
		menubar.append(viewMenuItem);
		menubar.append(gotoMenuItem);
I
isidor 已提交
366
		menubar.append(debugMenuItem);
E
Erich Gamma 已提交
367 368 369 370 371 372 373 374 375 376

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

		menubar.append(helpMenuItem);

		Menu.setApplicationMenu(menubar);

		// Dock Menu
377
		if (isMacintosh && !this.appMenuInstalled) {
E
Erich Gamma 已提交
378 379
			this.appMenuInstalled = true;

B
Benjamin Pasero 已提交
380
			const dockMenu = new Menu();
381
			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 已提交
382

383
			app.dock.setMenu(dockMenu);
E
Erich Gamma 已提交
384 385 386
		}
	}

B
Benjamin Pasero 已提交
387
	private setMacApplicationMenu(macApplicationMenu: Electron.Menu): void {
B
Benjamin Pasero 已提交
388
		const about = new MenuItem({ label: nls.localize('mAbout', "About {0}", product.nameLong), role: 'about' });
B
Benjamin Pasero 已提交
389 390
		const checkForUpdates = this.getUpdateMenuItems();
		const preferences = this.getPreferencesMenu();
391 392
		const servicesMenu = new Menu();
		const services = new MenuItem({ label: nls.localize('mServices', "Services"), role: 'services', submenu: servicesMenu });
B
Benjamin Pasero 已提交
393
		const hide = new MenuItem({ label: nls.localize('mHide', "Hide {0}", product.nameLong), role: 'hide', accelerator: 'Command+H' });
B
Benjamin Pasero 已提交
394 395
		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' });
396
		const quit = new MenuItem(this.likeAction('workbench.action.quit', { label: nls.localize('miQuit', "Quit {0}", product.nameLong), click: () => this.windowsService.quit() }));
B
Benjamin Pasero 已提交
397 398

		const actions = [about];
E
Erich Gamma 已提交
399 400 401 402 403
		actions.push(...checkForUpdates);
		actions.push(...[
			__separator__(),
			preferences,
			__separator__(),
404 405
			services,
			__separator__(),
E
Erich Gamma 已提交
406 407 408 409 410 411 412 413 414 415
			hide,
			hideOthers,
			showAll,
			__separator__(),
			quit
		]);

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

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

B
Benjamin Pasero 已提交
419
		let newFile: Electron.MenuItem;
E
Erich Gamma 已提交
420
		if (hasNoWindows) {
421
			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 已提交
422
		} else {
B
Benjamin Pasero 已提交
423
			newFile = this.createMenuItem(nls.localize({ key: 'miNewFile', comment: ['&& denotes a mnemonic'] }, "&&New File"), 'workbench.action.files.newUntitledFile');
E
Erich Gamma 已提交
424 425
		}

426 427
		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 已提交
428

429 430
		let openFile: Electron.MenuItem;
		if (hasNoWindows) {
431
			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 }) }));
432
		} else {
433
			openFile = this.createMenuItem(nls.localize({ key: 'miOpenFile', comment: ['&& denotes a mnemonic'] }, "&&Open File..."), ['workbench.action.files.openFile', 'workbench.action.files.openFileInNewWindow']);
434 435
		}

B
Benjamin Pasero 已提交
436
		const openRecentMenu = new Menu();
E
Erich Gamma 已提交
437
		this.setOpenRecentMenu(openRecentMenu);
438
		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 已提交
439

B
Benjamin Pasero 已提交
440 441 442
		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 已提交
443

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

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

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

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

456
		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 已提交
457 458 459 460 461

		arrays.coalesce([
			newFile,
			newWindow,
			__separator__(),
462 463 464
			isMacintosh ? open : null,
			!isMacintosh ? openFile : null,
			!isMacintosh ? openFolder : null,
E
Erich Gamma 已提交
465 466 467 468 469 470
			openRecent,
			__separator__(),
			saveFile,
			saveFileAs,
			saveAllFiles,
			__separator__(),
B
Benjamin Pasero 已提交
471 472
			autoSave,
			__separator__(),
473 474
			!isMacintosh ? preferences : null,
			!isMacintosh ? __separator__() : null,
E
Erich Gamma 已提交
475 476 477
			revertFile,
			closeEditor,
			closeFolder,
478 479 480
			!isMacintosh ? closeWindow : null,
			!isMacintosh ? __separator__() : null,
			!isMacintosh ? exit : null
B
Benjamin Pasero 已提交
481
		]).forEach(item => fileMenu.append(item));
E
Erich Gamma 已提交
482 483
	}

B
Benjamin Pasero 已提交
484
	private getPreferencesMenu(): Electron.MenuItem {
S
Sandeep Somavarapu 已提交
485
		const settings = this.createMenuItem(nls.localize({ key: 'miOpenSettings', comment: ['&& denotes a mnemonic'] }, "&&Settings"), 'workbench.action.openGlobalSettings');
B
Benjamin Pasero 已提交
486
		const kebindingSettings = this.createMenuItem(nls.localize({ key: 'miOpenKeymap', comment: ['&& denotes a mnemonic'] }, "&&Keyboard Shortcuts"), 'workbench.action.openGlobalKeybindings');
487
		const keymapExtensions = this.createMenuItem(nls.localize({ key: 'miOpenKeymapExtensions', comment: ['&& denotes a mnemonic'] }, "&&Keymap Extensions"), 'workbench.extensions.action.showRecommendedKeymapExtensions');
B
Benjamin Pasero 已提交
488 489 490 491 492
		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();
493
		preferencesMenu.append(settings);
E
Erich Gamma 已提交
494 495
		preferencesMenu.append(__separator__());
		preferencesMenu.append(kebindingSettings);
496
		preferencesMenu.append(keymapExtensions);
E
Erich Gamma 已提交
497 498 499
		preferencesMenu.append(__separator__());
		preferencesMenu.append(snippetsSettings);
		preferencesMenu.append(__separator__());
500 501
		preferencesMenu.append(colorThemeSelection);
		preferencesMenu.append(iconThemeSelection);
E
Erich Gamma 已提交
502

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

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

A
Alex Dima 已提交
509
		const { folders, files } = this.windowsService.getRecentPathsList();
E
Erich Gamma 已提交
510 511

		// Folders
512
		if (folders.length > 0) {
513
			openRecentMenu.append(__separator__());
514 515

			for (let i = 0; i < VSCodeMenu.MAX_MENU_RECENT_ENTRIES && i < folders.length; i++) {
516
				openRecentMenu.append(this.createOpenRecentMenuItem(folders[i], 'openRecentFolder'));
517
			}
518
		}
E
Erich Gamma 已提交
519 520

		// Files
521
		if (files.length > 0) {
522
			openRecentMenu.append(__separator__());
E
Erich Gamma 已提交
523

524
			for (let i = 0; i < VSCodeMenu.MAX_MENU_RECENT_ENTRIES && i < files.length; i++) {
525
				openRecentMenu.append(this.createOpenRecentMenuItem(files[i], 'openRecentFile'));
526
			}
E
Erich Gamma 已提交
527 528
		}

529
		if (folders.length || files.length) {
E
Erich Gamma 已提交
530
			openRecentMenu.append(__separator__());
531
			openRecentMenu.append(this.createMenuItem(nls.localize({ key: 'miClearRecentOpen', comment: ['&& denotes a mnemonic'] }, "&&Clear Recent Files"), 'workbench.action.clearRecentFiles'));
E
Erich Gamma 已提交
532 533 534
		}
	}

535
	private createOpenRecentMenuItem(path: string, commandId: string): Electron.MenuItem {
536
		let label = path;
537
		if ((isMacintosh || isLinux) && path.indexOf(this.environmentService.userHome) === 0) {
538
			label = `~${path.substr(this.environmentService.userHome.length)}`;
539 540
		}

541
		return new MenuItem(this.likeAction(commandId, {
542
			label: this.unmnemonicLabel(label), click: (menuItem, win, event) => {
543
				const openInNewWindow = this.isOptionClick(event);
544
				const success = !!this.windowsService.open({ context: OpenContext.MENU, cli: this.environmentService.args, pathsToOpen: [path], forceNewWindow: openInNewWindow });
B
Benjamin Pasero 已提交
545
				if (!success) {
546
					this.windowsService.removeFromRecentPathsList(path);
B
Benjamin Pasero 已提交
547
				}
E
Erich Gamma 已提交
548
			}
549
		}, false));
E
Erich Gamma 已提交
550 551
	}

J
Joao Moreno 已提交
552
	private isOptionClick(event: Electron.Event & Electron.Modifiers): boolean {
553
		return event && ((!isMacintosh && (event.ctrlKey || event.shiftKey)) || (isMacintosh && (event.metaKey || event.altKey)));
554 555
	}

556
	private createRoleMenuItem(label: string, commandId: string, role: Electron.MenuItemRole): Electron.MenuItem {
B
Benjamin Pasero 已提交
557
		const options: Electron.MenuItemOptions = {
558
			label: this.mnemonicLabel(label),
B
Benjamin Pasero 已提交
559
			role,
560 561 562
			enabled: true
		};

563
		return new MenuItem(this.withKeybinding(commandId, options));
564 565
	}

B
Benjamin Pasero 已提交
566 567 568 569 570 571
	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 已提交
572

573
		if (isMacintosh) {
B
Benjamin Pasero 已提交
574 575
			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 已提交
576 577
			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');
578
			paste = this.createRoleMenuItem(nls.localize({ key: 'miPaste', comment: ['&& denotes a mnemonic'] }, "&&Paste"), 'editor.action.clipboardPasteAction', 'paste');
E
Erich Gamma 已提交
579
		} else {
B
Benjamin Pasero 已提交
580 581
			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 已提交
582 583
			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 已提交
584
			paste = this.createMenuItem(nls.localize({ key: 'miPaste', comment: ['&& denotes a mnemonic'] }, "&&Paste"), 'editor.action.clipboardPasteAction');
E
Erich Gamma 已提交
585 586
		}

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

592 593
		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');
594 595
		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');
596

E
Erich Gamma 已提交
597 598 599 600 601 602 603 604 605 606 607
		[
			undo,
			redo,
			__separator__(),
			cut,
			copy,
			paste,
			__separator__(),
			find,
			replace,
			__separator__(),
S
Sandeep Somavarapu 已提交
608
			findInFiles,
609 610
			replaceInFiles,
			__separator__(),
611 612
			toggleLineComment,
			toggleBlockComment,
613 614
			emmetExpandAbbreviation,
			showEmmetCommands
B
Benjamin Pasero 已提交
615
		].forEach(item => winLinuxEditMenu.append(item));
E
Erich Gamma 已提交
616 617
	}

C
Christof Marti 已提交
618 619 620
	private setSelectionMenu(winLinuxEditMenu: Electron.Menu): void {
		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');
621
		const insertCursorAtEndOfEachLineSelected = this.createMenuItem(nls.localize({ key: 'miInsertCursorAtEndOfEachLineSelected', comment: ['&& denotes a mnemonic'] }, "Add C&&ursors to Line Ends"), 'editor.action.insertCursorAtEndOfEachLineSelected');
C
Christof Marti 已提交
622 623 624
		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 已提交
625 626 627 628 629 630

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

631
		let selectAll: Electron.MenuItem;
632
		if (isMacintosh) {
633 634 635 636
			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 已提交
637 638 639 640
		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');

		[
641 642 643
			selectAll,
			smartSelectGrow,
			smartSelectshrink,
C
Christof Marti 已提交
644 645 646 647 648 649
			__separator__(),
			copyLinesUp,
			copyLinesDown,
			moveLinesUp,
			moveLinesDown,
			__separator__(),
650 651 652 653 654 655
			insertCursorAbove,
			insertCursorBelow,
			insertCursorAtEndOfEachLineSelected,
			addSelectionToNextFindMatch,
			addSelectionToPreviousFindMatch,
			selectHighlights,
C
Christof Marti 已提交
656 657 658
		].forEach(item => winLinuxEditMenu.append(item));
	}

B
Benjamin Pasero 已提交
659
	private setViewMenu(viewMenu: Electron.Menu): void {
B
Benjamin Pasero 已提交
660 661
		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 已提交
662
		const scm = this.createMenuItem(nls.localize({ key: 'miViewSCM', comment: ['&& denotes a mnemonic'] }, "S&&CM"), 'workbench.view.scm');
B
Benjamin Pasero 已提交
663 664 665 666 667 668 669
		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');

670 671 672 673 674 675 676 677
		let additionalViewlets: Electron.MenuItem;
		if (this.extensionViewlets.length) {
			const additionalViewletsMenu = new Menu();

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

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

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

683
		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 已提交
684
		const toggleZenMode = this.createMenuItem(nls.localize('miToggleZenMode', "Toggle Zen Mode"), 'workbench.action.toggleZenMode', this.windowsService.getWindowCount() > 0);
B
Benjamin Pasero 已提交
685 686
		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');
687
		const toggleEditorLayout = this.createMenuItem(nls.localize({ key: 'miToggleEditorLayout', comment: ['&& denotes a mnemonic'] }, "Toggle Editor Group &&Layout"), 'workbench.action.toggleEditorGroupLayout');
B
Benjamin Pasero 已提交
688
		const toggleSidebar = this.createMenuItem(nls.localize({ key: 'miToggleSidebar', comment: ['&& denotes a mnemonic'] }, "&&Toggle Side Bar"), 'workbench.action.toggleSidebarVisibility');
B
Benjamin Pasero 已提交
689 690 691 692 693 694 695 696 697 698

		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 已提交
699
		const togglePanel = this.createMenuItem(nls.localize({ key: 'miTogglePanel', comment: ['&& denotes a mnemonic'] }, "Toggle &&Panel"), 'workbench.action.togglePanel');
B
Benjamin Pasero 已提交
700 701 702 703 704 705 706 707

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

S
Sanders Lauture 已提交
709 710
		let activityBarLabel: string;
		if (this.currentActivityBarVisible) {
B
Benjamin Pasero 已提交
711
			activityBarLabel = nls.localize({ key: 'miHideActivityBar', comment: ['&& denotes a mnemonic'] }, "Hide &&Activity Bar");
S
Sanders Lauture 已提交
712
		} else {
B
Benjamin Pasero 已提交
713
			activityBarLabel = nls.localize({ key: 'miShowActivityBar', comment: ['&& denotes a mnemonic'] }, "Show &&Activity Bar");
S
Sanders Lauture 已提交
714 715 716
		}
		const toggleActivtyBar = this.createMenuItem(activityBarLabel, 'workbench.action.toggleActivityBarVisibility');

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

B
Benjamin Pasero 已提交
721 722 723
		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 已提交
724

B
Benjamin Pasero 已提交
725
		arrays.coalesce([
726 727
			commands,
			__separator__(),
728 729
			explorer,
			search,
J
Joao Moreno 已提交
730
			scm,
731
			debug,
J
Joao Moreno 已提交
732
			extensions,
733
			additionalViewlets,
734 735 736 737 738
			__separator__(),
			output,
			problems,
			debugConsole,
			integratedTerminal,
C
Chris Dias 已提交
739
			__separator__(),
E
Erich Gamma 已提交
740
			fullscreen,
I
isidor 已提交
741
			toggleZenMode,
742
			isWindows || isLinux ? toggleMenuBar : void 0,
E
Erich Gamma 已提交
743 744
			__separator__(),
			splitEditor,
745
			toggleEditorLayout,
E
Erich Gamma 已提交
746
			moveSidebar,
B
Benjamin Pasero 已提交
747 748 749
			toggleSidebar,
			togglePanel,
			toggleStatusbar,
S
Sanders Lauture 已提交
750
			toggleActivtyBar,
E
Erich Gamma 已提交
751
			__separator__(),
J
Joao Moreno 已提交
752
			toggleWordWrap,
753
			toggleRenderWhitespace,
754
			toggleRenderControlCharacters,
J
Joao Moreno 已提交
755
			__separator__(),
E
Erich Gamma 已提交
756
			zoomIn,
757 758
			zoomOut,
			resetZoom
B
Benjamin Pasero 已提交
759
		]).forEach(item => viewMenu.append(item));
E
Erich Gamma 已提交
760 761
	}

B
Benjamin Pasero 已提交
762
	private setGotoMenu(gotoMenu: Electron.Menu): void {
B
Benjamin Pasero 已提交
763 764
		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 已提交
765

B
Benjamin Pasero 已提交
766
		const switchEditorMenu = new Menu();
B
Benjamin Pasero 已提交
767

B
Benjamin Pasero 已提交
768 769 770 771
		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 已提交
772 773 774 775 776

		[
			nextEditor,
			previousEditor,
			__separator__(),
777
			nextEditorInGroup,
B
Benjamin Pasero 已提交
778 779 780
			previousEditorInGroup
		].forEach(item => switchEditorMenu.append(item));

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

B
Benjamin Pasero 已提交
783
		const switchGroupMenu = new Menu();
B
Benjamin Pasero 已提交
784

785 786 787
		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 已提交
788 789
		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 已提交
790 791 792 793 794 795 796 797 798 799

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

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

B
Benjamin Pasero 已提交
802
		const gotoFile = this.createMenuItem(nls.localize({ key: 'miGotoFile', comment: ['&& denotes a mnemonic'] }, "Go to &&File..."), 'workbench.action.quickOpen');
803 804
		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 已提交
805
		const gotoDefinition = this.createMenuItem(nls.localize({ key: 'miGotoDefinition', comment: ['&& denotes a mnemonic'] }, "Go to &&Definition"), 'editor.action.goToDeclaration');
806 807
		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 已提交
808
		const gotoLine = this.createMenuItem(nls.localize({ key: 'miGotoLine', comment: ['&& denotes a mnemonic'] }, "Go to &&Line..."), 'workbench.action.gotoLine');
E
Erich Gamma 已提交
809 810 811 812 813

		[
			back,
			forward,
			__separator__(),
B
Benjamin Pasero 已提交
814 815
			switchEditor,
			switchGroup,
E
Erich Gamma 已提交
816 817
			__separator__(),
			gotoFile,
818 819
			gotoSymbolInFile,
			gotoSymbolInWorkspace,
E
Erich Gamma 已提交
820
			gotoDefinition,
821 822
			gotoTypeDefinition,
			goToImplementation,
E
Erich Gamma 已提交
823
			gotoLine
B
Benjamin Pasero 已提交
824
		].forEach(item => gotoMenu.append(item));
E
Erich Gamma 已提交
825 826
	}

I
isidor 已提交
827 828 829 830 831 832
	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 已提交
833 834
		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 已提交
835 836 837 838 839 840 841 842 843 844 845

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

I
isidor 已提交
850
		const installAdditionalDebuggers = this.createMenuItem(nls.localize({ key: 'miInstallAdditionalDebuggers', comment: ['&& denotes a mnemonic'] }, "&&Install Additional Debuggers..."), 'debug.installAdditionalDebuggers');
I
isidor 已提交
851 852 853 854 855 856
		[
			start,
			startWithoutDebugging,
			stop,
			restart,
			__separator__(),
I
isidor 已提交
857 858
			openConfigurations,
			addConfiguration,
I
isidor 已提交
859 860 861 862 863 864 865 866 867 868 869
			__separator__(),
			stepOver,
			stepInto,
			stepOut,
			continueAction,
			__separator__(),
			toggleBreakpoint,
			newBreakpoints,
			disableAllBreakpoints,
			removeAllBreakpoints,
			__separator__(),
I
isidor 已提交
870
			installAdditionalDebuggers
I
isidor 已提交
871 872 873 874
		].forEach(item => debugMenu.append(item));

	}

B
Benjamin Pasero 已提交
875
	private setMacWindowMenu(macWindowMenu: Electron.Menu): void {
B
Benjamin Pasero 已提交
876 877 878
		const minimize = new MenuItem({ label: nls.localize('mMinimize', "Minimize"), role: 'minimize', accelerator: 'Command+M', enabled: this.windowsService.getWindowCount() > 0 });
		const close = new MenuItem({ label: nls.localize('mClose', "Close"), role: 'close', accelerator: 'Command+W', enabled: this.windowsService.getWindowCount() > 0 });
		const bringAllToFront = new MenuItem({ label: nls.localize('mBringToFront', "Bring All to Front"), role: 'front', enabled: this.windowsService.getWindowCount() > 0 });
E
Erich Gamma 已提交
879 880 881 882 883 884

		[
			minimize,
			close,
			__separator__(),
			bringAllToFront
B
Benjamin Pasero 已提交
885
		].forEach(item => macWindowMenu.append(item));
E
Erich Gamma 已提交
886 887
	}

J
fix npe  
Joao Moreno 已提交
888
	private toggleDevTools(): void {
B
Benjamin Pasero 已提交
889
		const w = this.windowsService.getFocusedWindow();
J
fix npe  
Joao Moreno 已提交
890
		if (w && w.win) {
891 892 893 894 895 896
			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 已提交
897 898 899
		}
	}

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

907
		const showAccessibilityOptions = new MenuItem(this.likeAction('accessibilityOptions', {
908
			label: this.mnemonicLabel(nls.localize({ key: 'miAccessibilityOptions', comment: ['&& denotes a mnemonic'] }, "Accessibility &&Options")),
909 910
			accelerator: null,
			click: () => {
911
				this.openAccessibilityOptions();
912
			}
913
		}, false));
914

B
Benjamin Pasero 已提交
915
		let reportIssuesItem: Electron.MenuItem = null;
B
Benjamin Pasero 已提交
916
		if (product.reportIssueUrl) {
B
Benjamin Pasero 已提交
917 918 919 920 921
			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 {
922
				reportIssuesItem = new MenuItem({ label: this.mnemonicLabel(label), click: () => this.openUrl(product.reportIssueUrl, 'openReportIssues') });
B
Benjamin Pasero 已提交
923 924
			}
		}
J
Joao Moreno 已提交
925

926
		const keyboardShortcutsUrl = isLinux ? product.keyboardShortcutsUrlLinux : isMacintosh ? product.keyboardShortcutsUrlMac : product.keyboardShortcutsUrlWin;
E
Erich Gamma 已提交
927
		arrays.coalesce([
928
			new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miWelcome', comment: ['&& denotes a mnemonic'] }, "&&Welcome")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'workbench.action.showWelcomePage') }),
929
			new MenuItem({ label: this.mnemonicLabel(nls.localize({ key: 'miInteractivePlayground', comment: ['&& denotes a mnemonic'] }, "&&Interactive Playground")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'workbench.action.showInteractivePlayground') }),
930 931
			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,
932
			__separator__(),
933 934
			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 已提交
935
			(product.introductoryVideosUrl || keyboardShortcutsUrl) ? __separator__() : null,
936 937
			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 已提交
938
			reportIssuesItem,
B
Benjamin Pasero 已提交
939 940
			(product.twitterUrl || product.requestFeatureUrl || product.reportIssueUrl) ? __separator__() : null,
			product.licenseUrl ? new MenuItem({
941
				label: this.mnemonicLabel(nls.localize({ key: 'miLicense', comment: ['&& denotes a mnemonic'] }, "View &&License")), click: () => {
942
					if (language) {
B
Benjamin Pasero 已提交
943
						const queryArgChar = product.licenseUrl.indexOf('?') > 0 ? '&' : '?';
944
						this.openUrl(`${product.licenseUrl}${queryArgChar}lang=${language}`, 'openLicenseUrl');
B
Benjamin Pasero 已提交
945
					} else {
B
Benjamin Pasero 已提交
946
						this.openUrl(product.licenseUrl, 'openLicenseUrl');
B
Benjamin Pasero 已提交
947
					}
948
				}
B
Benjamin Pasero 已提交
949
			}) : null,
B
Benjamin Pasero 已提交
950
			product.privacyStatementUrl ? new MenuItem({
951
				label: this.mnemonicLabel(nls.localize({ key: 'miPrivacyStatement', comment: ['&& denotes a mnemonic'] }, "&&Privacy Statement")), click: () => {
952
					if (language) {
B
Benjamin Pasero 已提交
953
						const queryArgChar = product.licenseUrl.indexOf('?') > 0 ? '&' : '?';
954
						this.openUrl(`${product.privacyStatementUrl}${queryArgChar}lang=${language}`, 'openPrivacyStatement');
955
					} else {
B
Benjamin Pasero 已提交
956
						this.openUrl(product.privacyStatementUrl, 'openPrivacyStatement');
957 958 959
					}
				}
			}) : null,
B
Benjamin Pasero 已提交
960
			(product.licenseUrl || product.privacyStatementUrl) ? __separator__() : null,
E
Erich Gamma 已提交
961
			toggleDevToolsItem,
962
			isWindows && product.quality !== 'stable' ? showAccessibilityOptions : null
B
Benjamin Pasero 已提交
963
		]).forEach(item => helpMenu.append(item));
E
Erich Gamma 已提交
964

965
		if (!isMacintosh) {
E
Erich Gamma 已提交
966 967 968 969 970 971 972
			const updateMenuItems = this.getUpdateMenuItems();
			if (updateMenuItems.length) {
				helpMenu.append(__separator__());
				updateMenuItems.forEach(i => helpMenu.append(i));
			}

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

977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992
	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 已提交
993
	private getUpdateMenuItems(): Electron.MenuItem[] {
B
Benjamin Pasero 已提交
994
		switch (this.updateService.state) {
J
Joao Moreno 已提交
995
			case UpdateState.Uninitialized:
E
Erich Gamma 已提交
996 997
				return [];

J
Joao Moreno 已提交
998
			case UpdateState.UpdateDownloaded:
B
Benjamin Pasero 已提交
999 1000
				return [new MenuItem({
					label: nls.localize('miRestartToUpdate', "Restart To Update..."), click: () => {
J
fix npe  
Joao Moreno 已提交
1001
						this.reportMenuActionTelemetry('RestartToUpdate');
J
Joao Moreno 已提交
1002
						this.updateService.quitAndInstall();
B
Benjamin Pasero 已提交
1003 1004
					}
				})];
E
Erich Gamma 已提交
1005

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

J
Joao Moreno 已提交
1009
			case UpdateState.UpdateAvailable:
1010
				if (isLinux) {
J
Joao Moreno 已提交
1011
					return [new MenuItem({
J
Joao Moreno 已提交
1012
						label: nls.localize('miDownloadUpdate', "Download Available Update"), click: () => {
J
Joao Moreno 已提交
1013
							this.updateService.quitAndInstall();
J
Joao Moreno 已提交
1014 1015 1016 1017
						}
					})];
				}

1018
				const updateAvailableLabel = isWindows
E
Erich Gamma 已提交
1019 1020 1021 1022 1023 1024
					? nls.localize('miDownloadingUpdate', "Downloading Update...")
					: nls.localize('miInstallingUpdate', "Installing Update...");

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

			default:
B
Benjamin Pasero 已提交
1025
				const result = [new MenuItem({
B
Benjamin Pasero 已提交
1026
					label: nls.localize('miCheckForUpdates', "Check For Updates..."), click: () => setTimeout(() => {
J
fix npe  
Joao Moreno 已提交
1027
						this.reportMenuActionTelemetry('CheckForUpdate');
J
Joao Moreno 已提交
1028
						this.updateService.checkForUpdates(true);
B
Benjamin Pasero 已提交
1029 1030
					}, 0)
				})];
E
Erich Gamma 已提交
1031 1032 1033 1034 1035

				return result;
		}
	}

1036
	private createMenuItem(label: string, commandId: string | string[], enabled?: boolean, checked?: boolean): Electron.MenuItem;
B
Benjamin Pasero 已提交
1037 1038
	private createMenuItem(label: string, click: () => void, enabled?: boolean, checked?: boolean): Electron.MenuItem;
	private createMenuItem(arg1: string, arg2: any, arg3?: boolean, arg4?: boolean): Electron.MenuItem {
1039
		const label = this.mnemonicLabel(arg1);
1040
		const click: () => void = (typeof arg2 === 'function') ? arg2 : (menuItem, win, event) => {
1041
			let commandId = arg2;
1042
			if (Array.isArray(arg2)) {
1043
				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
1044 1045
			}

1046
			this.windowsService.sendToFocused('vscode:runAction', commandId);
1047
		};
B
Benjamin Pasero 已提交
1048
		const enabled = typeof arg3 === 'boolean' ? arg3 : this.windowsService.getWindowCount() > 0;
B
Benjamin Pasero 已提交
1049
		const checked = typeof arg4 === 'boolean' ? arg4 : false;
E
Erich Gamma 已提交
1050

1051
		let commandId: string;
E
Erich Gamma 已提交
1052
		if (typeof arg2 === 'string') {
1053
			commandId = arg2;
E
Erich Gamma 已提交
1054 1055
		}

B
Benjamin Pasero 已提交
1056
		const options: Electron.MenuItemOptions = {
B
Benjamin Pasero 已提交
1057 1058 1059
			label,
			click,
			enabled
E
Erich Gamma 已提交
1060 1061
		};

B
Benjamin Pasero 已提交
1062 1063 1064 1065 1066
		if (checked) {
			options['type'] = 'checkbox';
			options['checked'] = checked;
		}

1067
		return new MenuItem(this.withKeybinding(commandId, options));
E
Erich Gamma 已提交
1068 1069
	}

1070 1071
	private createDevToolsAwareMenuItem(label: string, commandId: string, devToolsFocusedFn: (contents: Electron.WebContents) => void): Electron.MenuItem {
		return new MenuItem(this.withKeybinding(commandId, {
1072
			label: this.mnemonicLabel(label),
B
Benjamin Pasero 已提交
1073
			enabled: this.windowsService.getWindowCount() > 0,
1074
			click: () => {
B
Benjamin Pasero 已提交
1075
				const windowInFocus = this.windowsService.getFocusedWindow();
1076 1077 1078 1079
				if (!windowInFocus) {
					return;
				}

B
Benjamin Pasero 已提交
1080 1081
				if (windowInFocus.win.webContents.isDevToolsFocused()) {
					devToolsFocusedFn(windowInFocus.win.webContents.devToolsWebContents);
1082
				} else {
1083
					this.windowsService.sendToFocused('vscode:runAction', commandId);
1084 1085
				}
			}
1086
		}));
1087 1088
	}

1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102
	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 已提交
1103
				const bindingIndex = options.label.indexOf('[');
1104
				if (bindingIndex >= 0) {
B
Benjamin Pasero 已提交
1105
					options.label = `${options.label.substr(0, bindingIndex)} [${binding.label}]`;
1106
				} else {
B
Benjamin Pasero 已提交
1107
					options.label = `${options.label} [${binding.label}]`;
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120
				}
			}
		}

		// 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 {
1121
		if (setAccelerator) {
1122
			options = this.withKeybinding(commandId, options);
1123
		}
1124

1125 1126
		const originalClick = options.click;
		options.click = (item, window, event) => {
1127
			this.reportMenuActionTelemetry(commandId);
1128 1129 1130 1131 1132
			if (originalClick) {
				originalClick(item, window, event);
			}
		};

1133
		return options;
E
Erich Gamma 已提交
1134 1135
	}

J
fix npe  
Joao Moreno 已提交
1136
	private openAboutDialog(): void {
B
Benjamin Pasero 已提交
1137
		const lastActiveWindow = this.windowsService.getFocusedWindow() || this.windowsService.getLastActiveWindow();
J
fix npe  
Joao Moreno 已提交
1138 1139

		dialog.showMessageBox(lastActiveWindow && lastActiveWindow.win, {
B
Benjamin Pasero 已提交
1140
			title: product.nameLong,
J
fix npe  
Joao Moreno 已提交
1141
			type: 'info',
B
Benjamin Pasero 已提交
1142
			message: product.nameLong,
J
fix npe  
Joao Moreno 已提交
1143 1144 1145
			detail: nls.localize('aboutDetail',
				"\nVersion {0}\nCommit {1}\nDate {2}\nShell {3}\nRenderer {4}\nNode {5}",
				app.getVersion(),
B
Benjamin Pasero 已提交
1146 1147
				product.commit || 'Unknown',
				product.date || 'Unknown',
J
fix npe  
Joao Moreno 已提交
1148 1149 1150 1151 1152 1153
				process.versions['electron'],
				process.versions['chrome'],
				process.versions['node']
			),
			buttons: [nls.localize('okButton', "OK")],
			noLink: true
B
Benjamin Pasero 已提交
1154
		}, result => null);
J
fix npe  
Joao Moreno 已提交
1155 1156 1157

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

J
fix npe  
Joao Moreno 已提交
1159 1160 1161
	private openUrl(url: string, id: string): void {
		shell.openExternal(url);
		this.reportMenuActionTelemetry(id);
E
Erich Gamma 已提交
1162 1163
	}

J
fix npe  
Joao Moreno 已提交
1164
	private reportMenuActionTelemetry(id: string): void {
1165
		this.telemetryService.publicLog('workbenchActionExecuted', { id, from: telemetryFrom });
J
fix npe  
Joao Moreno 已提交
1166
	}
E
Erich Gamma 已提交
1167

1168 1169 1170 1171
	private mnemonicLabel(label: string): string {
		if (isMacintosh || !this.currentEnableMenuBarMnemonics) {
			return label.replace(/\(&&\w\)|&&/g, ''); // no mnemonic support on mac
		}
E
Erich Gamma 已提交
1172

1173
		return label.replace(/&&/g, '&');
E
Erich Gamma 已提交
1174 1175
	}

1176 1177 1178 1179
	private unmnemonicLabel(label: string): string {
		if (isMacintosh || !this.currentEnableMenuBarMnemonics) {
			return label; // no mnemonic support on mac
		}
1180

1181
		return label.replace(/&/g, '&&');
1182
	}
1183
}
1184

1185 1186
function __separator__(): Electron.MenuItem {
	return new MenuItem({ type: 'separator' });
1187
}