mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 12:19:37 +03:00
51e655f903
Added a window creation callback to GApplication that gets called by GWindow which will reset any pending exit request in the CEventLoop. This is to prevent a bug which prevents your application from starting up if you had a message box or other dialog before showing your main application form. The bug was triggered by there being no more visible windows which was triggering a premature quit().
52 lines
1.4 KiB
C++
52 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include <AK/Badge.h>
|
|
#include <AK/HashMap.h>
|
|
#include <AK/OwnPtr.h>
|
|
#include <LibGUI/GShortcut.h>
|
|
|
|
class CEventLoop;
|
|
class GAction;
|
|
class GKeyEvent;
|
|
class GMenuBar;
|
|
class GWindow;
|
|
class Point;
|
|
|
|
class GApplication {
|
|
public:
|
|
static GApplication& the();
|
|
GApplication(int argc, char** argv);
|
|
~GApplication();
|
|
|
|
int exec();
|
|
void quit(int = 0);
|
|
|
|
void set_menubar(OwnPtr<GMenuBar>&&);
|
|
GAction* action_for_key_event(const GKeyEvent&);
|
|
|
|
void register_global_shortcut_action(Badge<GAction>, GAction&);
|
|
void unregister_global_shortcut_action(Badge<GAction>, GAction&);
|
|
|
|
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_create_window(Badge<GWindow>);
|
|
void did_delete_last_window(Badge<GWindow>);
|
|
|
|
const String& invoked_as() const { return m_invoked_as; }
|
|
const Vector<String>& args() const { return m_args; }
|
|
|
|
private:
|
|
OwnPtr<CEventLoop> 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 };
|
|
String m_invoked_as;
|
|
Vector<String> m_args;
|
|
};
|