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

B
Benjamin Pasero 已提交
7
import { Dimension, Builder } from 'vs/base/browser/builder';
J
Johannes Rieken 已提交
8 9 10 11
import { Part } from 'vs/workbench/browser/part';
import { QuickOpenController } from 'vs/workbench/browser/parts/quickopen/quickOpenController';
import { Sash, ISashEvent, IVerticalSashLayoutProvider, IHorizontalSashLayoutProvider, Orientation } from 'vs/base/browser/ui/sash/sash';
import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/editorService';
B
Benjamin Pasero 已提交
12
import { IPartService, Position, ILayoutOptions } from 'vs/workbench/services/part/common/partService';
J
Johannes Rieken 已提交
13 14 15 16 17 18 19
import { IViewletService } from 'vs/workbench/services/viewlet/common/viewletService';
import { IStorageService, StorageScope } from 'vs/platform/storage/common/storage';
import { IContextViewService } from 'vs/platform/contextview/browser/contextView';
import { IEventService } from 'vs/platform/event/common/event';
import { IThemeService } from 'vs/workbench/services/themes/common/themeService';
import { IDisposable, dispose } from 'vs/base/common/lifecycle';
import { IEditorGroupService } from 'vs/workbench/services/group/common/groupService';
20
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
B
Benjamin Pasero 已提交
21
import { getZoomFactor } from 'vs/base/browser/browser';
E
Erich Gamma 已提交
22

23
const DEFAULT_MIN_SIDEBAR_PART_WIDTH = 170;
I
isidor 已提交
24
const DEFAULT_MIN_PANEL_PART_HEIGHT = 77;
25 26
const DEFAULT_MIN_EDITOR_PART_HEIGHT = 70;
const DEFAULT_MIN_EDITOR_PART_WIDTH = 220;
I
isidor 已提交
27
const DEFAULT_PANEL_HEIGHT_COEFFICIENT = 0.4;
E
Erich Gamma 已提交
28
const HIDE_SIDEBAR_WIDTH_THRESHOLD = 50;
I
isidor 已提交
29
const HIDE_PANEL_HEIGHT_THRESHOLD = 50;
E
Erich Gamma 已提交
30 31

interface ComputedStyles {
32
	titlebar: { height: number; display: string; };
B
Benjamin Pasero 已提交
33
	activitybar: { width: number; };
E
Erich Gamma 已提交
34
	sidebar: { minWidth: number; };
B
Benjamin Pasero 已提交
35
	panel: { minHeight: number; };
36
	editor: { minWidth: number; minHeight: number; };
E
Erich Gamma 已提交
37 38 39 40
	statusbar: { height: number; };
}

/**
B
Benjamin Pasero 已提交
41
 * The workbench layout is responsible to lay out all parts that make the Workbench.
E
Erich Gamma 已提交
42
 */
I
isidor 已提交
43
export class WorkbenchLayout implements IVerticalSashLayoutProvider, IHorizontalSashLayoutProvider {
E
Erich Gamma 已提交
44

I
isidor 已提交
45
	private static sashXWidthSettingsKey = 'workbench.sidebar.width';
I
isidor 已提交
46
	private static sashYHeightSettingsKey = 'workbench.panel.height';
E
Erich Gamma 已提交
47 48 49

