mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
5c5ce4f885
This makes it possible for e.g GTextEditor to create a bunch of actions with popular shortcuts like Ctrl+C, etc, without polluting the global shortcut namespace. Widget-local actions will only activate while their corresponding widget has focus. :^)
39 lines
899 B
C++
39 lines
899 B
C++
#pragma once
|
|
|
|
#include <AK/Badge.h>
|
|
#include <AK/OwnPtr.h>
|
|
#include <AK/HashMap.h>
|
|
#include <LibGUI/GShortcut.h>
|
|
|
|
class GAction;
|
|
class GKeyEvent;
|
|
class GEventLoop;
|
|
class GMenuBar;
|
|
class Point;
|
|
|
|
class GApplication {
|
|
public:
|
|
static GApplication& the();
|
|
GApplication(int argc, char** argv);
|
|
~GApplication();
|
|
|
|
int exec();
|
|
void quit(int);
|
|
|
|
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 String&, const Point& screen_location);
|
|
void hide_tooltip();
|
|
|
|
private:
|
|
OwnPtr<GEventLoop> m_event_loop;
|
|
OwnPtr<GMenuBar> m_menubar;
|
|
HashMap<GShortcut, GAction*> m_global_shortcut_actions;
|
|
class TooltipWindow;
|
|
TooltipWindow* m_tooltip_window { nullptr };
|
|
};
|