window.ts 19.9 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 9 10 11
import * as path from 'path';
import * as platform from 'vs/base/common/platform';
import * as objects from 'vs/base/common/objects';
import { IStorageService } from 'vs/code/electron-main/storage';
12
import { shell, screen, BrowserWindow, systemPreferences, app } from 'electron';
J
Joao Moreno 已提交
13
import { TPromise, TValueCallback } from 'vs/base/common/winjs.base';
J
Joao Moreno 已提交
14
import { IEnvironmentService, ParsedArgs } from 'vs/platform/environment/common/environment';
B
Benjamin Pasero 已提交
15
import { ILogService } from 'vs/code/electron-main/log';
16
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
J
Joao Moreno 已提交
17
import { parseArgs } from 'vs/platform/environment/node/argv';
18
import product from 'vs/platform/node/product';
19
import { getCommonHTTPHeaders } from 'vs/platform/environment/node/http';
20
import { IWindowSettings } from 'vs/platform/windows/common/windows';
E
Erich Gamma 已提交
21 22 23 24 25 26 27 28 29

export interface IWindowState {
	width?: number;
	height?: number;
	x?: number;
	y?: number;
	mode?: WindowMode;
}

30 31
export interface IWindowCreationOptions {
	state: IWindowState;
32
	extensionDevelopmentPath?: string;
33
	allowFullscreen?: boolean;
B
Benjamin Pasero 已提交
34
	titleBarStyle?: 'native' | 'custom';
35 36
}

E
Erich Gamma 已提交
37 38 39
export enum WindowMode {
	Maximized,
	Normal,
40 41
	Minimized,
	Fullscreen
E
Erich Gamma 已提交
42 43
}

B
Benjamin Pasero 已提交
44
export const defaultWindowState = function (mode = WindowMode.Normal): IWindowState {
E
Erich Gamma 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
	return {
		width: 1024,
		height: 768,
		mode: mode
	};
};

export interface IPath {

	// the workspace spath for a VSCode instance which can be null
	workspacePath?: string;

	// the file path to open within a VSCode instance
	filePath?: string;

	// the line number in the file path to open
	lineNumber?: number;

	// the column number in the file path to open
	columnNumber?: number;

	// indicator to create the file path in the VSCode instance
	createFilePath?: boolean;
}

B
Benjamin Pasero 已提交
70
export interface IWindowConfiguration extends ParsedArgs {
71 72 73
	appRoot: string;
	execPath: string;

74
	userEnv: platform.IProcessEnvironment;
B
Benjamin Pasero 已提交
75

76
	zoomLevel?: number;
77
	fullscreen?: boolean;
78
	highContrast?: boolean;
79 80 81 82 83 84
	accessibilitySupport?: boolean;

	isInitialStartup?: boolean;

	perfStartTime?: number;
	perfWindowLoadTime?: number;
85

B
Benjamin Pasero 已提交
86
	workspacePath?: string;
87

E
Erich Gamma 已提交
88 89
	filesToOpen?: IPath[];
	filesToCreate?: IPath[];
90
	filesToDiff?: IPath[];
91 92

	nodeCachedDataDir: string;
E
Erich Gamma 已提交
93 94
}

B
Benjamin Pasero 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
export enum ReadyState {

	/**
	 * This window has not loaded any HTML yet
	 */
	NONE,

	/**
	 * This window is loading HTML
	 */
	LOADING,

	/**
	 * This window is navigating to another HTML
	 */
	NAVIGATING,

	/**
	 * This window is done loading HTML
	 */
	READY
}

export interface IVSCodeWindow {
	id: number;
	readyState: ReadyState;
	win: Electron.BrowserWindow;

	send(channel: string, ...args: any[]): void;
}

126
export class VSCodeWindow implements IVSCodeWindow {
E
Erich Gamma 已提交
127

128
	public static menuBarHiddenKey = 'menuBarHidden';
129
	public static colorThemeStorageKey = 'theme';
130

E
Erich Gamma 已提交
131 132 133
	private static MIN_WIDTH = 200;
	private static MIN_HEIGHT = 120;

134
	private options: IWindowCreationOptions;
B
Benjamin Pasero 已提交
135
	private hiddenTitleBarStyle: boolean;
E
Erich Gamma 已提交
136
	private showTimeoutHandle: any;
B
Benjamin Pasero 已提交
137
	private _id: number;
138
	private _win: Electron.BrowserWindow;
E
Erich Gamma 已提交
139 140
	private _lastFocusTime: number;
	private _readyState: ReadyState;
141
	private _extensionDevelopmentPath: string;
E
Erich Gamma 已提交
142 143 144 145 146 147 148 149
	private windowState: IWindowState;
	private currentWindowMode: WindowMode;

