menus.ts 56.2 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';
J
Joao Moreno 已提交
12
import { ipcMain as ipc, app, shell, dialog, Menu, MenuItem } 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 40 41 42 43 44 45
interface IConfiguration extends IFilesConfiguration {
	workbench: {
		sideBar: {
			location: 'left' | 'right';
		},
		statusBar: {
			visible: boolean;
S
Sanders Lauture 已提交
46 47 48
		},
		activityBar: {
			visible: boolean;
B
Benjamin Pasero 已提交
49 50 51 52
		}
	};
}

53
class KeybindingsResolver {
E
Erich Gamma 已提交
54 55 56

	private static lastKnownKeybindingsMapStorageKey = 'lastKnownKeybindings';

57
	private commandIds: Set<string>;
58
	private keybindings: { [commandId: string]: IKeybinding };
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
	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);
		this.keybindingsWatcher = new ConfigWatcher<IUserFriendlyKeybinding[]>(environmentService.appKeybindingsPath, { changeBufferDelay: 1000 /* update after 1s */ });

		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) => {
84
			let keybindings: IKeybinding[] = [];
85 86 87 88 89 90 91 92 93
			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;
94
			const resolvedKeybindings: { [commandId: string]: IKeybinding } = Object.create(null);
95
			keybindings.forEach(keybinding => {
96
				keybindingsCount++;
97

98
				resolvedKeybindings[keybinding.id] = keybinding;
B
Benjamin Pasero 已提交
99

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

			// 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 已提交
111
				this.keybindings = resolvedKeybindings;
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
				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));
		}
	}

133 134 135 136 137
	public getKeybinding(commandId: string): IKeybinding {
		if (!commandId) {
			return void 0;
		}

138 139 140 141 142 143 144 145
		if (!this.commandIds.has(commandId)) {
			this.commandIds.add(commandId);
		}

		return this.keybindings[commandId];
	}
}

146 147
const telemetryFrom = 'menu';

148 149
export class VSCodeMenu {

150
	private static MAX_MENU_RECENT_ENTRIES = 10;
151

B
Benjamin Pasero 已提交
152
	private currentAutoSaveSetting: string;
B
Benjamin Pasero 已提交
153 154
	private currentSidebarLocation: 'left' | 'right';
	private currentStatusbarVisible: boolean;
S
Sanders Lauture 已提交
155
	private currentActivityBarVisible: boolean;
B
Benjamin Pasero 已提交
156

B
Benjamin Pasero 已提交
157
	private isQuitting: boolean;
E
Erich Gamma 已提交
158 159
	private appMenuInstalled: boolean;

160 161
	private menuUpdater: RunOnceScheduler;

162
	private keybindingsResolver: KeybindingsResolver;
E
Erich Gamma 已提交
163

164 165
	private extensionViewlets: IExtensionViewlet[];

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

176
		this.menuUpdater = new RunOnceScheduler(() => this.doUpdateMenu(), 0);
177
		this.keybindingsResolver = instantiationService.createInstance(KeybindingsResolver);
178

B
Benjamin Pasero 已提交
179
		this.onConfigurationUpdated(this.configurationService.getConfiguration<IConfiguration>());
E
Erich Gamma 已提交
180 181

		this.install();
182 183

		this.registerListeners();
E
Erich Gamma 已提交
184 185 186 187 188 189
	}

	private registerListeners(): void {

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

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

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

B
Benjamin Pasero 已提交
216
		// Listen to update service
217
		this.updateService.onStateChange(() => this.updateMenu());
218 219 220

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

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

231 232 233 234 235
		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 已提交
236

237 238 239 240 241 242 243 244
		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 已提交
245

246 247 248 249 250 251 252
		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 已提交
253 254 255
		}

		if (handleMenu && updateMenu) {
B
Benjamin Pasero 已提交
256 257 258 259
			this.updateMenu();
		}
	}

