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-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) {
|
|
|
|
super(create_element("div", { class: "core_ToolBar" }), options);
|
2019-08-20 04:56:40 +08:00
|
|
|
|
|
|
|
this.element.style.height = `${this.height}px`;
|
|
|
|
|
2019-08-29 03:36:45 +08:00
|
|
|
if (options && options.children) {
|
|
|
|
for (const child of options.children) {
|
2019-08-30 00:24:03 +08:00
|
|
|
if (child instanceof LabelledControl && child.label) {
|
2019-08-29 03:36:45 +08:00
|
|
|
const group = create_element("div", { class: "core_ToolBar_group" });
|
2019-08-21 21:19:44 +08:00
|
|
|
|
2019-08-29 03:36:45 +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);
|
2019-08-21 21:19:44 +08:00
|
|
|
} else {
|
2019-08-29 03:36:45 +08:00
|
|
|
this.element.append(child.element);
|
|
|
|
this.disposable(child);
|
2019-08-21 21:19:44 +08:00
|
|
|
}
|
|
|
|
}
|
2019-08-20 04:56:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|