	private whenReadyCallbacks: TValueCallback<VSCodeWindow>[];

	private currentConfig: IWindowConfiguration;
	private pendingLoadConfig: IWindowConfiguration;

J
Joao Moreno 已提交
150 151 152
	constructor(
		config: IWindowCreationOptions,
		@ILogService private logService: ILogService,
153
		@IEnvironmentService private environmentService: IEnvironmentService,
154
		@IConfigurationService private configurationService: IConfigurationService,
B
Benjamin Pasero 已提交
155
		@IStorageService private storageService: IStorageService
J
Joao Moreno 已提交
156
	) {
157
		this.options = config;
E
Erich Gamma 已提交
158 159
		this._lastFocusTime = -1;
		this._readyState = ReadyState.NONE;
160
		this._extensionDevelopmentPath = config.extensionDevelopmentPath;
E
Erich Gamma 已提交
161 162 163
		this.whenReadyCallbacks = [];

		// Load window state
164
		this.restoreWindowState(config.state);
E
Erich Gamma 已提交
165 166

		// For VS theme we can show directly because background is white
167 168 169
		const themeId = this.storageService.getItem<string>(VSCodeWindow.colorThemeStorageKey);
		const usesLightTheme = /vs($| )/.test(themeId);
		const usesHighContrastTheme = /hc-black($| )/.test(themeId) || (platform.isWindows && systemPreferences.isInvertedColorScheme());
E
Erich Gamma 已提交
170

171 172 173
		// in case we are maximized or fullscreen, only show later after the call to maximize/fullscreen (see below)
		const isFullscreenOrMaximized = (this.currentWindowMode === WindowMode.Maximized || this.currentWindowMode === WindowMode.Fullscreen);

174
		const options: Electron.BrowserWindowOptions = {
E
Erich Gamma 已提交
175 176 177 178
			width: this.windowState.width,
			height: this.windowState.height,
			x: this.windowState.x,
			y: this.windowState.y,
179
			backgroundColor: usesHighContrastTheme ? '#000000' : usesLightTheme ? '#FFFFFF' : platform.isMacintosh ? '#171717' : '#1E1E1E', // https://github.com/electron/electron/issues/5150
180 181
			minWidth: VSCodeWindow.MIN_WIDTH,
			minHeight: VSCodeWindow.MIN_HEIGHT,
182
			show: !isFullscreenOrMaximized,
B
Benjamin Pasero 已提交
183
			title: product.nameLong,
184 185 186
			webPreferences: {
				'backgroundThrottling': false // by default if Code is in the background, intervals and timeouts get throttled
			}
E
Erich Gamma 已提交
187 188
		};

J
Joao Moreno 已提交
189
		if (platform.isLinux) {
190
			options.icon = path.join(this.environmentService.appRoot, 'resources/linux/code.png'); // Windows and Mac are better off using the embedded icon(s)
E
Erich Gamma 已提交
191 192
		}

193
		if (platform.isMacintosh && (!this.options.titleBarStyle || this.options.titleBarStyle === 'custom')) {
194
			const isDev = !this.environmentService.isBuilt || !!config.extensionDevelopmentPath;
B
Benjamin Pasero 已提交
195 196
			if (!isDev) {
				options.titleBarStyle = 'hidden'; // not enabled when developing due to https://github.com/electron/electron/issues/3647
B
Benjamin Pasero 已提交
197
				this.hiddenTitleBarStyle = true;
B
Benjamin Pasero 已提交
198 199 200
			}
		}

E
Erich Gamma 已提交
201 202
		// Create the browser window.
		this._win = new BrowserWindow(options);
B
Benjamin Pasero 已提交
203
		this._id = this._win.id;
E
Erich Gamma 已提交
204

J
Joao Moreno 已提交
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
		// TODO@joao: hook this up to some initialization routine
		// this causes a race between setting the headers and doing
		// a request that needs them. chances are low
		getCommonHTTPHeaders().done(headers => {
			if (!this._win) {
				return;
			}

			const urls = ['https://marketplace.visualstudio.com/*', 'https://*.vsassets.io/*'];

			this._win.webContents.session.webRequest.onBeforeSendHeaders({ urls }, (details, cb) => {
				cb({ cancel: false, requestHeaders: objects.assign(details.requestHeaders, headers) });
			});
		});

220
		if (isFullscreenOrMaximized) {
E
Erich Gamma 已提交
221 222
			this.win.maximize();

223 224 225 226
			if (this.currentWindowMode === WindowMode.Fullscreen) {
				this.win.setFullScreen(true);
			}

E
Erich Gamma 已提交
227 228 229 230 231
			if (!this.win.isVisible()) {
				this.win.show(); // to reduce flicker from the default window size to maximize, we only show after maximize
			}
		}

232
		this._lastFocusTime = Date.now(); // since we show directly, we need to set the last focus time too
E
Erich Gamma 已提交
233

J
Joao Moreno 已提交
234
		if (this.storageService.getItem<boolean>(VSCodeWindow.menuBarHiddenKey, false)) {
235 236 237
			this.setMenuBarVisibility(false); // respect configured menu bar visibility
		}

E
Erich Gamma 已提交
238 239 240
		this.registerListeners();
	}

241
	public hasHiddenTitleBarStyle(): boolean {
B
Benjamin Pasero 已提交
242
		return this.hiddenTitleBarStyle;
243 244
	}

E
Erich Gamma 已提交
245
	public get isPluginDevelopmentHost(): boolean {
246 247 248 249 250
		return !!this._extensionDevelopmentPath;
	}

