UNPKG

1.73 kBJavaScriptView Raw
1"use strict";
2// *****************************************************************************
3// Copyright (C) 2022 STMicroelectronics.
4//
5// This program and the accompanying materials are made available under the
6// terms of the Eclipse Public License v. 2.0 which is available at
7// http://www.eclipse.org/legal/epl-2.0.
8//
9// This Source Code may also be made available under the following Secondary
10// Licenses when the conditions for such availability set forth in the Eclipse
11// Public License v. 2.0 are satisfied: GNU General Public License, version 2
12// with the GNU Classpath Exception which is available at
13// https://www.gnu.org/software/classpath/license.html.
14//
15// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16// *****************************************************************************
17Object.defineProperty(exports, "__esModule", { value: true });
18exports.ViewColumn = void 0;
19/**
20 * Denotes a column in the editor window.
21 * Columns are used to show editors side by side.
22 */
23var ViewColumn;
24(function (ViewColumn) {
25 ViewColumn[ViewColumn["Active"] = -1] = "Active";
26 ViewColumn[ViewColumn["Beside"] = -2] = "Beside";
27 ViewColumn[ViewColumn["One"] = 1] = "One";
28 ViewColumn[ViewColumn["Two"] = 2] = "Two";
29 ViewColumn[ViewColumn["Three"] = 3] = "Three";
30 ViewColumn[ViewColumn["Four"] = 4] = "Four";
31 ViewColumn[ViewColumn["Five"] = 5] = "Five";
32 ViewColumn[ViewColumn["Six"] = 6] = "Six";
33 ViewColumn[ViewColumn["Seven"] = 7] = "Seven";
34 ViewColumn[ViewColumn["Eight"] = 8] = "Eight";
35 ViewColumn[ViewColumn["Nine"] = 9] = "Nine";
36})(ViewColumn = exports.ViewColumn || (exports.ViewColumn = {}));
37//# sourceMappingURL=view-column.js.map
\No newline at end of file