1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:57:46 +00:00

Browser: Add "next tab" and "previous tab" actions

Now you can switch between the open tabs with Ctrl+PgUp and Ctrl+PgDn
This commit is contained in:
Andreas Kling 2020-04-23 21:43:24 +02:00
parent 4087e3cfb9
commit 1b8b492258
3 changed files with 28 additions and 0 deletions

View file

@ -11,11 +11,17 @@ public:
WindowActions(GUI::Window&);
Function<void()> on_create_new_tab;
Function<void()> on_next_tab;
Function<void()> on_previous_tab;
GUI::Action& create_new_tab_action() { return *m_create_new_tab_action; }
GUI::Action& next_tab_action() { return *m_next_tab_action; }
GUI::Action& previous_tab_action() { return *m_previous_tab_action; }
private:
RefPtr<GUI::Action> m_create_new_tab_action;
RefPtr<GUI::Action> m_next_tab_action;
RefPtr<GUI::Action> m_previous_tab_action;
};
}