	public get extensionDevelopmentPath(): string {
		return this._extensionDevelopmentPath;
E
Erich Gamma 已提交
251 252 253 254 255 256
	}

	public get config(): IWindowConfiguration {
		return this.currentConfig;
	}

B
Benjamin Pasero 已提交
257 258 259 260
	public get id(): number {
		return this._id;
	}

261
	public get win(): Electron.BrowserWindow {
E
Erich Gamma 已提交
262 263 264
		return this._win;
	}

B
Benjamin Pasero 已提交
265
	public focus(): void {
E
Erich Gamma 已提交
266 267 268 269
		if (!this._win) {
			return;
		}

B
Benjamin Pasero 已提交
270 271
		if (this._win.isMinimized()) {
			this._win.restore();
E
Erich Gamma 已提交
272 273
		}

B
Benjamin Pasero 已提交
274
		this._win.focus();
E
Erich Gamma 已提交
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
	}

	public get lastFocusTime(): number {
		return this._lastFocusTime;
	}

	public get openedWorkspacePath(): string {
		return this.currentConfig.workspacePath;
	}

	public get openedFilePath(): string {
		return this.currentConfig.filesToOpen && this.currentConfig.filesToOpen[0] && this.currentConfig.filesToOpen[0].filePath;
	}

	public setReady(): void {
		this._readyState = ReadyState.READY;

		// inform all waiting promises that we are ready now
		while (this.whenReadyCallbacks.length) {
			this.whenReadyCallbacks.pop()(this);
		}
	}

	public ready(): TPromise<VSCodeWindow> {
		return new TPromise<VSCodeWindow>((c) => {
			if (this._readyState === ReadyState.READY) {
				return c(this);
			}

			// otherwise keep and call later when we are ready
			this.whenReadyCallbacks.push(c);
		});
	}

	public get readyState(): ReadyState {
		return this._readyState;
	}

