vscode-texinfo/src/contexts/document.ts

52 lines
1.5 KiB
TypeScript

/**
* contexts/document.ts
*
* Copyright (C) 2020,2021 CismonX <admin@cismon.net>
*
* This file is part of vscode-texinfo.
*
* vscode-texinfo is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* vscode-texinfo is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along with
* vscode-texinfo. If not, see <https://www.gnu.org/licenses/>.
*/
import * as vscode from 'vscode';
import DocumentSymbolContext from './document_symbol';
import FoldingRangeContext from './folding_range';
import PreviewContext from './preview';
/**
* Holds all contexts for a Texinfo document.
*/
export default class DocumentContext {
readonly foldingRange = new FoldingRangeContext(this.document);
readonly documentSymbol = new DocumentSymbolContext(this);
private preview?: PreviewContext;
initPreview() {
return this.preview ??= new PreviewContext(this);
}
getPreview() {
return this.preview;
}
closePreview() {
this.preview = undefined;
}
constructor(readonly document: vscode.TextDocument) {}
}