1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:17:44 +00:00

LibGUI: Add GUI::CommonActions::make_select_all_action() :^)

This commit is contained in:
Andreas Kling 2020-07-03 20:54:38 +02:00
parent 8001a85fc7
commit eec22acb8e
3 changed files with 7 additions and 2 deletions

View file

@ -58,6 +58,7 @@ namespace CommonActions {
NonnullRefPtr<Action> make_go_forward_action(Function<void(Action&)>, Core::Object* parent = nullptr);
NonnullRefPtr<Action> make_go_home_action(Function<void(Action&)> callback, Core::Object* parent = nullptr);
NonnullRefPtr<Action> make_reload_action(Function<void(Action&)>, Core::Object* parent = nullptr);
NonnullRefPtr<Action> make_select_all_action(Function<void(Action&)>, Core::Object* parent = nullptr);
};
class Action final : public Core::Object {