	private registerListeners(): void {

		// Remember that we loaded
		this._win.webContents.on('did-finish-load', () => {
			this._readyState = ReadyState.LOADING;

			// Associate properties from the load request if provided
			if (this.pendingLoadConfig) {
				this.currentConfig = this.pendingLoadConfig;

B
Benjamin Pasero 已提交
323
				this.pendingLoadConfig = null;
E
Erich Gamma 已提交
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
			}

			// To prevent flashing, we set the window visible after the page has finished to load but before VSCode is loaded
			if (!this.win.isVisible()) {
				if (this.currentWindowMode === WindowMode.Maximized) {
					this.win.maximize();
				}

				if (!this.win.isVisible()) { // maximize also makes visible
					this.win.show();
				}
			}
		});

		// App commands support
		this._win.on('app-command', (e, cmd) => {
			if (this.readyState !== ReadyState.READY) {
				return; // window must be ready
			}

			// Support navigation via mouse buttons 4/5
			if (cmd === 'browser-backward') {
346
				this.send('vscode:runAction', 'workbench.action.navigateBack');
E
Erich Gamma 已提交
347
			} else if (cmd === 'browser-forward') {
348
				this.send('vscode:runAction', 'workbench.action.navigateForward');
E
Erich Gamma 已提交
349 350 351 352 353 354 355
			}
		});

		// Handle code that wants to open links
		this._win.webContents.on('new-window', (event: Event, url: string) => {
			event.preventDefault();

B
Benjamin Pasero 已提交
356
			shell.openExternal(url);
E
Erich Gamma 已提交
357 358 359 360
		});

		// Window Focus
		this._win.on('focus', () => {
B
Benjamin Pasero 已提交
361
			this._lastFocusTime = Date.now();
E
Erich Gamma 已提交
362 363
		});

364 365 366 367 368 369 370 371 372
		// Window Fullscreen
		this._win.on('enter-full-screen', () => {
			this.sendWhenReady('vscode:enterFullScreen');
		});

		this._win.on('leave-full-screen', () => {
			this.sendWhenReady('vscode:leaveFullScreen');
		});

373 374 375 376 377 378 379 380 381 382 383
		// React to HC color scheme changes (Windows)
		if (platform.isWindows) {
			systemPreferences.on('inverted-color-scheme-changed', () => {
				if (systemPreferences.isInvertedColorScheme()) {
					this.sendWhenReady('vscode:enterHighContrast');
				} else {
					this.sendWhenReady('vscode:leaveHighContrast');
				}
			});
		}

E
Erich Gamma 已提交
384 385 386 387 388 389 390
		// Window Failed to load
		this._win.webContents.on('did-fail-load', (event: Event, errorCode: string, errorDescription: string) => {
			console.warn('[electron event]: fail to load, ', errorDescription);
		});

		// Prevent any kind of navigation triggered by the user!
		// But do not touch this in dev version because it will prevent "Reload" from dev tools
391
		if (this.environmentService.isBuilt) {
E
Erich Gamma 已提交
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
			this._win.webContents.on('will-navigate', (event: Event) => {
				if (event) {
					event.preventDefault();
				}
			});
		}
	}

	public load(config: IWindowConfiguration): void {

		// If this is the first time the window is loaded, we associate the paths
		// directly with the window because we assume the loading will just work
		if (this.readyState === ReadyState.NONE) {
			this.currentConfig = config;
		}

		// Otherwise, the window is currently showing a folder and if there is an
		// unload handler preventing the load, we cannot just associate the paths
		// because the loading might be vetoed. Instead we associate it later when
		// the window load event has fired.
		else {
			this.pendingLoadConfig = config;
			this._readyState = ReadyState.NAVIGATING;
		}

417 418 419 420 421
		// Make sure to clear any previous edited state
		if (platform.isMacintosh && this._win.isDocumentEdited()) {
			this._win.setDocumentEdited(false);
		}

E
Erich Gamma 已提交
422
		// Load URL
B
Benjamin Pasero 已提交
423
		this._win.loadURL(this.getUrl(config));
E
Erich Gamma 已提交
424 425

		// Make window visible if it did not open in N seconds because this indicates an error
426
		if (!this.environmentService.isBuilt) {
E
Erich Gamma 已提交
427 428 429 430
			this.showTimeoutHandle = setTimeout(() => {
				if (this._win && !this._win.isVisible() && !this._win.isMinimized()) {
					this._win.show();
					this._win.focus();
431
					this._win.webContents.openDevTools();
E
Erich Gamma 已提交
432 433 434 435 436
				}
			}, 10000);
		}
	}

B
Benjamin Pasero 已提交
437
	public reload(cli?: ParsedArgs): void {
E
Erich Gamma 已提交
438 439

		// Inherit current properties but overwrite some
440
		const configuration: IWindowConfiguration = objects.mixin({}, this.currentConfig);
E
Erich Gamma 已提交
441 442
		delete configuration.filesToOpen;
		delete configuration.filesToCreate;
443
		delete configuration.filesToDiff;
444

E
Erich Gamma 已提交
445 446 447
		// Some configuration things get inherited if the window is being reloaded and we are
		// in plugin development mode. These options are all development related.
		if (this.isPluginDevelopmentHost && cli) {
B
Benjamin Pasero 已提交
448
			configuration.verbose = cli.verbose;
449
			configuration.debugPluginHost = cli.debugPluginHost;
450
			configuration.debugBrkPluginHost = cli.debugBrkPluginHost;
451
			configuration['extensions-dir'] = cli['extensions-dir'];
E
Erich Gamma 已提交
452 453
		}

454 455
		configuration.isInitialStartup = false; // since this is a reload

E
Erich Gamma 已提交
456 457 458 459
		// Load config
		this.load(configuration);
	}

460
	private getUrl(windowConfiguration: IWindowConfiguration): string {
J
Joao Moreno 已提交
461
		let url = require.toUrl('vs/workbench/electron-browser/bootstrap/index.html');
E
Erich Gamma 已提交
462

463
		// Set zoomlevel
464 465
		const windowConfig = this.configurationService.getConfiguration<IWindowSettings>('window');
		const zoomLevel = windowConfig && windowConfig.zoomLevel;
466 467 468 469
		if (typeof zoomLevel === 'number') {
			windowConfiguration.zoomLevel = zoomLevel;
		}

470 471 472
		// Set fullscreen state
		windowConfiguration.fullscreen = this._win.isFullScreen();

473
		// Set Accessibility Config
474
		windowConfiguration.highContrast = platform.isWindows && systemPreferences.isInvertedColorScheme();
475 476 477 478 479
		windowConfiguration.accessibilitySupport = app.isAccessibilitySupportEnabled();

		// Perf Counters
		windowConfiguration.perfStartTime = global.perfStartTime;
		windowConfiguration.perfWindowLoadTime = Date.now();
480

481 482 483
		// Config (combination of process.argv and window configuration)
		const environment = parseArgs(process.argv);
		const config = objects.assign(environment, windowConfiguration);
484 485 486 487 488
		for (let key in config) {
			if (!config[key]) {
				delete config[key]; // only send over properties that have a true value
			}
		}
489

E
Erich Gamma 已提交
490 491 492 493 494 495 496
		url += '?config=' + encodeURIComponent(JSON.stringify(config));

		return url;
	}

