mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-09 16:24:45 +01:00
4d0b3d025e
- avoid public modifier - use Disposable where applicable - fix some event handler leaks - clean up some TODO@ben
37 lines
1.5 KiB
TypeScript
37 lines
1.5 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { TPromise } from 'vs/base/common/winjs.base';
|
|
import * as nls from 'vs/nls';
|
|
import { Action } from 'vs/base/common/actions';
|
|
import { Registry } from 'vs/platform/registry/common/platform';
|
|
import { SyncActionDescriptor } from 'vs/platform/actions/common/actions';
|
|
import { IWorkbenchActionRegistry, Extensions } from 'vs/workbench/common/actions';
|
|
import { IPartService } from 'vs/workbench/services/part/common/partService';
|
|
|
|
class ToggleCenteredLayout extends Action {
|
|
|
|
static readonly ID = 'workbench.action.toggleCenteredLayout';
|
|
static readonly LABEL = nls.localize('toggleCenteredLayout', "Toggle Centered Layout");
|
|
|
|
constructor(
|
|
id: string,
|
|
label: string,
|
|
@IPartService private partService: IPartService
|
|
) {
|
|
super(id, label);
|
|
this.enabled = !!this.partService;
|
|
}
|
|
|
|
run(): TPromise<any> {
|
|
this.partService.centerEditorLayout(!this.partService.isEditorLayoutCentered());
|
|
|
|
return TPromise.as(null);
|
|
}
|
|
}
|
|
|
|
const registry = Registry.as<IWorkbenchActionRegistry>(Extensions.WorkbenchActions);
|
|
registry.registerWorkbenchAction(new SyncActionDescriptor(ToggleCenteredLayout, ToggleCenteredLayout.ID, ToggleCenteredLayout.LABEL), 'View: Toggle Centered Layout', nls.localize('view', "View"));
|