mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
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:
parent
25c3c3b5b8
commit
bdee123ee3
@ -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++);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user