	public serializeWindowState(): IWindowState {
		if (this.win.isFullScreen()) {
497
			return {
498 499 500 501 502 503
				mode: WindowMode.Fullscreen,
				// still carry over window dimensions from previous sessions!
				width: this.windowState.width,
				height: this.windowState.height,
				x: this.windowState.x,
				y: this.windowState.y
504
			};
E
Erich Gamma 已提交
505 506
		}

507
		const state: IWindowState = Object.create(null);
E
Erich Gamma 已提交
508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
		let mode: WindowMode;

		// get window mode
		if (!platform.isMacintosh && this.win.isMaximized()) {
			mode = WindowMode.Maximized;
		} else if (this.win.isMinimized()) {
			mode = WindowMode.Minimized;
		} else {
			mode = WindowMode.Normal;
		}

		// we don't want to save minimized state, only maximized or normal
		if (mode === WindowMode.Maximized) {
			state.mode = WindowMode.Maximized;
		} else if (mode !== WindowMode.Minimized) {
			state.mode = WindowMode.Normal;
		}

		// only consider non-minimized window states
		if (mode === WindowMode.Normal || mode === WindowMode.Maximized) {
528 529
			const pos = this.win.getPosition();
			const size = this.win.getSize();
E
Erich Gamma 已提交
530 531 532 533 534 535 536 537 538 539 540 541 542 543 544

			state.x = pos[0];
			state.y = pos[1];
			state.width = size[0];
			state.height = size[1];
		}

		return state;
	}

	private restoreWindowState(state?: IWindowState): void {
		if (state) {
			try {
				state = this.validateWindowState(state);
			} catch (err) {
J
Joao Moreno 已提交
545
				this.logService.log(`Unexpected error validating window state: ${err}\n${err.stack}`); // somehow display API can be picky about the state to validate
E
Erich Gamma 已提交
546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
			}
		}

		if (!state) {
			state = defaultWindowState();
		}

		this.windowState = state;
		this.currentWindowMode = this.windowState.mode;
	}

