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-08-27 20:50:16 +08:00
|
|
|
private readonly label: Label;
|
|
|
|
|
|
|
|
constructor(text: string) {
|
2019-08-29 03:36:45 +08:00
|
|
|
super(el.div({ class: "quest_editor_DisabledView" }));
|
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
|
|
|
|
|
|
|
this.finalize_construction(DisabledView.prototype);
|
2019-08-27 20:50:16 +08:00
|
|
|
}
|
|
|
|
}
|