2019-08-29 03:36:45 +08:00
|
|
|
import { Widget, WidgetOptions } 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-29 03:36:45 +08:00
|
|
|
export type ToolBarOptions = WidgetOptions & {
|
|
|
|
children?: Widget[];
|
|
|
|
};
|
2019-08-28 06:50:38 +08:00
|
|
|
|
2019-08-29 03:36:45 +08:00
|
|
|
export class ToolBar extends Widget {
|
2019-12-19 07:11:42 +08:00
|
|
|
private readonly children: readonly Widget[];
|
|
|
|
|
2019-09-16 01:32:34 +08:00
|
|
|
readonly element = create_element("div", { class: "core_ToolBar" });
|
2019-08-22 04:04:08 +08:00
|
|
|
readonly height = 33;
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2019-08-29 03:36:45 +08:00
|
|
|
constructor(options?: ToolBarOptions) {
|
2019-09-16 01:32:34 +08:00
|
|
|
super(options);
|
2019-08-20 04:56:40 +08:00
|
|
|
|
|
|
|
this.element.style.height = `${this.height}px`;
|
2019-12-19 07:11:42 +08:00
|
|
|
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
|
|
|
|
2019-12-19 07:11:42 +08:00
|
|
|
if (
|
|
|
|
child.preferred_label_position === "left" ||
|
|
|
|
child.preferred_label_position === "top"
|
|
|
|
) {
|
|
|
|
group.append(child.label.element, child.element);
|
2019-08-21 21:19:44 +08:00
|
|
|
} else {
|
2019-12-19 07:11:42 +08:00
|
|
|
group.append(child.element, child.label.element);
|
2019-08-21 21:19:44 +08:00
|
|
|
}
|
2019-12-19 07:11:42 +08:00
|
|
|
|
|
|
|
this.element.append(group);
|
|
|
|
} else {
|
|
|
|
this.element.append(child.element);
|
|
|
|
this.disposable(child);
|
2019-08-21 21:19:44 +08:00
|
|
|
}
|
2019-08-20 04:56:40 +08:00
|
|
|
}
|
2019-09-14 21:15:59 +08:00
|
|
|
|
2019-12-20 01:54:01 +08:00
|
|
|
this.finalize_construction();
|
2019-08-20 04:56:40 +08:00
|
|
|
}
|
2019-12-19 07:11:42 +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
|
|
|
}
|