	private parent: Builder;
	private workbenchContainer: Builder;
B
Benjamin Pasero 已提交
50
	private titlebar: Part;
E
Erich Gamma 已提交
51 52 53
	private activitybar: Part;
	private editor: Part;
	private sidebar: Part;
B
Benjamin Pasero 已提交
54
	private panel: Part;
E
Erich Gamma 已提交
55 56
	private statusbar: Part;
	private quickopen: QuickOpenController;
M
Martin Aeschlimann 已提交
57
	private toUnbind: IDisposable[];
E
Erich Gamma 已提交
58
	private computedStyles: ComputedStyles;
B
Benjamin Pasero 已提交
59
	private initialComputedStyles: ComputedStyles;
E
Erich Gamma 已提交
60
	private workbenchSize: Dimension;
I
isidor 已提交
61 62
	private sashX: Sash;
	private sashY: Sash;
E
Erich Gamma 已提交
63 64
	private startSidebarWidth: number;
	private sidebarWidth: number;
I
isidor 已提交
65
	private sidebarHeight: number;
B
Benjamin Pasero 已提交
66 67 68
	private titlebarHeight: number;
	private activitybarWidth: number;
	private statusbarHeight: number;
I
isidor 已提交
69 70
	private startPanelHeight: number;
	private panelHeight: number;
71
	private panelHeightBeforeMaximized: number;
I
isidor 已提交
72
	private panelWidth: number;
73
	private layoutEditorGroupsVertically: boolean;
E
Erich Gamma 已提交
74

I
isidor 已提交
75
	// Take parts as an object bag since instatation service does not have typings for constructors with 9+ arguments
E
Erich Gamma 已提交
76 77 78
	constructor(
		parent: Builder,
		workbenchContainer: Builder,
I
isidor 已提交
79
		parts: {
B
Benjamin Pasero 已提交
80
			titlebar: Part,
I
isidor 已提交
81 82 83 84 85 86
			activitybar: Part,
			editor: Part,
			sidebar: Part,
			panel: Part,
			statusbar: Part
		},
E
Erich Gamma 已提交
87 88
		quickopen: QuickOpenController,
		@IStorageService private storageService: IStorageService,
M
Martin Aeschlimann 已提交
89
		@IEventService eventService: IEventService,
E
Erich Gamma 已提交
90 91
		@IContextViewService private contextViewService: IContextViewService,
		@IWorkbenchEditorService private editorService: IWorkbenchEditorService,
92
		@IEditorGroupService private editorGroupService: IEditorGroupService,
M
Martin Aeschlimann 已提交
93
		@IPartService private partService: IPartService,
94
		@IConfigurationService configurationService: IConfigurationService,
M
Maxime Quandalle 已提交
95
		@IViewletService private viewletService: IViewletService,
M
Martin Aeschlimann 已提交
96
		@IThemeService themeService: IThemeService
E
Erich Gamma 已提交
97 98 99
	) {
		this.parent = parent;
		this.workbenchContainer = workbenchContainer;
B
Benjamin Pasero 已提交
100
		this.titlebar = parts.titlebar;
I
isidor 已提交
101 102 103
		this.activitybar = parts.activitybar;
		this.editor = parts.editor;
		this.sidebar = parts.sidebar;
B
Benjamin Pasero 已提交
104
		this.panel = parts.panel;
I
isidor 已提交
105
		this.statusbar = parts.statusbar;
E
Erich Gamma 已提交
106 107 108
		this.quickopen = quickopen;
		this.toUnbind = [];
		this.computedStyles = null;
109

I
isidor 已提交
110
		this.sashX = new Sash(this.workbenchContainer.getHTMLElement(), this, {
E
Erich Gamma 已提交
111 112
			baseSize: 5
		});
113

I
isidor 已提交
114
		this.sashY = new Sash(this.workbenchContainer.getHTMLElement(), this, {
I
isidor 已提交
115
			baseSize: 4,
I
isidor 已提交
116 117
			orientation: Orientation.HORIZONTAL
		});
E
Erich Gamma 已提交
118

I
isidor 已提交
119
		this.sidebarWidth = this.storageService.getInteger(WorkbenchLayout.sashXWidthSettingsKey, StorageScope.GLOBAL, -1);
I
isidor 已提交
120
		this.panelHeight = this.storageService.getInteger(WorkbenchLayout.sashYHeightSettingsKey, StorageScope.GLOBAL, 0);
E
Erich Gamma 已提交
121

122
		this.layoutEditorGroupsVertically = (this.editorGroupService.getGroupOrientation() !== 'horizontal');
123

M
Martin Aeschlimann 已提交
124
		this.toUnbind.push(themeService.onDidColorThemeChange(_ => this.relayout()));
125
		this.toUnbind.push(editorGroupService.onEditorsChanged(() => this.onEditorsChanged()));
126
		this.toUnbind.push(editorGroupService.onGroupOrientationChanged(e => this.onGroupOrientationChanged()));
M
Martin Aeschlimann 已提交
127

E
Erich Gamma 已提交
128 129 130 131 132
		this.registerSashListeners();
	}

