diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-23 18:16:25 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-23 18:16:25 +0200 |
commit | fbae03b73757ed07070c88a1f6b20915cb434cbb (patch) | |
tree | b5a0930501c0c815e2dcdfe9f98cf66b6435470b /Libraries/LibGUI/GApplication.h | |
parent | 528d8d49dc975e3ff31b53fadd045963a42ab754 (diff) | |
download | serenity-fbae03b73757ed07070c88a1f6b20915cb434cbb.zip |
LibGUI: Exit the main event loop when the last window is deleted.
This behavior is the new opt-out default. If you don't want your app to exit
when the last GWindow is destroyed, call this:
- void GApplication::set_quit_set_quit_when_last_window_deleted(bool)
Also renamed "windows()" to "reified_windows" in GWindow.cpp to reflect that
it only contains GWindows that have a server-side representation. :^)
Diffstat (limited to 'Libraries/LibGUI/GApplication.h')
-rw-r--r-- | Libraries/LibGUI/GApplication.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Libraries/LibGUI/GApplication.h b/Libraries/LibGUI/GApplication.h index e68ad1f690..4b571cc6da 100644 --- a/Libraries/LibGUI/GApplication.h +++ b/Libraries/LibGUI/GApplication.h @@ -6,9 +6,10 @@ #include <LibGUI/GShortcut.h> class GAction; -class GKeyEvent; class GEventLoop; +class GKeyEvent; class GMenuBar; +class GWindow; class Point; class GApplication { @@ -29,10 +30,16 @@ public: void show_tooltip(const StringView&, const Point& screen_location); void hide_tooltip(); + bool quit_when_last_window_deleted() const { return m_quit_when_last_window_deleted; } + void set_quit_when_last_window_deleted(bool b) { m_quit_when_last_window_deleted = b; } + + void did_delete_last_window(Badge<GWindow>); + private: OwnPtr<GEventLoop> m_event_loop; OwnPtr<GMenuBar> m_menubar; HashMap<GShortcut, GAction*> m_global_shortcut_actions; class TooltipWindow; TooltipWindow* m_tooltip_window { nullptr }; + bool m_quit_when_last_window_deleted { true }; }; |