From 463685ffa1dc513cfc15f7b0287c873a83ba036f Mon Sep 17 00:00:00 2001 From: jtuu Date: Sat, 14 Sep 2019 23:25:21 +0300 Subject: [PATCH] Added a toolbar to the script view. --- src/quest_editor/gui/AsmEditorToolBar.ts | 12 ++++++++++++ src/quest_editor/gui/AsmEditorView.ts | 5 +++++ 2 files changed, 17 insertions(+) create mode 100644 src/quest_editor/gui/AsmEditorToolBar.ts diff --git a/src/quest_editor/gui/AsmEditorToolBar.ts b/src/quest_editor/gui/AsmEditorToolBar.ts new file mode 100644 index 00000000..b9113392 --- /dev/null +++ b/src/quest_editor/gui/AsmEditorToolBar.ts @@ -0,0 +1,12 @@ +import { ToolBar } from "../../core/gui/ToolBar"; +import { Button } from "../../core/gui/Button"; + +export class AsmEditorToolBar extends ToolBar { + constructor() { + + super({ + children: [], + }); + this.finalize_construction(AsmEditorToolBar.prototype); + } +} diff --git a/src/quest_editor/gui/AsmEditorView.ts b/src/quest_editor/gui/AsmEditorView.ts index ed936ba4..7ac4727e 100644 --- a/src/quest_editor/gui/AsmEditorView.ts +++ b/src/quest_editor/gui/AsmEditorView.ts @@ -3,6 +3,7 @@ import { el } from "../../core/gui/dom"; import { editor } from "monaco-editor"; import { asm_editor_store } from "../stores/AsmEditorStore"; import IStandaloneCodeEditor = editor.IStandaloneCodeEditor; +import { AsmEditorToolBar } from "./AsmEditorToolBar"; editor.defineTheme("phantasmal-world", { base: "vs-dark", @@ -26,11 +27,15 @@ editor.defineTheme("phantasmal-world", { const DUMMY_MODEL = editor.createModel("", "psoasm"); export class AsmEditorView extends ResizableWidget { + private readonly tool_bar_view = this.disposable(new AsmEditorToolBar()); + private readonly editor: IStandaloneCodeEditor; constructor() { super(el.div()); + this.element.append(this.tool_bar_view.element); + this.editor = this.disposable( editor.create(this.element, { theme: "phantasmal-world",