2019-08-28 06:50:38 +08:00
|
|
|
import { Widget } from "../../core/gui/Widget";
|
2019-08-27 20:50:16 +08:00
|
|
|
import { el } from "../../core/gui/dom";
|
|
|
|
import { Label } from "../../core/gui/Label";
|
|
|
|
import "./DisabledView.css";
|
|
|
|
|
2019-08-28 06:50:38 +08:00
|
|
|
export class DisabledView extends Widget {
|
2019-09-16 01:32:34 +08:00
|
|
|
readonly element = el.div({ class: "quest_editor_DisabledView" });
|
|
|
|
|
2019-08-27 20:50:16 +08:00
|
|
|
private readonly label: Label;
|
|
|
|
|
|
|
|
constructor(text: string) {
|
2019-09-16 01:32:34 +08:00
|
|
|
super();
|
2019-08-27 20:50:16 +08:00
|
|
|
|
|
|
|
this.label = this.disposable(new Label(text, { enabled: false }));
|
|
|
|
|
|
|
|
this.element.append(this.label.element);
|
2019-09-14 21:20:36 +08:00
|
|
|
|
2019-12-20 01:54:01 +08:00
|
|
|
this.finalize_construction();
|
2019-08-27 20:50:16 +08:00
|
|
|
}
|
|
|
|
}
|