mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
14 lines
455 B
TypeScript
14 lines
455 B
TypeScript
import { SimpleProperty } from "./SimpleProperty";
|
|
import { Widget } from "../../gui/Widget";
|
|
|
|
export class WidgetProperty<T> extends SimpleProperty<T> {
|
|
constructor(private widget: Widget, val: T, private set_value: (this: Widget, val: T) => void) {
|
|
super(val);
|
|
}
|
|
|
|
set_val(val: T, options?: { silent?: boolean }): void {
|
|
this.set_value.call(this.widget, val);
|
|
super.set_val(val, { silent: true, ...options });
|
|
}
|
|
}
|