2019-08-28 06:50:38 +08:00
|
|
|
import { Widget } from "./Widget";
|
2019-08-23 23:00:39 +08:00
|
|
|
import { create_element } from "./dom";
|
2019-08-20 04:56:40 +08:00
|
|
|
import "./ToolBar.css";
|
2019-08-21 21:19:44 +08:00
|
|
|
import { LabelledControl } from "./LabelledControl";
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2019-08-28 06:50:38 +08:00
|
|
|
export class ToolBar extends Widget {
|
2019-08-23 23:00:39 +08:00
|
|
|
readonly element = create_element("div", { class: "core_ToolBar" });
|
2019-08-28 06:50:38 +08:00
|
|
|
|
2019-08-22 04:04:08 +08:00
|
|
|
readonly height = 33;
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2019-08-28 06:50:38 +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) {
|
2019-08-21 21:19:44 +08:00
|
|
|
if (child instanceof LabelledControl) {
|
2019-08-23 23:00:39 +08:00
|
|
|
const group = create_element("div", { class: "core_ToolBar_group" });
|
2019-08-21 21:19:44 +08:00
|
|
|
|
2019-08-23 23:00:39 +08:00
|
|
|
if (
|
|
|
|
child.preferred_label_position === "left" ||
|
|
|
|
child.preferred_label_position === "top"
|
|
|
|
) {
|
2019-08-21 21:19:44 +08:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|