	private validateWindowState(state: IWindowState): IWindowState {
		if (!state) {
			return null;
		}

562 563 564 565 566
		if (state.mode === WindowMode.Fullscreen) {
			if (this.options.allowFullscreen) {
				return state;
			}

567
			state.mode = WindowMode.Normal; // if we do not allow fullscreen, treat this state as normal window state
568 569
		}

E
Erich Gamma 已提交
570 571 572 573 574 575 576 577
		if ([state.x, state.y, state.width, state.height].some(n => typeof n !== 'number')) {
			return null;
		}

		if (state.width <= 0 || state.height <= 0) {
			return null;
		}

578
		const displays = screen.getAllDisplays();
E
Erich Gamma 已提交
579 580 581

		// Single Monitor: be strict about x/y positioning
		if (displays.length === 1) {
582
			const displayBounds = displays[0].bounds;
E
Erich Gamma 已提交
583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618

			// Careful with maximized: in that mode x/y can well be negative!
			if (state.mode !== WindowMode.Maximized && displayBounds.width > 0 && displayBounds.height > 0 /* Linux X11 sessions sometimes report wrong display bounds */) {
				if (state.x < displayBounds.x) {
					state.x = displayBounds.x; // prevent window from falling out of the screen to the left
				}

				if (state.y < displayBounds.y) {
					state.y = displayBounds.y; // prevent window from falling out of the screen to the top
				}

				if (state.x > (displayBounds.x + displayBounds.width)) {
					state.x = displayBounds.x; // prevent window from falling out of the screen to the right
				}

				if (state.y > (displayBounds.y + displayBounds.height)) {
					state.y = displayBounds.y; // prevent window from falling out of the screen to the bottom
				}

				if (state.width > displayBounds.width) {
					state.width = displayBounds.width; // prevent window from exceeding display bounds width
				}

				if (state.height > displayBounds.height) {
					state.height = displayBounds.height; // prevent window from exceeding display bounds height
				}
			}

			if (state.mode === WindowMode.Maximized) {
				return defaultWindowState(WindowMode.Maximized); // when maximized, make sure we have good values when the user restores the window
			}

			return state;
		}

		// Multi Monitor: be less strict because metrics can be crazy
619 620
		const bounds = { x: state.x, y: state.y, width: state.width, height: state.height };
		const display = screen.getDisplayMatching(bounds);
E
Erich Gamma 已提交
621 622
		if (display && display.bounds.x + display.bounds.width > bounds.x && display.bounds.y + display.bounds.height > bounds.y) {
			if (state.mode === WindowMode.Maximized) {
623
				const defaults = defaultWindowState(WindowMode.Maximized); // when maximized, make sure we have good values when the user restores the window
E
Erich Gamma 已提交
624 625 626 627 628 629 630 631 632 633 634 635
				defaults.x = state.x; // carefull to keep x/y position so that the window ends up on the correct monitor
				defaults.y = state.y;

				return defaults;
			}

			return state;
		}

		return null;
	}

B
Benjamin Pasero 已提交
636
	public getBounds(): Electron.Rectangle {
637 638
		const pos = this.win.getPosition();
		const dimension = this.win.getSize();
E
Erich Gamma 已提交
639 640 641 642 643

		return { x: pos[0], y: pos[1], width: dimension[0], height: dimension[1] };
	}

	public toggleFullScreen(): void {
644
		const willBeFullScreen = !this.win.isFullScreen();
E
Erich Gamma 已提交
645

646 647
		this.win.setFullScreen(willBeFullScreen);

648 649
		// Windows & Linux: Hide the menu bar but still allow to bring it up by pressing the Alt key
		if (platform.isWindows || platform.isLinux) {
650 651 652
			if (willBeFullScreen) {
				this.setMenuBarVisibility(false);
			} else {
J
Joao Moreno 已提交
653
				this.setMenuBarVisibility(!this.storageService.getItem<boolean>(VSCodeWindow.menuBarHiddenKey, false)); // restore as configured
654
			}
655
		}
E
Erich Gamma 已提交
656 657
	}

658 659 660 661 662
	public setMenuBarVisibility(visible: boolean): void {
		this.win.setMenuBarVisibility(visible);
		this.win.setAutoHideMenuBar(!visible);
	}

663 664 665 666 667 668 669 670 671 672
	public sendWhenReady(channel: string, ...args: any[]): void {
		this.ready().then(() => {
			this.send(channel, ...args);
		});
	}

	public send(channel: string, ...args: any[]): void {
		this._win.webContents.send(channel, ...args);
	}

E
Erich Gamma 已提交
673 674 675 676 677 678 679
	public dispose(): void {
		if (this.showTimeoutHandle) {
			clearTimeout(this.showTimeoutHandle);
		}

		this._win = null; // Important to dereference the window object to allow for GC
	}
680
}