LabelledControl labels are now disabled again when their control is disabled. The now also have the same tooltip as their control.

This commit is contained in:
Daan Vanden Bosch 2019-09-15 23:28:48 +02:00
parent 25c3c3b5b8
commit bdee123ee3

View File

@ -13,13 +13,18 @@ export abstract class LabelledControl extends Control {
get label(): Label | undefined {
if (!this._label && this._label_text != undefined) {
this._label = this.disposable(new Label(this._label_text));
this._label = this.disposable(
new Label(this._label_text, {
enabled: this.enabled.val,
tooltip: this.tooltip.val,
}),
);
if (!this.id) {
this._label.for = this.id = unique_id();
this.id = unique_id();
}
this._label.enabled.bind_bi(this.enabled);
this._label.for = this.id;
}
return this._label;
@ -33,10 +38,26 @@ export abstract class LabelledControl extends Control {
this._label_text = options && options.label;
}
protected set_enabled(enabled: boolean): void {
super.set_enabled(enabled);
if (this._label) {
this._label.enabled.val = enabled;
}
}
protected set_tooltip(tooltip: string): void {
super.set_tooltip(tooltip);
if (this._label) {
this._label.tooltip.val = tooltip;
}
}
}
let id = 0;
function unique_id(): string {
return String(id++);
return "core_LabelledControl_id_" + String(id++);
}