mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Added a toolbar to the script view.
This commit is contained in:
parent
22bf650f04
commit
463685ffa1
12
src/quest_editor/gui/AsmEditorToolBar.ts
Normal file
12
src/quest_editor/gui/AsmEditorToolBar.ts
Normal file
@ -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);
|
||||
}
|
||||
}
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user