E
Erich Gamma 已提交
260
	private updateMenu(): void {
261 262 263 264
		this.menuUpdater.schedule(); // buffer multiple attempts to update the menu
	}

	private doUpdateMenu(): void {
E
Erich Gamma 已提交
265 266 267

		// 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 已提交
268
		// See also https://github.com/electron/electron/issues/846
E
Erich Gamma 已提交
269 270 271 272 273 274 275 276 277 278 279
		//
		// 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 已提交
280
	private onClose(remainingWindowCount: number): void {
281
		if (remainingWindowCount === 0 && isMacintosh) {
E
Erich Gamma 已提交
282 283 284 285 286 287 288
			this.updateMenu();
		}
	}

	private install(): void {

		// Menus
B
Benjamin Pasero 已提交
289
		const menubar = new Menu();
E
Erich Gamma 已提交
290 291

		// Mac: Application
B
Benjamin Pasero 已提交
292
		let macApplicationMenuItem: Electron.MenuItem;
293
		if (isMacintosh) {
B
Benjamin Pasero 已提交
294
			const applicationMenu = new Menu();
B
Benjamin Pasero 已提交
295
			macApplicationMenuItem = new MenuItem({ label: product.nameShort, submenu: applicationMenu });
E
Erich Gamma 已提交
296 297 298 299
			this.setMacApplicationMenu(applicationMenu);
		}

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

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

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

E
Erich Gamma 已提交
314
		// View
B
Benjamin Pasero 已提交
315 316
		const viewMenu = new Menu();
		const viewMenuItem = new MenuItem({ label: mnemonicLabel(nls.localize({ key: 'mView', comment: ['&& denotes a mnemonic'] }, "&&View")), submenu: viewMenu });
E
Erich Gamma 已提交
317 318 319
		this.setViewMenu(viewMenu);

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

I
isidor 已提交
324 325 326 327 328 329
		// Debug
		const debugMenu = new Menu();
		const debugMenuItem = new MenuItem({ label: mnemonicLabel(nls.localize({ key: 'mDebug', comment: ['&& denotes a mnemonic'] }, "&&Debug")), submenu: debugMenu });
		this.setDebugMenu(debugMenu);


E
Erich Gamma 已提交
330
		// Mac: Window
B
Benjamin Pasero 已提交
331
		let macWindowMenuItem: Electron.MenuItem;
332
		if (isMacintosh) {
B
Benjamin Pasero 已提交
333
			const windowMenu = new Menu();
E
Erich Gamma 已提交
334 335 336 337 338
			macWindowMenuItem = new MenuItem({ label: mnemonicLabel(nls.localize('mWindow', "Window")), submenu: windowMenu, role: 'window' });
			this.setMacWindowMenu(windowMenu);
		}

		// Help
B
Benjamin Pasero 已提交
339 340
		const helpMenu = new Menu();
		const helpMenuItem = new MenuItem({ label: mnemonicLabel(nls.localize({ key: 'mHelp', comment: ['&& denotes a mnemonic'] }, "&&Help")), submenu: helpMenu, role: 'help' });
E
Erich Gamma 已提交
341 342 343 344 345 346 347 348 349
		this.setHelpMenu(helpMenu);

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

		menubar.append(fileMenuItem);
		menubar.append(editMenuItem);
C
Christof Marti 已提交
350
		menubar.append(selectionMenuItem);
E
Erich Gamma 已提交
351 352
		menubar.append(viewMenuItem);
		menubar.append(gotoMenuItem);
I
isidor 已提交
353
		menubar.append(debugMenuItem);
E
Erich Gamma 已提交
354 355 356 357 358 359 360 361 362 363

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

		menubar.append(helpMenuItem);

		Menu.setApplicationMenu(menubar);

		// Dock Menu
364
		if (isMacintosh && !this.appMenuInstalled) {
E
Erich Gamma 已提交
365 366
			this.appMenuInstalled = true;

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

370
			app.dock.setMenu(dockMenu);
E
Erich Gamma 已提交
371 372 373
		}
	}

B
Benjamin Pasero 已提交
374
	private setMacApplicationMenu(macApplicationMenu: Electron.Menu): void {
B
Benjamin Pasero 已提交
375
		const about = new MenuItem({ label: nls.localize('mAbout', "About {0}", product.nameLong), role: 'about' });
B
Benjamin Pasero 已提交
376 377
		const checkForUpdates = this.getUpdateMenuItems();
		const preferences = this.getPreferencesMenu();
B
Benjamin Pasero 已提交
378
		const hide = new MenuItem({ label: nls.localize('mHide', "Hide {0}", product.nameLong), role: 'hide', accelerator: 'Command+H' });
B
Benjamin Pasero 已提交
379 380
		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' });
381
		const quit = new MenuItem(this.likeAction('workbench.action.quit', { label: nls.localize('miQuit', "Quit {0}", product.nameLong), click: () => this.windowsService.quit() }));
B
Benjamin Pasero 已提交
382 383

		const actions = [about];
E
Erich Gamma 已提交
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
		actions.push(...checkForUpdates);
		actions.push(...[
			__separator__(),
			preferences,
			__separator__(),
			hide,
			hideOthers,
			showAll,
			__separator__(),
			quit
		]);

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

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

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

409 410
		const open = new MenuItem(this.likeAction('workbench.action.files.openFileFolder', { label: 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: 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 已提交
411

412 413
		let openFile: Electron.MenuItem;
		if (hasNoWindows) {
414
			openFile = new MenuItem(this.likeAction('workbench.action.files.openFile', { label: 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 }) }));
415
		} else {
416
			openFile = this.createMenuItem(nls.localize({ key: 'miOpenFile', comment: ['&& denotes a mnemonic'] }, "&&Open File..."), ['workbench.action.files.openFile', 'workbench.action.files.openFileInNewWindow']);
417 418
		}

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

B
Benjamin Pasero 已提交
423 424 425
		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 已提交
426

B
Benjamin Pasero 已提交
427
		const autoSaveEnabled = [AutoSaveConfiguration.AFTER_DELAY, AutoSaveConfiguration.ON_FOCUS_CHANGE, AutoSaveConfiguration.ON_WINDOW_CHANGE].some(s => this.currentAutoSaveSetting === s);
428
		const autoSave = new MenuItem(this.likeAction('vscode.toggleAutoSave', { label: 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 已提交
429

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

432
		const newWindow = new MenuItem(this.likeAction('workbench.action.newWindow', { label: mnemonicLabel(nls.localize({ key: 'miNewWindow', comment: ['&& denotes a mnemonic'] }, "New &&Window")), click: () => this.windowsService.openNewWindow(OpenContext.MENU) }));
B
Benjamin Pasero 已提交
433 434
		const revertFile = this.createMenuItem(nls.localize({ key: 'miRevert', comment: ['&& denotes a mnemonic'] }, "Re&&vert File"), 'workbench.action.files.revert', this.windowsService.getWindowCount() > 0);
		const closeWindow = new MenuItem(this.likeAction('workbench.action.closeWindow', { label: 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 已提交
435

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

439
		const exit = new MenuItem(this.likeAction('workbench.action.quit', { label: mnemonicLabel(nls.localize({ key: 'miExit', comment: ['&& denotes a mnemonic'] }, "E&&xit")), click: () => this.windowsService.quit() }));
E
Erich Gamma 已提交
440 441 442 443 444

		arrays.coalesce([
			newFile,
			newWindow,
			__separator__(),
445 446 447
			isMacintosh ? open : null,
			!isMacintosh ? openFile : null,
			!isMacintosh ? openFolder : null,
E
Erich Gamma 已提交
448 449 450 451 452 453
			openRecent,
			__separator__(),
			saveFile,
			saveFileAs,
			saveAllFiles,
			__separator__(),
B
Benjamin Pasero 已提交
454 455
			autoSave,
			__separator__(),
456 457
			!isMacintosh ? preferences : null,
			!isMacintosh ? __separator__() : null,
E
Erich Gamma 已提交
458 459 460
			revertFile,
			closeEditor,
			closeFolder,
461 462 463
			!isMacintosh ? closeWindow : null,
			!isMacintosh ? __separator__() : null,
			!isMacintosh ? exit : null
B
Benjamin Pasero 已提交
464
		]).forEach(item => fileMenu.append(item));
E
Erich Gamma 已提交
465 466
	}

B
Benjamin Pasero 已提交
467
	private getPreferencesMenu(): Electron.MenuItem {
S
Sandeep Somavarapu 已提交
468
		const settings = this.createMenuItem(nls.localize({ key: 'miOpenSettings', comment: ['&& denotes a mnemonic'] }, "&&Settings"), 'workbench.action.openGlobalSettings');
B
Benjamin Pasero 已提交
469
		const kebindingSettings = this.createMenuItem(nls.localize({ key: 'miOpenKeymap', comment: ['&& denotes a mnemonic'] }, "&&Keyboard Shortcuts"), 'workbench.action.openGlobalKeybindings');
470
		const keymapExtensions = this.createMenuItem(nls.localize({ key: 'miOpenKeymapExtensions', comment: ['&& denotes a mnemonic'] }, "&&Keymap Extensions"), 'workbench.extensions.action.showRecommendedKeymapExtensions');
B
Benjamin Pasero 已提交
471 472 473 474 475
		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();
476
		preferencesMenu.append(settings);
E
Erich Gamma 已提交
477 478
		preferencesMenu.append(__separator__());
		preferencesMenu.append(kebindingSettings);
479
		preferencesMenu.append(keymapExtensions);
E
Erich Gamma 已提交
480 481 482
		preferencesMenu.append(__separator__());
		preferencesMenu.append(snippetsSettings);
		preferencesMenu.append(__separator__());
483 484
		preferencesMenu.append(colorThemeSelection);
		preferencesMenu.append(iconThemeSelection);
E
Erich Gamma 已提交
485

B
Benjamin Pasero 已提交
486
		return new MenuItem({ label: mnemonicLabel(nls.localize({ key: 'miPreferences', comment: ['&& denotes a mnemonic'] }, "&&Preferences")), submenu: preferencesMenu });
E
Erich Gamma 已提交
487 488
	}

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

492
		const {folders, files} = this.windowsService.getRecentPathsList();
E
Erich Gamma 已提交
493 494

		// Folders
495
		if (folders.length > 0) {
496
			openRecentMenu.append(__separator__());
497 498

			for (let i = 0; i < VSCodeMenu.MAX_MENU_RECENT_ENTRIES && i < folders.length; i++) {
499
				openRecentMenu.append(this.createOpenRecentMenuItem(folders[i], 'openRecentFolder'));
500
			}
501
		}
E
Erich Gamma 已提交
502 503

		// Files
504
		if (files.length > 0) {
505
			openRecentMenu.append(__separator__());
E
Erich Gamma 已提交
506

507
			for (let i = 0; i < VSCodeMenu.MAX_MENU_RECENT_ENTRIES && i < files.length; i++) {
508
				openRecentMenu.append(this.createOpenRecentMenuItem(files[i], 'openRecentFile'));
509
			}
E
Erich Gamma 已提交
510 511
		}

512
		if (folders.length || files.length) {
E
Erich Gamma 已提交
513
			openRecentMenu.append(__separator__());
514
			openRecentMenu.append(new MenuItem(this.likeAction('clearRecentlyOpened', { label: mnemonicLabel(nls.localize({ key: 'miClearItems', comment: ['&& denotes a mnemonic'] }, "&&Clear Items")), click: () => this.windowsService.clearRecentPathsList() }, false)));
E
Erich Gamma 已提交
515 516 517
		}
	}

518
	private createOpenRecentMenuItem(path: string, commandId: string): Electron.MenuItem {
519
		let label = path;
520
		if ((isMacintosh || isLinux) && path.indexOf(this.environmentService.userHome) === 0) {
521
			label = `~${path.substr(this.environmentService.userHome.length)}`;
522 523
		}

524
		return new MenuItem(this.likeAction(commandId, {
525
			label: unMnemonicLabel(label), click: (menuItem, win, event) => {
526
				const openInNewWindow = this.isOptionClick(event);
527
				const success = !!this.windowsService.open({ context: OpenContext.MENU, cli: this.environmentService.args, pathsToOpen: [path], forceNewWindow: openInNewWindow });
B
Benjamin Pasero 已提交
528
				if (!success) {
529
					this.windowsService.removeFromRecentPathsList(path);
B
Benjamin Pasero 已提交
530
				}
E
Erich Gamma 已提交
531
			}
532
		}, false));
E
Erich Gamma 已提交
533 534
	}

J
Joao Moreno 已提交
535
	private isOptionClick(event: Electron.Event & Electron.Modifiers): boolean {
536
		return event && ((!isMacintosh && (event.ctrlKey || event.shiftKey)) || (isMacintosh && (event.metaKey || event.altKey)));
537 538
	}

539
	private createRoleMenuItem(label: string, commandId: string, role: Electron.MenuItemRole): Electron.MenuItem {
B
Benjamin Pasero 已提交
540
		const options: Electron.MenuItemOptions = {
541
			label: mnemonicLabel(label),
B
Benjamin Pasero 已提交
542
			role,
543 544 545
			enabled: true
		};

546
		return new MenuItem(this.withKeybinding(commandId, options));
547 548
	}

B
Benjamin Pasero 已提交
549 550 551 552 553 554
	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 已提交
555

556
		if (isMacintosh) {
B
Benjamin Pasero 已提交
557 558
			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 已提交
559 560
			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');
561
			paste = this.createRoleMenuItem(nls.localize({ key: 'miPaste', comment: ['&& denotes a mnemonic'] }, "&&Paste"), 'editor.action.clipboardPasteAction', 'paste');
E
Erich Gamma 已提交
562
		} else {
B
Benjamin Pasero 已提交
563 564
			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 已提交
565 566
			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 已提交
567
			paste = this.createMenuItem(nls.localize({ key: 'miPaste', comment: ['&& denotes a mnemonic'] }, "&&Paste"), 'editor.action.clipboardPasteAction');
E
Erich Gamma 已提交
568 569
		}

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

575 576
		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');
577 578
		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');
579

E
Erich Gamma 已提交
580 581 582 583 584 585 586 587 588 589 590
		[
			undo,
			redo,
			__separator__(),
			cut,
			copy,
			paste,
			__separator__(),
			find,
			replace,
			__separator__(),
S
Sandeep Somavarapu 已提交
591
			findInFiles,
592 593
			replaceInFiles,
			__separator__(),
594 595
			toggleLineComment,
			toggleBlockComment,
596 597
			emmetExpandAbbreviation,
			showEmmetCommands
B
Benjamin Pasero 已提交
598
		].forEach(item => winLinuxEditMenu.append(item));
E
Erich Gamma 已提交
599 600
	}

C
Christof Marti 已提交
601 602 603
	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');
604
		const insertCursorAtEndOfEachLineSelected = this.createMenuItem(nls.localize({ key: 'miInsertCursorAtEndOfEachLineSelected', comment: ['&& denotes a mnemonic'] }, "Add C&&ursors to Line Ends"), 'editor.action.insertCursorAtEndOfEachLineSelected');
C
Christof Marti 已提交
605 606 607
		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 已提交
608 609 610 611 612 613

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

614
		let selectAll: Electron.MenuItem;
615
		if (isMacintosh) {
616 617 618 619
			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 已提交
620 621 622 623
		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');

		[
624 625 626
			selectAll,
			smartSelectGrow,
			smartSelectshrink,
C
Christof Marti 已提交
627 628 629 630 631 632
			__separator__(),
			copyLinesUp,
			copyLinesDown,
			moveLinesUp,
			moveLinesDown,
			__separator__(),
633 634 635 636 637 638
			insertCursorAbove,
			insertCursorBelow,
			insertCursorAtEndOfEachLineSelected,
			addSelectionToNextFindMatch,
			addSelectionToPreviousFindMatch,
			selectHighlights,
C
Christof Marti 已提交
639 640 641
		].forEach(item => winLinuxEditMenu.append(item));
	}

B
Benjamin Pasero 已提交
642
	private setViewMenu(viewMenu: Electron.Menu): void {
B
Benjamin Pasero 已提交
643 644
		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 已提交
645 646
		const git = this.createMenuItem(nls.localize({ key: 'miViewGit', comment: ['&& denotes a mnemonic'] }, "&&Git"), 'workbench.view.git');
		// const scm = this.createMenuItem(nls.localize({ key: 'miViewSCM', comment: ['&& denotes a mnemonic'] }, "S&&CM"), 'workbench.view.scm');
B
Benjamin Pasero 已提交
647 648 649 650 651 652 653
		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');

654 655 656 657 658 659 660 661
		let additionalViewlets: Electron.MenuItem;
		if (this.extensionViewlets.length) {
			const additionalViewletsMenu = new Menu();

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

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

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

667
		const fullscreen = new MenuItem(this.withKeybinding('workbench.action.toggleFullScreen', { label: mnemonicLabel(nls.localize({ key: 'miToggleFullScreen', comment: ['&& denotes a mnemonic'] }, "Toggle &&Full Screen")), click: () => this.windowsService.getLastActiveWindow().toggleFullScreen(), enabled: this.windowsService.getWindowCount() > 0 }));
I
isidor 已提交
668
		const toggleZenMode = this.createMenuItem(nls.localize('miToggleZenMode', "Toggle Zen Mode"), 'workbench.action.toggleZenMode', this.windowsService.getWindowCount() > 0);
B
Benjamin Pasero 已提交
669 670
		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');
671
		const toggleEditorLayout = this.createMenuItem(nls.localize({ key: 'miToggleEditorLayout', comment: ['&& denotes a mnemonic'] }, "Toggle Editor Group &&Layout"), 'workbench.action.toggleEditorGroupLayout');
B
Benjamin Pasero 已提交
672
		const toggleSidebar = this.createMenuItem(nls.localize({ key: 'miToggleSidebar', comment: ['&& denotes a mnemonic'] }, "&&Toggle Side Bar"), 'workbench.action.toggleSidebarVisibility');
B
Benjamin Pasero 已提交
673 674 675 676 677 678 679 680 681 682

		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 已提交
683
		const togglePanel = this.createMenuItem(nls.localize({ key: 'miTogglePanel', comment: ['&& denotes a mnemonic'] }, "Toggle &&Panel"), 'workbench.action.togglePanel');
B
Benjamin Pasero 已提交
684 685 686 687 688 689 690 691

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

S
Sanders Lauture 已提交
693 694
		let activityBarLabel: string;
		if (this.currentActivityBarVisible) {
B
Benjamin Pasero 已提交
695
			activityBarLabel = nls.localize({ key: 'miHideActivityBar', comment: ['&& denotes a mnemonic'] }, "Hide &&Activity Bar");
S
Sanders Lauture 已提交
696
		} else {
B
Benjamin Pasero 已提交
697
			activityBarLabel = nls.localize({ key: 'miShowActivityBar', comment: ['&& denotes a mnemonic'] }, "Show &&Activity Bar");
S
Sanders Lauture 已提交
698 699 700
		}
		const toggleActivtyBar = this.createMenuItem(activityBarLabel, 'workbench.action.toggleActivityBarVisibility');

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

B
Benjamin Pasero 已提交
705 706 707
		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 已提交
708

B
Benjamin Pasero 已提交
709
		arrays.coalesce([
710 711
			commands,
			__separator__(),
712 713
			explorer,
			search,
J
Joao Moreno 已提交
714 715
			git,
			// scm,
716
			debug,
J
Joao Moreno 已提交
717
			extensions,
718
			additionalViewlets,
719 720 721 722 723
			__separator__(),
			output,
			problems,
			debugConsole,
			integratedTerminal,
C
Chris Dias 已提交
724
			__separator__(),
E
Erich Gamma 已提交
725
			fullscreen,
I
isidor 已提交
726
			toggleZenMode,
727
			isWindows || isLinux ? toggleMenuBar : void 0,
E
Erich Gamma 已提交
728 729
			__separator__(),
			splitEditor,
730
			toggleEditorLayout,
E
Erich Gamma 已提交
731
			moveSidebar,
B
Benjamin Pasero 已提交
732 733 734
			toggleSidebar,
			togglePanel,
			toggleStatusbar,
S
Sanders Lauture 已提交
735
			toggleActivtyBar,
E
Erich Gamma 已提交
736
			__separator__(),
J
Joao Moreno 已提交
737
			toggleWordWrap,
738
			toggleRenderWhitespace,
739
			toggleRenderControlCharacters,
J
Joao Moreno 已提交
740
			__separator__(),
E
Erich Gamma 已提交
741
			zoomIn,
742 743
			zoomOut,
			resetZoom
B
Benjamin Pasero 已提交
744
		]).forEach(item => viewMenu.append(item));
E
Erich Gamma 已提交
745 746
	}

B
Benjamin Pasero 已提交
747
	private setGotoMenu(gotoMenu: Electron.Menu): void {
B
Benjamin Pasero 已提交
748 749
		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 已提交
750

B
Benjamin Pasero 已提交
751
		const switchEditorMenu = new Menu();
B
Benjamin Pasero 已提交
752

B
Benjamin Pasero 已提交
753 754 755 756
		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 已提交
757 758 759 760 761

		[
			nextEditor,
			previousEditor,
			__separator__(),
762
			nextEditorInGroup,
B
Benjamin Pasero 已提交
763 764 765
			previousEditorInGroup
		].forEach(item => switchEditorMenu.append(item));

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

B
Benjamin Pasero 已提交
768
		const switchGroupMenu = new Menu();
B
Benjamin Pasero 已提交
769

770 771 772
		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 已提交
773 774
		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 已提交
775 776 777 778 779 780 781 782 783 784

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

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

B
Benjamin Pasero 已提交
787
		const gotoFile = this.createMenuItem(nls.localize({ key: 'miGotoFile', comment: ['&& denotes a mnemonic'] }, "Go to &&File..."), 'workbench.action.quickOpen');
788 789
		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 已提交
790 791
		const gotoDefinition = this.createMenuItem(nls.localize({ key: 'miGotoDefinition', comment: ['&& denotes a mnemonic'] }, "Go to &&Definition"), 'editor.action.goToDeclaration');
		const gotoLine = this.createMenuItem(nls.localize({ key: 'miGotoLine', comment: ['&& denotes a mnemonic'] }, "Go to &&Line..."), 'workbench.action.gotoLine');
E
Erich Gamma 已提交
792 793 794 795 796

		[
			back,
			forward,
			__separator__(),
B
Benjamin Pasero 已提交
797 798
			switchEditor,
			switchGroup,
E
Erich Gamma 已提交
799 800
			__separator__(),
			gotoFile,
801 802
			gotoSymbolInFile,
			gotoSymbolInWorkspace,
E
Erich Gamma 已提交
803 804
			gotoDefinition,
			gotoLine
B
Benjamin Pasero 已提交
805
		].forEach(item => gotoMenu.append(item));
E
Erich Gamma 已提交
806 807
	}

I
isidor 已提交
808 809 810 811 812 813
	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 已提交
814 815
		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 已提交
816 817 818 819 820 821 822 823 824 825 826 827 828

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

		const installMoreDebuggers = this.createMenuItem(nls.localize({ key: 'miInstallMoreDebuggers', comment: ['&& denotes a mnemonic'] }, "&&Install More Debuggers..."), 'debug.installMoreDebuggers');
		[
			start,
			startWithoutDebugging,
			stop,
			restart,
			__separator__(),
I
isidor 已提交
838 839
			openConfigurations,
			addConfiguration,
I
isidor 已提交
840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855
			__separator__(),
			stepOver,
			stepInto,
			stepOut,
			continueAction,
			__separator__(),
			toggleBreakpoint,
			newBreakpoints,
			disableAllBreakpoints,
			removeAllBreakpoints,
			__separator__(),
			installMoreDebuggers
		].forEach(item => debugMenu.append(item));

	}

B
Benjamin Pasero 已提交
856
	private setMacWindowMenu(macWindowMenu: Electron.Menu): void {
B
Benjamin Pasero 已提交
857 858 859
		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 已提交
860 861 862 863 864 865

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

J
fix npe  
Joao Moreno 已提交
869
	private toggleDevTools(): void {
B
Benjamin Pasero 已提交
870
		const w = this.windowsService.getFocusedWindow();
J
fix npe  
Joao Moreno 已提交
871
		if (w && w.win) {
872 873 874 875 876 877
			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 已提交
878 879 880
		}
	}

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

888
		const showAccessibilityOptions = new MenuItem(this.likeAction('accessibilityOptions', {
889 890 891 892 893
			label: mnemonicLabel(nls.localize({ key: 'miAccessibilityOptions', comment: ['&& denotes a mnemonic'] }, "Accessibility &&Options")),
			accelerator: null,
			click: () => {
				this.windowsService.openAccessibilityOptions();
			}
894
		}, false));
895

B
Benjamin Pasero 已提交
896
		let reportIssuesItem: Electron.MenuItem = null;
B
Benjamin Pasero 已提交
897
		if (product.reportIssueUrl) {
B
Benjamin Pasero 已提交
898 899 900 901 902 903 904 905
			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 {
				reportIssuesItem = new MenuItem({ label: mnemonicLabel(label), click: () => this.openUrl(product.reportIssueUrl, 'openReportIssues') });
			}
		}
J
Joao Moreno 已提交
906

907
		const keyboardShortcutsUrl = isLinux ? product.keyboardShortcutsUrlLinux : isMacintosh ? product.keyboardShortcutsUrlMac : product.keyboardShortcutsUrlWin;
E
Erich Gamma 已提交
908
		arrays.coalesce([
C
Christof Marti 已提交
909
			new MenuItem({ label: mnemonicLabel(nls.localize({ key: 'miWelcome', comment: ['&& denotes a mnemonic'] }, "&&Welcome")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'workbench.action.showWelcomePage') }),
C
Christof Marti 已提交
910
			product.documentationUrl ? new MenuItem({ label: mnemonicLabel(nls.localize({ key: 'miDocumentation', comment: ['&& denotes a mnemonic'] }, "&&Documentation")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'workbench.action.openDocumentationUrl') }) : null,
B
Benjamin Pasero 已提交
911
			product.releaseNotesUrl ? new MenuItem({ label: mnemonicLabel(nls.localize({ key: 'miReleaseNotes', comment: ['&& denotes a mnemonic'] }, "&&Release Notes")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'update.showCurrentReleaseNotes') }) : null,
912
			__separator__(),
913
			keyboardShortcutsUrl ? new MenuItem({ label: mnemonicLabel(nls.localize({ key: 'miKeyboardShortcuts', comment: ['&& denotes a mnemonic'] }, "&&Keyboard Shortcuts Reference")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'workbench.action.keybindingsReference') }) : null,
914
			product.introductoryVideosUrl ? new MenuItem({ label: mnemonicLabel(nls.localize({ key: 'miIntroductoryVideos', comment: ['&& denotes a mnemonic'] }, "Introductory &&Videos")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'workbench.action.openIntroductoryVideosUrl') }) : null,
I
isidor 已提交
915
			(product.introductoryVideosUrl || keyboardShortcutsUrl) ? __separator__() : null,
B
Benjamin Pasero 已提交
916 917
			product.twitterUrl ? new MenuItem({ label: 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: mnemonicLabel(nls.localize({ key: 'miUserVoice', comment: ['&& denotes a mnemonic'] }, "&&Search Feature Requests")), click: () => this.openUrl(product.requestFeatureUrl, 'openUserVoiceUrl') }) : null,
B
Benjamin Pasero 已提交
918
			reportIssuesItem,
B
Benjamin Pasero 已提交
919 920
			(product.twitterUrl || product.requestFeatureUrl || product.reportIssueUrl) ? __separator__() : null,
			product.licenseUrl ? new MenuItem({
I
isidor 已提交
921
				label: mnemonicLabel(nls.localize({ key: 'miLicense', comment: ['&& denotes a mnemonic'] }, "View &&License")), click: () => {
922
					if (language) {
B
Benjamin Pasero 已提交
923
						const queryArgChar = product.licenseUrl.indexOf('?') > 0 ? '&' : '?';
924
						this.openUrl(`${product.licenseUrl}${queryArgChar}lang=${language}`, 'openLicenseUrl');
B
Benjamin Pasero 已提交
925
					} else {
B
Benjamin Pasero 已提交
926
						this.openUrl(product.licenseUrl, 'openLicenseUrl');
B
Benjamin Pasero 已提交
927
					}
928
				}
B
Benjamin Pasero 已提交
929
			}) : null,
B
Benjamin Pasero 已提交
930
			product.privacyStatementUrl ? new MenuItem({
931
				label: mnemonicLabel(nls.localize({ key: 'miPrivacyStatement', comment: ['&& denotes a mnemonic'] }, "&&Privacy Statement")), click: () => {
932
					if (language) {
B
Benjamin Pasero 已提交
933
						const queryArgChar = product.licenseUrl.indexOf('?') > 0 ? '&' : '?';
934
						this.openUrl(`${product.privacyStatementUrl}${queryArgChar}lang=${language}`, 'openPrivacyStatement');
935
					} else {
B
Benjamin Pasero 已提交
936
						this.openUrl(product.privacyStatementUrl, 'openPrivacyStatement');
937 938 939
					}
				}
			}) : null,
B
Benjamin Pasero 已提交
940
			(product.licenseUrl || product.privacyStatementUrl) ? __separator__() : null,
E
Erich Gamma 已提交
941
			toggleDevToolsItem,
942
			isWindows && product.quality !== 'stable' ? showAccessibilityOptions : null
B
Benjamin Pasero 已提交
943
		]).forEach(item => helpMenu.append(item));
E
Erich Gamma 已提交
944

945
		if (!isMacintosh) {
E
Erich Gamma 已提交
946 947 948 949 950 951 952
			const updateMenuItems = this.getUpdateMenuItems();
			if (updateMenuItems.length) {
				helpMenu.append(__separator__());
				updateMenuItems.forEach(i => helpMenu.append(i));
			}

			helpMenu.append(__separator__());
J
fix npe  
Joao Moreno 已提交
953
			helpMenu.append(new MenuItem({ label: mnemonicLabel(nls.localize({ key: 'miAbout', comment: ['&& denotes a mnemonic'] }, "&&About")), click: () => this.openAboutDialog() }));
E
Erich Gamma 已提交
954 955 956
		}
	}

B
Benjamin Pasero 已提交
957
	private getUpdateMenuItems(): Electron.MenuItem[] {
B
Benjamin Pasero 已提交
958
		switch (this.updateService.state) {
J
Joao Moreno 已提交
959
			case UpdateState.Uninitialized:
E
Erich Gamma 已提交
960 961
				return [];

J
Joao Moreno 已提交
962
			case UpdateState.UpdateDownloaded:
B
Benjamin Pasero 已提交
963 964
				return [new MenuItem({
					label: nls.localize('miRestartToUpdate', "Restart To Update..."), click: () => {
J
fix npe  
Joao Moreno 已提交
965
						this.reportMenuActionTelemetry('RestartToUpdate');
J
Joao Moreno 已提交
966
						this.updateService.quitAndInstall();
B
Benjamin Pasero 已提交
967 968
					}
				})];
E
Erich Gamma 已提交
969

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

J
Joao Moreno 已提交
973
			case UpdateState.UpdateAvailable:
974
				if (isLinux) {
J
Joao Moreno 已提交
975
					return [new MenuItem({
J
Joao Moreno 已提交
976
						label: nls.localize('miDownloadUpdate', "Download Available Update"), click: () => {
J
Joao Moreno 已提交
977
							this.updateService.quitAndInstall();
J
Joao Moreno 已提交
978 979 980 981
						}
					})];
				}

982
				const updateAvailableLabel = isWindows
E
Erich Gamma 已提交
983 984 985 986 987 988
					? nls.localize('miDownloadingUpdate', "Downloading Update...")
					: nls.localize('miInstallingUpdate', "Installing Update...");

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

			default:
B
Benjamin Pasero 已提交
989
				const result = [new MenuItem({
B
Benjamin Pasero 已提交
990
					label: nls.localize('miCheckForUpdates', "Check For Updates..."), click: () => setTimeout(() => {
J
fix npe  
Joao Moreno 已提交
991
						this.reportMenuActionTelemetry('CheckForUpdate');
J
Joao Moreno 已提交
992
						this.updateService.checkForUpdates(true);
B
Benjamin Pasero 已提交
993 994
					}, 0)
				})];
E
Erich Gamma 已提交
995 996 997 998 999

				return result;
		}
	}

1000
	private createMenuItem(label: string, commandId: string | string[], enabled?: boolean, checked?: boolean): Electron.MenuItem;
B
Benjamin Pasero 已提交
1001 1002
	private createMenuItem(label: string, click: () => void, enabled?: boolean, checked?: boolean): Electron.MenuItem;
	private createMenuItem(arg1: string, arg2: any, arg3?: boolean, arg4?: boolean): Electron.MenuItem {
B
Benjamin Pasero 已提交
1003
		const label = mnemonicLabel(arg1);
1004
		const click: () => void = (typeof arg2 === 'function') ? arg2 : (menuItem, win, event) => {
1005
			let commandId = arg2;
1006
			if (Array.isArray(arg2)) {
1007
				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
1008 1009
			}

1010
			this.windowsService.sendToFocused('vscode:runAction', commandId);
1011
		};
B
Benjamin Pasero 已提交
1012
		const enabled = typeof arg3 === 'boolean' ? arg3 : this.windowsService.getWindowCount() > 0;
B
Benjamin Pasero 已提交
1013
		const checked = typeof arg4 === 'boolean' ? arg4 : false;
E
Erich Gamma 已提交
1014

1015
		let commandId: string;
E
Erich Gamma 已提交
1016
		if (typeof arg2 === 'string') {
1017
			commandId = arg2;
E
Erich Gamma 已提交
1018 1019
		}

B
Benjamin Pasero 已提交
1020
		const options: Electron.MenuItemOptions = {
B
Benjamin Pasero 已提交
1021 1022 1023
			label,
			click,
			enabled
E
Erich Gamma 已提交
1024 1025
		};

B
Benjamin Pasero 已提交
1026 1027 1028 1029 1030
		if (checked) {
			options['type'] = 'checkbox';
			options['checked'] = checked;
		}

1031
		return new MenuItem(this.withKeybinding(commandId, options));
E
Erich Gamma 已提交
1032 1033
	}

1034 1035
	private createDevToolsAwareMenuItem(label: string, commandId: string, devToolsFocusedFn: (contents: Electron.WebContents) => void): Electron.MenuItem {
		return new MenuItem(this.withKeybinding(commandId, {
1036
			label: mnemonicLabel(label),
B
Benjamin Pasero 已提交
1037
			enabled: this.windowsService.getWindowCount() > 0,
1038
			click: () => {
B
Benjamin Pasero 已提交
1039
				const windowInFocus = this.windowsService.getFocusedWindow();
1040 1041 1042 1043
				if (!windowInFocus) {
					return;
				}

B
Benjamin Pasero 已提交
1044 1045
				if (windowInFocus.win.webContents.isDevToolsFocused()) {
					devToolsFocusedFn(windowInFocus.win.webContents.devToolsWebContents);
1046
				} else {
1047
					this.windowsService.sendToFocused('vscode:runAction', commandId);
1048 1049
				}
			}
1050
		}));
1051 1052
	}

1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
	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 {
1067
				const bindingIndex = options.label.indexOf('(');
1068
				if (bindingIndex >= 0) {
1069
					options.label = `${options.label.substr(0, bindingIndex)} (${binding.label})`;
1070
				} else {
1071
					options.label = `${options.label} (${binding.label})`;
1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
				}
			}
		}

		// 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 {
1085
		if (setAccelerator) {
1086
			options = this.withKeybinding(commandId, options);
1087
		}
1088

1089 1090
		const originalClick = options.click;
		options.click = (item, window, event) => {
1091
			this.reportMenuActionTelemetry(commandId);
1092 1093 1094 1095 1096
			if (originalClick) {
				originalClick(item, window, event);
			}
		};

1097
		return options;
E
Erich Gamma 已提交
1098 1099
	}

J
fix npe  
Joao Moreno 已提交
1100
	private openAboutDialog(): void {
B
Benjamin Pasero 已提交
1101
		const lastActiveWindow = this.windowsService.getFocusedWindow() || this.windowsService.getLastActiveWindow();
J
fix npe  
Joao Moreno 已提交
1102 1103

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

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

J
fix npe  
Joao Moreno 已提交
1123 1124 1125
	private openUrl(url: string, id: string): void {
		shell.openExternal(url);
		this.reportMenuActionTelemetry(id);
E
Erich Gamma 已提交
1126 1127
	}

J
fix npe  
Joao Moreno 已提交
1128
	private reportMenuActionTelemetry(id: string): void {
1129
		this.telemetryService.publicLog('workbenchActionExecuted', { id, from: telemetryFrom });
J
fix npe  
Joao Moreno 已提交
1130
	}
E
Erich Gamma 已提交
1131 1132
}

B
Benjamin Pasero 已提交
1133
function __separator__(): Electron.MenuItem {
E
Erich Gamma 已提交
1134 1135 1136 1137
	return new MenuItem({ type: 'separator' });
}

function mnemonicLabel(label: string): string {
1138
	if (isMacintosh) {
1139
		return label.replace(/\(&&\w\)|&&/g, ''); // no mnemonic support on mac
E
Erich Gamma 已提交
1140 1141 1142 1143
	}

	return label.replace(/&&/g, '&');
}
1144 1145

function unMnemonicLabel(label: string): string {
1146
	if (isMacintosh) {
1147 1148 1149 1150
		return label; // no mnemonic support on mac
	}

	return label.replace(/&/g, '&&');
1151
}