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

53 lines
1.6 KiB
TypeScript
Raw Normal View History

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