1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:48:12 +00:00

TextEditor: Add actions for find next/previous (Ctrl+G, Ctrl+Shift+G)

This commit is contained in:
Andreas Kling 2019-08-25 21:35:58 +02:00
parent d88c40568f
commit ded005500d
2 changed files with 24 additions and 12 deletions

View file

@ -30,9 +30,11 @@ private:
RefPtr<GAction> m_save_as_action;
RefPtr<GAction> m_find_action;
RefPtr<GAction> m_line_wrapping_setting_action;
RefPtr<GAction> m_find_next_action;
RefPtr<GAction> m_find_previous_action;
GTextBox* m_find_textbox { nullptr };
GButton* m_find_prev_button { nullptr };
GButton* m_find_previous_button { nullptr };
GButton* m_find_next_button { nullptr };
GWidget* m_find_widget { nullptr };
};