LibGUI: Add a GModelNotification class that views will receive.

I don't want to use GEvent here since these need to be synchronous
and mixing sync and async GEvents would be stupid.
This commit is contained in:
Andreas Kling 2019-02-28 21:30:17 +01:00
commit bff5b71467
Notes: sideshowbarker 2024-07-19 15:35:07 +09:00
6 changed files with 41 additions and 2 deletions

View file

@ -15,6 +15,9 @@ public:
Function<void(String)> on_status_message;
protected:
virtual void model_notification(const GModelNotification&) override;
private:
virtual void timer_event(GTimerEvent&) override;