phantasmal-world/src/core/gui/ToolBar.ts

51 lines
1.6 KiB
TypeScript
Raw Normal View History

import { Widget, WidgetOptions } from "./Widget";
2019-08-20 04:56:40 +08:00
import "./ToolBar.css";
import { LabelledControl } from "./LabelledControl";
import { div } from "./dom";
2019-08-20 04:56:40 +08:00
export class ToolBar extends Widget {
readonly element = div({ className: "core_ToolBar" });
readonly height = 33;
readonly children: readonly Widget[];
2019-08-20 04:56:40 +08:00
constructor(options?: WidgetOptions, ...children: Widget[]) {
// noinspection SuspiciousTypeOfGuard
super(options instanceof Widget ? undefined : options);
2019-08-20 04:56:40 +08:00
this.element.style.height = `${this.height}px`;
// noinspection SuspiciousTypeOfGuard
this.children = options instanceof Widget ? [options, ...children] : children;
for (const child of this.children) {
this.disposable(child);
if (child instanceof LabelledControl && child.label) {
const group = div({ className: "core_ToolBar_group" });
2019-08-20 04:56:40 +08:00
if (
child.preferred_label_position === "left" ||
child.preferred_label_position === "top"
) {
group.append(child.label.element, child.element);
} else {
group.append(child.element, child.label.element);
}
this.element.append(group);
} else {
this.element.append(child.element);
}
2019-08-20 04:56:40 +08:00
}
this.finalize_construction(ToolBar);
2019-08-20 04:56:40 +08:00
}
protected set_enabled(enabled: boolean): void {
super.set_enabled(enabled);
for (const child of this.children) {
child.enabled.val = enabled;
}
}
2019-08-20 04:56:40 +08:00
}