2020-07-12 23:19:05 +02:00
|
|
|
import {UIEventSource} from "../UI/UIEventSource";
|
2020-07-30 10:03:47 +02:00
|
|
|
import {Changes} from "../Logic/Osm/Changes";
|
2020-07-12 23:19:05 +02:00
|
|
|
import {UIElement} from "../UI/UIElement";
|
|
|
|
|
|
|
|
|
|
|
|
export interface TagDependantUIElementConstructor {
|
|
|
|
|
2020-07-17 14:24:31 +02:00
|
|
|
construct(dependencies: {tags: UIEventSource<any>, changes: Changes}): TagDependantUIElement;
|
2020-07-13 12:10:43 +02:00
|
|
|
IsKnown(properties: any): boolean;
|
|
|
|
IsQuestioning(properties: any): boolean;
|
|
|
|
Priority(): number;
|
2020-07-12 23:19:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export abstract class TagDependantUIElement extends UIElement {
|
|
|
|
|
|
|
|
abstract IsKnown(): boolean;
|
|
|
|
|
|
|
|
abstract IsQuestioning(): boolean;
|
|
|
|
|
|
|
|
abstract Priority() : number;
|
|
|
|
|
2020-07-25 01:07:02 +02:00
|
|
|
abstract IsSkipped() : boolean;
|
2020-07-12 23:19:05 +02:00
|
|
|
}
|