	private registerSashListeners(): void {
		let startX: number = 0;
I
isidor 已提交
133
		let startY: number = 0;
E
Erich Gamma 已提交
134

A
Alex Dima 已提交
135
		this.sashX.addListener2('start', (e: ISashEvent) => {
E
Erich Gamma 已提交
136 137 138 139
			this.startSidebarWidth = this.sidebarWidth;
			startX = e.startX;
		});

A
Alex Dima 已提交
140
		this.sashY.addListener2('start', (e: ISashEvent) => {
I
isidor 已提交
141
			this.startPanelHeight = this.panelHeight;
I
isidor 已提交
142 143 144
			startY = e.startY;
		});

A
Alex Dima 已提交
145
		this.sashX.addListener2('change', (e: ISashEvent) => {
E
Erich Gamma 已提交
146 147 148 149 150 151 152 153 154 155
			let doLayout = false;
			let sidebarPosition = this.partService.getSideBarPosition();
			let isSidebarHidden = this.partService.isSideBarHidden();
			let newSashWidth = (sidebarPosition === Position.LEFT) ? this.startSidebarWidth + e.currentX - startX : this.startSidebarWidth - e.currentX + startX;

			// Sidebar visible
			if (!isSidebarHidden) {

				// Automatically hide side bar when a certain threshold is met
				if (newSashWidth + HIDE_SIDEBAR_WIDTH_THRESHOLD < this.computedStyles.sidebar.minWidth) {
156
					let dragCompensation = DEFAULT_MIN_SIDEBAR_PART_WIDTH - HIDE_SIDEBAR_WIDTH_THRESHOLD;
E
Erich Gamma 已提交
157
					this.partService.setSideBarHidden(true);
B
Benjamin Pasero 已提交
158
					startX = (sidebarPosition === Position.LEFT) ? Math.max(this.activitybarWidth, e.currentX - dragCompensation) : Math.min(e.currentX + dragCompensation, this.workbenchSize.width - this.activitybarWidth);
E
Erich Gamma 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
					this.sidebarWidth = this.startSidebarWidth; // when restoring sidebar, restore to the sidebar width we started from
				}

				// Otherwise size the sidebar accordingly
				else {
					this.sidebarWidth = Math.max(this.computedStyles.sidebar.minWidth, newSashWidth); // Sidebar can not become smaller than MIN_PART_WIDTH
					doLayout = newSashWidth >= this.computedStyles.sidebar.minWidth;
				}
			}

			// Sidebar hidden
			else {
				if ((sidebarPosition === Position.LEFT && e.currentX - startX >= this.computedStyles.sidebar.minWidth) ||
					(sidebarPosition === Position.RIGHT && startX - e.currentX >= this.computedStyles.sidebar.minWidth)) {
					this.startSidebarWidth = this.computedStyles.sidebar.minWidth - (sidebarPosition === Position.LEFT ? e.currentX - startX : startX - e.currentX);
					this.sidebarWidth = this.computedStyles.sidebar.minWidth;
					this.partService.setSideBarHidden(false);
				}
			}

			if (doLayout) {
				this.layout();
			}
		});

A
Alex Dima 已提交
184
		this.sashY.addListener2('change', (e: ISashEvent) => {
I
isidor 已提交
185
			let doLayout = false;
I
isidor 已提交
186 187
			let isPanelHidden = this.partService.isPanelHidden();
			let newSashHeight = this.startPanelHeight - (e.currentY - startY);
I
isidor 已提交
188 189

			// Panel visible
I
isidor 已提交
190
			if (!isPanelHidden) {
B
Benjamin Pasero 已提交
191

192 193 194 195
				// Automatically hide panel when a certain threshold is met
				if (newSashHeight + HIDE_PANEL_HEIGHT_THRESHOLD < this.computedStyles.panel.minHeight) {
					let dragCompensation = DEFAULT_MIN_PANEL_PART_HEIGHT - HIDE_PANEL_HEIGHT_THRESHOLD;
					this.partService.setPanelHidden(true);
B
Benjamin Pasero 已提交
196
					startY = Math.min(this.sidebarHeight - this.statusbarHeight - this.titlebarHeight, e.currentY + dragCompensation);
M
Maxime Quandalle 已提交
197
					this.panelHeight = this.startPanelHeight; // when restoring panel, restore to the panel height we started from
198 199 200 201 202 203 204 205
				}

				// Otherwise size the panel accordingly
				else {
					this.panelHeight = Math.max(this.computedStyles.panel.minHeight, newSashHeight); // Panel can not become smaller than MIN_PART_HEIGHT
					doLayout = newSashHeight >= this.computedStyles.panel.minHeight;
				}
			}
I
isidor 已提交
206

207 208 209 210 211 212 213
			// Panel hidden
			else {
				if (startY - e.currentY >= this.computedStyles.panel.minHeight) {
					this.startPanelHeight = 0;
					this.panelHeight = this.computedStyles.panel.minHeight;
					this.partService.setPanelHidden(false);
				}
I
isidor 已提交
214
			}
215

I
isidor 已提交
216 217 218 219 220
			if (doLayout) {
				this.layout();
			}
		});

A
Alex Dima 已提交
221
		this.sashX.addListener2('end', () => {
I
isidor 已提交
222 223
			this.storageService.store(WorkbenchLayout.sashXWidthSettingsKey, this.sidebarWidth, StorageScope.GLOBAL);
		});
M
Maxime Quandalle 已提交
224

A
Alex Dima 已提交
225
		this.sashY.addListener2('end', () => {
I
isidor 已提交
226
			this.storageService.store(WorkbenchLayout.sashYHeightSettingsKey, this.panelHeight, StorageScope.GLOBAL);
E
Erich Gamma 已提交
227
		});
M
Maxime Quandalle 已提交
228

A
Alex Dima 已提交
229
		this.sashY.addListener2('reset', () => {
I
isidor 已提交
230
			this.panelHeight = this.sidebarHeight * DEFAULT_PANEL_HEIGHT_COEFFICIENT;
M
Maxime Quandalle 已提交
231 232 233 234 235
			this.storageService.store(WorkbenchLayout.sashYHeightSettingsKey, this.panelHeight, StorageScope.GLOBAL);
			this.partService.setPanelHidden(false);
			this.layout();
		});

A
Alex Dima 已提交
236
		this.sashX.addListener2('reset', () => {
M
Maxime Quandalle 已提交
237 238
			let activeViewlet = this.viewletService.getActiveViewlet();
			let optimalWidth = activeViewlet && activeViewlet.getOptimalWidth();
239
			this.sidebarWidth = Math.max(DEFAULT_MIN_SIDEBAR_PART_WIDTH, optimalWidth || 0);
M
Maxime Quandalle 已提交
240 241 242 243
			this.storageService.store(WorkbenchLayout.sashXWidthSettingsKey, this.sidebarWidth, StorageScope.GLOBAL);
			this.partService.setSideBarHidden(false);
			this.layout();
		});
E
Erich Gamma 已提交
244 245
	}

246
	private onEditorsChanged(): void {
E
Erich Gamma 已提交
247

248
		// Make sure that we layout properly in case we detect that the sidebar or panel is large enought to cause
E
Erich Gamma 已提交
249 250
		// multiple opened editors to go below minimal size. The fix is to trigger a layout for any editor
		// input change that falls into this category.
251
		if (this.workbenchSize && (this.sidebarWidth || this.panelHeight)) {
E
Erich Gamma 已提交
252
			let visibleEditors = this.editorService.getVisibleEditors().length;
253
			if (visibleEditors > 1) {
254 255
				const sidebarOverflow = this.layoutEditorGroupsVertically && (this.workbenchSize.width - this.sidebarWidth < visibleEditors * DEFAULT_MIN_EDITOR_PART_WIDTH);
				const panelOverflow = !this.layoutEditorGroupsVertically && (this.workbenchSize.height - this.panelHeight < visibleEditors * DEFAULT_MIN_EDITOR_PART_HEIGHT);
256 257 258 259

				if (sidebarOverflow || panelOverflow) {
					this.layout();
				}
E
Erich Gamma 已提交
260 261 262 263
			}
		}
	}

264 265
	private onGroupOrientationChanged(): void {
		const newLayoutEditorGroupsVertically = (this.editorGroupService.getGroupOrientation() !== 'horizontal');
266

267 268
		const doLayout = this.layoutEditorGroupsVertically !== newLayoutEditorGroupsVertically;
		this.layoutEditorGroupsVertically = newLayoutEditorGroupsVertically;
269 270 271 272 273 274

		if (doLayout) {
			this.layout();
		}
	}

M
Martin Aeschlimann 已提交
275
	private relayout(): void {
E
Erich Gamma 已提交
276

M
Martin Aeschlimann 已提交
277 278 279 280 281
		// Recompute Styles
		this.computeStyle();
		this.editor.getLayout().computeStyle();
		this.sidebar.getLayout().computeStyle();
		this.panel.getLayout().computeStyle();
E
Erich Gamma 已提交
282

M
Martin Aeschlimann 已提交
283 284
		// Trigger Layout
		this.layout();
E
Erich Gamma 已提交
285 286 287
	}

