2019-08-29 03:36:45 +08:00
|
|
|
import { Widget, WidgetOptions } from "./Widget";
|
2019-08-20 04:56:40 +08:00
|
|
|
import "./ToolBar.css";
|
2019-08-21 21:19:44 +08:00
|
|
|
import { LabelledControl } from "./LabelledControl";
|
2019-12-27 07:55:32 +08:00
|
|
|
import { div } from "./dom";
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2019-08-29 03:36:45 +08:00
|
|
|
export class ToolBar extends Widget {
|
2019-12-27 07:55:32 +08:00
|
|
|
readonly element = div({ className: "core_ToolBar" });
|
2019-08-22 04:04:08 +08:00
|
|
|
readonly height = 33;
|
2020-01-05 08:07:35 +08:00
|
|
|
readonly children: readonly Widget[];
|
2019-08-20 04:56:40 +08:00
|
|
|
|
2019-12-28 06:33:34 +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`;
|
2019-12-28 06:33:34 +08:00
|
|
|
// noinspection SuspiciousTypeOfGuard
|
|
|
|
this.children = options instanceof Widget ? [options, ...children] : children;
|
2019-12-19 07:11:42 +08:00
|
|
|
|
|
|
|
for (const child of this.children) {
|
2019-12-28 06:33:34 +08:00
|
|
|
this.disposable(child);
|
|
|
|
|
2019-12-19 07:11:42 +08:00
|
|
|
if (child instanceof LabelledControl && child.label) {
|
2019-12-27 07:55:32 +08:00
|
|
|
const group = div({ className: "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);
|
2019-08-21 21:19:44 +08:00
|
|
|
}
|
2019-08-20 04:56:40 +08:00
|
|
|
}
|
2019-09-14 21:15:59 +08:00
|
|
|
|
2020-07-15 01:46:11 +08:00
|
|
|
this.finalize_construction(ToolBar);
|
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
|
|
|
}
|