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

37 lines
1.1 KiB
TypeScript
Raw Normal View History

import { Widget } from "./Widget";
import { create_element } from "./dom";
2019-08-20 04:56:40 +08:00
import "./ToolBar.css";
import { LabelledControl } from "./LabelledControl";
2019-08-20 04:56:40 +08:00
export class ToolBar extends Widget {
readonly element = create_element("div", { class: "core_ToolBar" });
readonly height = 33;
2019-08-20 04:56:40 +08:00
constructor(...children: Widget[]) {
2019-08-20 04:56:40 +08:00
super();
this.element.style.height = `${this.height}px`;
for (const child of children) {
if (child instanceof LabelledControl) {
const group = create_element("div", { class: "core_ToolBar_group" });
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);
this.disposable(child);
}
2019-08-20 04:56:40 +08:00
}
}
}