	private computeStyle(): void {
B
Benjamin Pasero 已提交
288
		const titlebarStyle = this.titlebar.getContainer().getComputedStyle();
I
isidor 已提交
289
		const sidebarStyle = this.sidebar.getContainer().getComputedStyle();
B
Benjamin Pasero 已提交
290
		const panelStyle = this.panel.getContainer().getComputedStyle();
I
isidor 已提交
291 292
		const editorStyle = this.editor.getContainer().getComputedStyle();
		const activitybarStyle = this.activitybar.getContainer().getComputedStyle();
B
Benjamin Pasero 已提交
293
		const statusbarStyle = this.statusbar.getContainer().getComputedStyle();
E
Erich Gamma 已提交
294

B
Benjamin Pasero 已提交
295
		// Determine styles by looking into their CSS
E
Erich Gamma 已提交
296
		this.computedStyles = {
B
Benjamin Pasero 已提交
297
			titlebar: {
298 299
				height: parseInt(titlebarStyle.getPropertyValue('height'), 10),
				display: titlebarStyle.getPropertyValue('display')
B
Benjamin Pasero 已提交
300
			},
E
Erich Gamma 已提交
301
			activitybar: {
B
Benjamin Pasero 已提交
302
				width: parseInt(activitybarStyle.getPropertyValue('width'), 10)
E
Erich Gamma 已提交
303 304
			},
			sidebar: {
305
				minWidth: parseInt(sidebarStyle.getPropertyValue('min-width'), 10) || DEFAULT_MIN_SIDEBAR_PART_WIDTH
E
Erich Gamma 已提交
306
			},
I
isidor 已提交
307
			panel: {
B
Benjamin Pasero 已提交
308
				minHeight: parseInt(panelStyle.getPropertyValue('min-height'), 10) || DEFAULT_MIN_PANEL_PART_HEIGHT
I
isidor 已提交
309
			},
E
Erich Gamma 已提交
310
			editor: {
311 312
				minWidth: parseInt(editorStyle.getPropertyValue('min-width'), 10) || DEFAULT_MIN_EDITOR_PART_WIDTH,
				minHeight: DEFAULT_MIN_EDITOR_PART_HEIGHT
E
Erich Gamma 已提交
313 314
			},
			statusbar: {
B
Benjamin Pasero 已提交
315
				height: parseInt(statusbarStyle.getPropertyValue('height'), 10)
E
Erich Gamma 已提交
316 317
			}
		};
B
Benjamin Pasero 已提交
318 319 320 321 322

		// Always keep the initial computed styles
		if (!this.initialComputedStyles) {
			this.initialComputedStyles = this.computedStyles;
		}
E
Erich Gamma 已提交
323 324
	}

B
Benjamin Pasero 已提交
325
	public layout(options?: ILayoutOptions): void {
B
Benjamin Pasero 已提交
326
		if (options && options.forceStyleRecompute) {
E
Erich Gamma 已提交
327 328 329
			this.computeStyle();
			this.editor.getLayout().computeStyle();
			this.sidebar.getLayout().computeStyle();
B
Benjamin Pasero 已提交
330
			this.panel.getLayout().computeStyle();
E
Erich Gamma 已提交
331 332 333 334 335 336 337 338
		}

		if (!this.computedStyles) {
			this.computeStyle();
		}

		this.workbenchSize = this.getWorkbenchArea();

I
isidor 已提交
339
		const isSidebarHidden = this.partService.isSideBarHidden();
I
isidor 已提交
340
		const isPanelHidden = this.partService.isPanelHidden();
I
isidor 已提交
341
		const sidebarPosition = this.partService.getSideBarPosition();
342
		const isStatusbarHidden = this.partService.isStatusBarHidden();
E
Erich Gamma 已提交
343 344 345 346 347 348 349 350 351 352 353

		// Sidebar
		let sidebarWidth: number;
		if (isSidebarHidden) {
			sidebarWidth = 0;
		} else if (this.sidebarWidth !== -1) {
			sidebarWidth = Math.max(this.computedStyles.sidebar.minWidth, this.sidebarWidth);
		} else {
			sidebarWidth = this.workbenchSize.width / 5;
			this.sidebarWidth = sidebarWidth;
		}
B
Benjamin Pasero 已提交
354

B
Benjamin Pasero 已提交
355
		this.statusbarHeight = isStatusbarHidden ? 0 : this.computedStyles.statusbar.height;
356 357 358 359 360 361

		if (this.computedStyles.titlebar.display === 'none') {
			this.titlebarHeight = 0; // custom title bar is hidden
		} else {
			this.titlebarHeight = this.initialComputedStyles.titlebar.height / getZoomFactor(); // adjust for zoom prevention
		}
E
Erich Gamma 已提交
362

B
Benjamin Pasero 已提交
363
		this.sidebarHeight = this.workbenchSize.height - this.statusbarHeight - this.titlebarHeight;
I
isidor 已提交
364
		let sidebarSize = new Dimension(sidebarWidth, this.sidebarHeight);
E
Erich Gamma 已提交
365 366

		// Activity Bar
B
Benjamin Pasero 已提交
367 368
		this.activitybarWidth = this.computedStyles.activitybar.width;
		let activityBarSize = new Dimension(this.activitybarWidth, sidebarSize.height);
E
Erich Gamma 已提交
369

I
isidor 已提交
370 371
		// Panel part
		let panelHeight: number;
I
isidor 已提交
372
		const maxPanelHeight = sidebarSize.height - DEFAULT_MIN_EDITOR_PART_HEIGHT;
I
isidor 已提交
373
		if (isPanelHidden) {
I
isidor 已提交
374
			panelHeight = 0;
I
isidor 已提交
375
		} else if (this.panelHeight > 0) {
I
isidor 已提交
376
			panelHeight = Math.min(maxPanelHeight, Math.max(this.computedStyles.panel.minHeight, this.panelHeight));
I
isidor 已提交
377
		} else {
I
isidor 已提交
378
			panelHeight = sidebarSize.height * DEFAULT_PANEL_HEIGHT_COEFFICIENT;
I
isidor 已提交
379
		}
B
Benjamin Pasero 已提交
380
		if (options && options.toggleMaximizedPanel) {
381 382 383
			const heightToSwap = panelHeight;
			panelHeight = panelHeight === maxPanelHeight ? Math.max(this.computedStyles.panel.minHeight, Math.min(this.panelHeightBeforeMaximized, maxPanelHeight)) : maxPanelHeight;
			this.panelHeightBeforeMaximized = heightToSwap;
I
isidor 已提交
384
		}
I
isidor 已提交
385
		const panelDimension = new Dimension(this.workbenchSize.width - sidebarSize.width - activityBarSize.width, panelHeight);
I
isidor 已提交
386
		this.panelWidth = panelDimension.width;
I
isidor 已提交
387

E
Erich Gamma 已提交
388 389 390 391 392 393 394 395
		// Editor
		let editorSize = {
			width: 0,
			height: 0,
			remainderLeft: 0,
			remainderRight: 0
		};

396 397
		editorSize.width = panelDimension.width;
		editorSize.height = sidebarSize.height - panelDimension.height;
E
Erich Gamma 已提交
398 399 400

		// Sidebar hidden
		if (isSidebarHidden) {
B
Benjamin Pasero 已提交
401
			editorSize.width = Math.min(this.workbenchSize.width - activityBarSize.width, this.workbenchSize.width - this.activitybarWidth);
E
Erich Gamma 已提交
402 403 404 405 406 407 408 409 410 411 412 413

			if (sidebarPosition === Position.LEFT) {
				editorSize.remainderLeft = Math.round((this.workbenchSize.width - editorSize.width + activityBarSize.width) / 2);
				editorSize.remainderRight = this.workbenchSize.width - editorSize.width - editorSize.remainderLeft;
			} else {
				editorSize.remainderRight = Math.round((this.workbenchSize.width - editorSize.width + activityBarSize.width) / 2);
				editorSize.remainderLeft = this.workbenchSize.width - editorSize.width - editorSize.remainderRight;
			}
		}

		// Assert Sidebar and Editor Size to not overflow
		let editorMinWidth = this.computedStyles.editor.minWidth;
414
		let editorMinHeight = this.computedStyles.editor.minHeight;
E
Erich Gamma 已提交
415 416
		let visibleEditorCount = this.editorService.getVisibleEditors().length;
		if (visibleEditorCount > 1) {
417
			if (this.layoutEditorGroupsVertically) {
418 419 420 421
				editorMinWidth *= visibleEditorCount; // when editors layout vertically, multiply the min editor width by number of visible editors
			} else {
				editorMinHeight *= visibleEditorCount; // when editors layout horizontally, multiply the min editor height by number of visible editors
			}
E
Erich Gamma 已提交
422
		}
B
Benjamin Pasero 已提交
423

E
Erich Gamma 已提交
424 425 426
		if (editorSize.width < editorMinWidth) {
			let diff = editorMinWidth - editorSize.width;
			editorSize.width = editorMinWidth;
427
			panelDimension.width = editorMinWidth;
E
Erich Gamma 已提交
428
			sidebarSize.width -= diff;
429 430 431 432 433 434 435 436
			sidebarSize.width = Math.max(DEFAULT_MIN_SIDEBAR_PART_WIDTH, sidebarSize.width);
		}

		if (editorSize.height < editorMinHeight) {
			let diff = editorMinHeight - editorSize.height;
			editorSize.height = editorMinHeight;
			panelDimension.height -= diff;
			panelDimension.height = Math.max(DEFAULT_MIN_PANEL_PART_HEIGHT, panelDimension.height);
E
Erich Gamma 已提交
437 438 439 440
		}

		if (!isSidebarHidden) {
			this.sidebarWidth = sidebarSize.width;
I
isidor 已提交
441
			this.storageService.store(WorkbenchLayout.sashXWidthSettingsKey, this.sidebarWidth, StorageScope.GLOBAL);
E
Erich Gamma 已提交
442 443
		}

I
isidor 已提交
444 445 446
		if (!isPanelHidden) {
			this.panelHeight = panelDimension.height;
			this.storageService.store(WorkbenchLayout.sashYHeightSettingsKey, this.panelHeight, StorageScope.GLOBAL);
I
isidor 已提交
447 448
		}

E
Erich Gamma 已提交
449 450
		// Workbench
		this.workbenchContainer
B
Benjamin Pasero 已提交
451
			.position(0, 0, 0, 0, 'relative')
E
Erich Gamma 已提交
452 453
			.size(this.workbenchSize.width, this.workbenchSize.height);

B
Benjamin Pasero 已提交
454 455 456 457 458 459 460
		// Bug on Chrome: Sometimes Chrome wants to scroll the workbench container on layout changes. The fix is to reset scrolling in this case.
		const workbenchContainer = this.workbenchContainer.getHTMLElement();
		if (workbenchContainer.scrollTop > 0) {
			workbenchContainer.scrollTop = 0;
		}
		if (workbenchContainer.scrollLeft > 0) {
			workbenchContainer.scrollLeft = 0;
E
Erich Gamma 已提交
461 462
		}

I
isidor 已提交
463
		// Editor Part and Panel part
E
Erich Gamma 已提交
464
		this.editor.getContainer().size(editorSize.width, editorSize.height);
B
Benjamin Pasero 已提交
465
		this.panel.getContainer().size(panelDimension.width, panelDimension.height);
E
Erich Gamma 已提交
466

B
Benjamin Pasero 已提交
467
		const editorBottom = this.statusbarHeight + panelDimension.height;
E
Erich Gamma 已提交
468
		if (isSidebarHidden) {
B
Benjamin Pasero 已提交
469 470
			this.editor.getContainer().position(this.titlebarHeight, editorSize.remainderRight, editorBottom, editorSize.remainderLeft);
			this.panel.getContainer().position(editorSize.height + this.titlebarHeight, editorSize.remainderRight, this.statusbarHeight, editorSize.remainderLeft);
E
Erich Gamma 已提交
471
		} else if (sidebarPosition === Position.LEFT) {
B
Benjamin Pasero 已提交
472 473
			this.editor.getContainer().position(this.titlebarHeight, 0, editorBottom, sidebarSize.width + activityBarSize.width);
			this.panel.getContainer().position(editorSize.height + this.titlebarHeight, 0, this.statusbarHeight, sidebarSize.width + activityBarSize.width);
E
Erich Gamma 已提交
474
		} else {
B
Benjamin Pasero 已提交
475 476
			this.editor.getContainer().position(this.titlebarHeight, sidebarSize.width, editorBottom, 0);
			this.panel.getContainer().position(editorSize.height + this.titlebarHeight, sidebarSize.width, this.statusbarHeight, 0);
E
Erich Gamma 已提交
477 478 479 480 481 482
		}

		// Activity Bar Part
		this.activitybar.getContainer().size(null, activityBarSize.height);
		if (sidebarPosition === Position.LEFT) {
			this.activitybar.getContainer().getHTMLElement().style.right = '';
B
Benjamin Pasero 已提交
483
			this.activitybar.getContainer().position(this.titlebarHeight, null, 0, 0);
E
Erich Gamma 已提交
484 485
		} else {
			this.activitybar.getContainer().getHTMLElement().style.left = '';
B
Benjamin Pasero 已提交
486
			this.activitybar.getContainer().position(this.titlebarHeight, 0, 0, null);
E
Erich Gamma 已提交
487 488 489 490 491 492
		}

		// Sidebar Part
		this.sidebar.getContainer().size(sidebarSize.width, sidebarSize.height);

		if (sidebarPosition === Position.LEFT) {
B
Benjamin Pasero 已提交
493
			this.sidebar.getContainer().position(this.titlebarHeight, editorSize.width, 0, activityBarSize.width);
E
Erich Gamma 已提交
494
		} else {
B
Benjamin Pasero 已提交
495
			this.sidebar.getContainer().position(this.titlebarHeight, null, 0, editorSize.width);
E
Erich Gamma 已提交
496 497 498
		}

		// Statusbar Part
B
Benjamin Pasero 已提交
499
		this.statusbar.getContainer().position(this.workbenchSize.height - this.statusbarHeight);
E
Erich Gamma 已提交
500 501 502 503

		// Quick open
		this.quickopen.layout(this.workbenchSize);

I
isidor 已提交
504 505 506
		// Sashes
		this.sashX.layout();
		this.sashY.layout();
E
Erich Gamma 已提交
507 508

		// Propagate to Part Layouts
B
Benjamin Pasero 已提交
509
		this.titlebar.layout(new Dimension(this.workbenchSize.width, this.titlebarHeight));
E
Erich Gamma 已提交
510 511
		this.editor.layout(new Dimension(editorSize.width, editorSize.height));
		this.sidebar.layout(sidebarSize);
B
Benjamin Pasero 已提交
512
		this.panel.layout(panelDimension);
E
Erich Gamma 已提交
513 514

		// Propagate to Context View
B
Benjamin Pasero 已提交
515
		this.contextViewService.layout();
E
Erich Gamma 已提交
516 517 518 519 520 521 522 523
	}

