mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 15:17:36 +00:00
Browser: Add context menu item for selecting all text
This commit is contained in:
parent
ae910e4370
commit
615a1c7210
3 changed files with 12 additions and 0 deletions
|
@ -31,6 +31,7 @@ public:
|
|||
GUI::Action& go_home_action() { return *m_go_home_action; }
|
||||
GUI::Action& reload_action() { return *m_reload_action; }
|
||||
GUI::Action& copy_selection_action() { return *m_copy_selection_action; }
|
||||
GUI::Action& select_all_action() { return *m_select_all_action; }
|
||||
GUI::Action& view_source_action() { return *m_view_source_action; }
|
||||
GUI::Action& inspect_dom_tree_action() { return *m_inspect_dom_tree_action; }
|
||||
|
||||
|
@ -45,6 +46,7 @@ private:
|
|||
RefPtr<GUI::Action> m_go_home_action;
|
||||
RefPtr<GUI::Action> m_reload_action;
|
||||
RefPtr<GUI::Action> m_copy_selection_action;
|
||||
RefPtr<GUI::Action> m_select_all_action;
|
||||
RefPtr<GUI::Action> m_view_source_action;
|
||||
RefPtr<GUI::Action> m_inspect_dom_tree_action;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue