UNPKG

monaco-editor

Version:
109 lines (108 loc) 5.22 kB
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { Emitter } from '../../../../base/common/event.js'; import { Disposable } from '../../../../base/common/lifecycle.js'; export class DelegatingEditor extends Disposable { constructor() { super(...arguments); this._id = ++DelegatingEditor.idCounter; this._onDidDispose = this._register(new Emitter()); this.onDidDispose = this._onDidDispose.event; // #endregion } static { this.idCounter = 0; } getId() { return this.getEditorType() + ':v2:' + this._id; } // #region editorBrowser.IDiffEditor: Delegating to modified Editor getVisibleColumnFromPosition(position) { return this._targetEditor.getVisibleColumnFromPosition(position); } getPosition() { return this._targetEditor.getPosition(); } setPosition(position, source = 'api') { this._targetEditor.setPosition(position, source); } revealLine(lineNumber, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealLine(lineNumber, scrollType); } revealLineInCenter(lineNumber, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealLineInCenter(lineNumber, scrollType); } revealLineInCenterIfOutsideViewport(lineNumber, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealLineInCenterIfOutsideViewport(lineNumber, scrollType); } revealLineNearTop(lineNumber, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealLineNearTop(lineNumber, scrollType); } revealPosition(position, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealPosition(position, scrollType); } revealPositionInCenter(position, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealPositionInCenter(position, scrollType); } revealPositionInCenterIfOutsideViewport(position, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealPositionInCenterIfOutsideViewport(position, scrollType); } revealPositionNearTop(position, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealPositionNearTop(position, scrollType); } getSelection() { return this._targetEditor.getSelection(); } getSelections() { return this._targetEditor.getSelections(); } setSelection(something, source = 'api') { this._targetEditor.setSelection(something, source); } setSelections(ranges, source = 'api') { this._targetEditor.setSelections(ranges, source); } revealLines(startLineNumber, endLineNumber, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealLines(startLineNumber, endLineNumber, scrollType); } revealLinesInCenter(startLineNumber, endLineNumber, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealLinesInCenter(startLineNumber, endLineNumber, scrollType); } revealLinesInCenterIfOutsideViewport(startLineNumber, endLineNumber, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealLinesInCenterIfOutsideViewport(startLineNumber, endLineNumber, scrollType); } revealLinesNearTop(startLineNumber, endLineNumber, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealLinesNearTop(startLineNumber, endLineNumber, scrollType); } revealRange(range, scrollType = 0 /* ScrollType.Smooth */, revealVerticalInCenter = false, revealHorizontal = true) { this._targetEditor.revealRange(range, scrollType, revealVerticalInCenter, revealHorizontal); } revealRangeInCenter(range, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealRangeInCenter(range, scrollType); } revealRangeInCenterIfOutsideViewport(range, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealRangeInCenterIfOutsideViewport(range, scrollType); } revealRangeNearTop(range, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealRangeNearTop(range, scrollType); } revealRangeNearTopIfOutsideViewport(range, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealRangeNearTopIfOutsideViewport(range, scrollType); } revealRangeAtTop(range, scrollType = 0 /* ScrollType.Smooth */) { this._targetEditor.revealRangeAtTop(range, scrollType); } getSupportedActions() { return this._targetEditor.getSupportedActions(); } focus() { this._targetEditor.focus(); } trigger(source, handlerId, payload) { this._targetEditor.trigger(source, handlerId, payload); } createDecorationsCollection(decorations) { return this._targetEditor.createDecorationsCollection(decorations); } changeDecorations(callback) { return this._targetEditor.changeDecorations(callback); } }