	private getWorkbenchArea(): Dimension {

		// Client Area: Parent
		let clientArea = this.parent.getClientArea();

		// Workbench: Client Area - Margins
B
Benjamin Pasero 已提交
524
		return clientArea;
E
Erich Gamma 已提交
525 526 527
	}

	public getVerticalSashTop(sash: Sash): number {
B
Benjamin Pasero 已提交
528
		return this.titlebarHeight;
E
Erich Gamma 已提交
529 530 531 532 533 534 535
	}

	public getVerticalSashLeft(sash: Sash): number {
		let isSidebarHidden = this.partService.isSideBarHidden();
		let sidebarPosition = this.partService.getSideBarPosition();

		if (sidebarPosition === Position.LEFT) {
B
Benjamin Pasero 已提交
536
			return !isSidebarHidden ? this.sidebarWidth + this.activitybarWidth : this.activitybarWidth;
E
Erich Gamma 已提交
537 538
		}

B
Benjamin Pasero 已提交
539
		return !isSidebarHidden ? this.workbenchSize.width - this.sidebarWidth - this.activitybarWidth : this.workbenchSize.width - this.activitybarWidth;
E
Erich Gamma 已提交
540 541 542
	}

	public getVerticalSashHeight(sash: Sash): number {
I
isidor 已提交
543
		return this.sidebarHeight;
E
Erich Gamma 已提交
544 545
	}

I
isidor 已提交
546
	public getHorizontalSashTop(sash: Sash): number {
B
Benjamin Pasero 已提交
547
		return 2 + (this.partService.isPanelHidden() ? this.sidebarHeight + this.titlebarHeight : this.sidebarHeight - this.panelHeight + this.titlebarHeight); // Horizontal sash should be a bit lower than the editor area, thus add 2px #5524
I
isidor 已提交
548 549 550
	}

	public getHorizontalSashLeft(sash: Sash): number {
551
		return this.partService.getSideBarPosition() === Position.LEFT ? this.getVerticalSashLeft(sash) : 0;
I
isidor 已提交
552 553 554
	}

	public getHorizontalSashWidth(sash: Sash): number {
I
isidor 已提交
555
		return this.panelWidth;
I
isidor 已提交
556 557
	}

E
Erich Gamma 已提交
558
	public dispose(): void {
M
Martin Aeschlimann 已提交
559 560 561
		if (this.toUnbind) {
			dispose(this.toUnbind);
			this.toUnbind = null;
E
Erich Gamma 已提交
562 563
		}
	}
B
Benjamin Pasero 已提交
564
}