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",