mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:52:43 +00:00 
			
		
		
		
	 3818840ee6
			
		
	
	
		3818840ee6
		
	
	
	
	
		
			
			It is now possible to quickly switch to specific tabs directly without having to 'search linearly'. Pressing Ctrl plus a number from 1 to 8 switches to the tab of that index. Pressing Ctrl-9 swithes to the last tab. This feature already exists in Firefox and Chrome.
		
			
				
	
	
		
			41 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibGUI/Action.h>
 | |
| 
 | |
| namespace Browser {
 | |
| 
 | |
| class WindowActions {
 | |
| public:
 | |
|     static WindowActions& the();
 | |
| 
 | |
|     WindowActions(GUI::Window&);
 | |
| 
 | |
|     Function<void()> on_create_new_tab;
 | |
|     Function<void()> on_next_tab;
 | |
|     Function<void()> on_previous_tab;
 | |
|     Vector<Function<void()>> on_tabs;
 | |
|     Function<void()> on_about;
 | |
|     Function<void(GUI::Action&)> on_show_bookmarks_bar;
 | |
| 
 | |
|     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; }
 | |
|     GUI::Action& about_action() { return *m_about_action; }
 | |
|     GUI::Action& show_bookmarks_bar_action() { return *m_show_bookmarks_bar_action; }
 | |
| 
 | |
| private:
 | |
|     RefPtr<GUI::Action> m_create_new_tab_action;
 | |
|     RefPtr<GUI::Action> m_next_tab_action;
 | |
|     RefPtr<GUI::Action> m_previous_tab_action;
 | |
|     NonnullRefPtrVector<GUI::Action> m_tab_actions;
 | |
|     RefPtr<GUI::Action> m_about_action;
 | |
|     RefPtr<GUI::Action> m_show_bookmarks_bar_action;
 | |
| };
 | |
| 
 | |
| }
 |